@font-face {
  font-family: 'Manrope Variable';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/manrope/manrope-cyrillic-wght-normal.woff2') format('woff2-variations');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Manrope Variable';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/manrope/manrope-latin-wght-normal.woff2') format('woff2-variations');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #eef1f6;
  --bg-dark: #0a1929;
  --bg-card: #ffffff;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-light: #f1f5f9;
  --accent: #ffdd2d;
  --accent-hover: #f5d000;
  --border: #e2e8f0;
  --shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-hover: 0 4px 12px rgba(15, 23, 42, 0.08), 0 20px 48px rgba(15, 23, 42, 0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --container: 1140px;
  --header-h: 72px;
  --font: "Manrope Variable", system-ui, -apple-system, sans-serif;
  --font-heading: var(--font);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

#main {
  flex: 1 0 auto;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
.logo,
.hub-tile-title,
.cards-heading,
.faq-item summary,
.step-num {
  font-family: var(--font-heading);
}

h1 {
  font-weight: 800;
  letter-spacing: -0.025em;
}

h2,
.cards-heading,
.hub-tile-title,
.info-block h2,
.section-header h2 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--bg-dark);
  background: var(--accent);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: top 0.2s;
}

.skip-link:focus {
  top: 12px;
  outline: none;
}

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

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.logo {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo span {
  color: var(--bg-dark);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav a:hover,
.nav a.is-active {
  color: var(--text);
  background: var(--bg);
}

.nav a.is-active {
  box-shadow: inset 0 0 0 1px rgba(255, 221, 45, 0.45);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
  color: var(--text);
}

.menu-toggle img {
  display: block;
}

.menu-toggle .icon-close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

/* Hero */
.hero {
  padding: 72px 0 88px;
  background: linear-gradient(160deg, #0a1929 0%, #122a42 45%, #163352 100%);
  color: var(--text-light);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 75% 35%, rgba(255, 221, 45, 0.14), transparent),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(56, 189, 248, 0.06), transparent);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 221, 45, 0.25), transparent);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

.hero-content {
  grid-column: 1;
  grid-row: 1;
}

.hero-visual {
  display: flex;
  justify-content: center;
  grid-column: 2;
  grid-row: 1;
  width: min(100%, 520px);
  margin-inline: auto;
  aspect-ratio: 550 / 253;
  filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.4));
}

.hero-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  aspect-ratio: 550 / 253;
}

.hero-badge {
  display: inline-block;
  margin: 0 0 20px;
  padding: 6px 14px;
  min-height: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 221, 45, 0.1);
  border: 1px solid rgba(255, 221, 45, 0.25);
  border-radius: 100px;
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  line-height: 54px;
  min-height: 2.5em;
}

.hero-lead {
  margin: 0 0 32px;
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(241, 245, 249, 0.78);
  max-width: 460px;
}

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

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-stats li {
  padding: 10px 16px;
  font-size: 0.85rem;
  color: rgba(241, 245, 249, 0.7);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
}

.hero-stats strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-dark);
  box-shadow: 0 4px 16px rgba(255, 221, 45, 0.35);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 221, 45, 0.4);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 221, 45, 0.35);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-block {
  width: 100%;
}

.btn-arrow::after {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-color: currentColor;
  mask: url("../icons/arrow-right.svg") center / contain no-repeat;
  -webkit-mask: url("../icons/arrow-right.svg") center / contain no-repeat;
}

/* Sections */
.section {
  padding: 80px 0;
  background: var(--bg);
}

.section--alt {
  background: #fff;
}

.section-hub,
.section--cards {
  background: #fff;
}

.section-header {
  margin-bottom: 48px;
  max-width: 680px;
}

.section-header h2 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.22;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Card grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

a.card {
  text-decoration: none;
  color: inherit;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

a.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 221, 45, 0.35);
}

a.card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.card-image {
  aspect-ratio: 705 / 445;
  min-height: 177px;
  background: linear-gradient(145deg, #f1f5f9, #e8edf4);
  overflow: hidden;
  position: relative;
  contain: layout style paint;
}

.card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 23, 42, 0.04));
  pointer-events: none;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

a.card:hover .card-image img {
  transform: scale(1.04);
}

.card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.card-title {
  display: block;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.card-disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.card-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding: 13px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--bg-dark);
  background: var(--accent);
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.2s;
}

.card-action::after {
  content: "";
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-color: currentColor;
  mask: url("../icons/arrow-right.svg") center / contain no-repeat;
  -webkit-mask: url("../icons/arrow-right.svg") center / contain no-repeat;
  transition: transform 0.2s;
}

a.card:hover .card-action {
  background: var(--accent-hover);
}

a.card:hover .card-action::after {
  transform: translateX(3px);
}

.section-header h2 a {
  color: inherit;
  text-decoration: none;
}

.section-header h2 a:hover {
  color: var(--bg-dark);
}

.seo-text {
  margin: 16px 0 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.section-more {
  margin: 28px 0 0;
  text-align: center;
}

.section-more a {
  font-weight: 700;
  color: var(--bg-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section-hub {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

/* Category hub */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

a.hub-tile {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

a.hub-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 221, 45, 0.35);
}

.hub-tile-image {
  aspect-ratio: 705 / 445;
  min-height: 120px;
  overflow: hidden;
  background: #f1f5f9;
  contain: layout style paint;
}

.hub-tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

a.hub-tile:hover .hub-tile-image img {
  transform: scale(1.04);
}

.hub-tile-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.hub-tile-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.hub-tile-meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hub-tile-link {
  margin-top: auto;
  padding-top: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--bg-dark);
}

/* Breadcrumbs */
.breadcrumbs {
  margin: 0 0 16px;
  font-size: 0.85rem;
  color: rgba(241, 245, 249, 0.65);
}

.breadcrumbs a {
  color: rgba(241, 245, 249, 0.85);
  text-decoration: none;
}

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

.breadcrumbs-sep {
  margin: 0 8px;
  opacity: 0.5;
}

.page-hero .lead {
  margin: 12px 0 0;
  color: rgba(241, 245, 249, 0.78);
  max-width: 640px;
  line-height: 1.65;
}

.page-meta {
  margin: 0 0 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
}

.section--cards .seo-text {
  margin: 36px 0 0;
}

.cards-heading {
  margin: 0 0 28px;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  line-height: 1.28;
}

/* Category cross-links */
.category-nav {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.category-nav-label {
  margin: 0 0 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
}

.category-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-nav-links a {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.category-nav-links a:hover {
  background: #fffbeb;
  border-color: rgba(255, 221, 45, 0.5);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 20px;
  box-shadow: var(--shadow);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::after {
  content: "";
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform 0.2s;
  margin-top: -4px;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 18px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.step-num {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bg-dark);
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.step p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Info blocks */
.info-block {
  margin-bottom: 48px;
}

.info-block h2 {
  margin: 0 0 16px;
  font-size: 1.5rem;
}

.info-block ul {
  margin: 0;
  padding-left: 1.25em;
}

.info-block li {
  margin-bottom: 8px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.info-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

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

.info-table td:first-child {
  font-weight: 700;
  width: 35%;
  background: #f8fafc;
}

.note {
  margin-top: 32px;
  padding: 20px 24px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: #92400e;
}

.cta-center {
  text-align: center;
  margin-top: 48px;
}

/* Page content (contacts, privacy) */
.page-hero {
  padding: 40px 0 36px;
  background: linear-gradient(160deg, #0a1929 0%, #122a42 50%, #163352 100%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 0%, rgba(255, 221, 45, 0.1), transparent);
  pointer-events: none;
}

.page-hero > .container {
  position: relative;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.15;
}

.page-content {
  padding: 48px 0 72px;
}

.prose {
  max-width: 760px;
}

.prose h5 {
  margin: 2em 0 0.75em;
  font-size: 1.1rem;
  font-weight: 800;
}

.prose h5:first-child {
  margin-top: 0;
}

.prose p {
  margin: 0 0 1em;
  color: var(--text-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 720px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow);
}

.contact-card--link {
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.contact-card--link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 221, 45, 0.4);
}

.contact-card-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.contact-card-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--bg-dark);
  word-break: break-word;
}

/* Footer */
.site-footer {
  flex-shrink: 0;
  background: var(--bg-dark);
  color: var(--text-light);
}

.footer-nav {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-nav a {
  margin: 0 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(232, 237, 244, 0.8);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-legal {
  padding: 32px 0;
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(232, 237, 244, 0.65);
}

.footer-copy {
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(232, 237, 244, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Responsive */
@media (max-width: 1140px) and (min-width: 901px) {
  .nav a {
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .logo {
    font-size: 0.98rem;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: calc(100dvh - var(--header-h));
    min-height: calc(100svh - var(--header-h));
    padding: 0;
    display: flex;
    align-items: center;
  }

  .hero > .container {
    width: min(100% - 32px, var(--container));
    padding: 32px 0 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
    align-content: center;
  }

  .hero-content,
  .hero-visual {
    grid-column: 1;
  }

  .hero-content {
    grid-row: 2;
  }

  .hero-visual {
    grid-row: 1;
  }

  .hero-badge {
    margin-bottom: 16px;
  }

  .hero-lead {
    margin-inline: auto;
    margin-bottom: 28px;
  }

  .hero-actions {
    justify-content: center;
    margin-bottom: 28px;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-stats li {
    flex: 1 1 auto;
    min-width: 90px;
    text-align: center;
  }

  .hero-visual {
    width: min(100%, calc(min(38vh, 220px) * 550 / 253));
    max-height: min(38vh, 220px);
  }

  .hero-visual img {
    max-height: min(38vh, 220px);
    width: 100%;
    height: auto;
    margin-inline: auto;
  }

  .section {
    padding: 64px 0;
  }

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

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 12px 16px;
  }
}

@media (max-width: 600px) {
  .hero-stats {
    gap: 8px;
  }

  .hero-stats li {
    padding: 8px 12px;
    font-size: 0.78rem;
    min-width: 0;
    flex: 1 1 calc(33% - 8px);
  }

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

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .category-nav-links a {
    font-size: 0.82rem;
    padding: 7px 12px;
  }

  .info-table td {
    display: block;
    width: 100%;
  }

  .info-table td:first-child {
    border-bottom: none;
    padding-bottom: 4px;
  }
}
