/* =============================================
   ДОРОЖНЫЕ СИСТЕМЫ — style.css
   Цвета: #1a3c6b (синий) + #f5c518 (жёлтый)
   ============================================= */

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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #1e2532;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

/* ---------- VARIABLES ---------- */
:root {
  --blue:      #1a3c6b;
  --blue-dark: #122c50;
  --blue-light:#e8f0fb;
  --yellow:    #f5c518;
  --yellow-dark:#d4a800;
  --text:      #1e2532;
  --text-muted:#5a6478;
  --border:    #dce3ef;
  --bg-light:  #f7f9fc;
  --white:     #ffffff;
  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 2px 16px rgba(26,60,107,0.10);
  --shadow-md: 0 4px 32px rgba(26,60,107,0.14);
  --transition: 0.2s ease;
  --container: 1120px;
}

/* ---------- CONTAINER ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- SECTION TITLES ---------- */
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--blue);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-title--light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-subtitle--light {
  color: rgba(255,255,255,0.78);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.1s;
  text-align: center;
  white-space: nowrap;
  line-height: 1.3;
  text-decoration: none;
}

.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--yellow);
  color: var(--blue);
  border-color: var(--yellow);
}
.btn--primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
}

.btn--outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn--outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn--sm {
  padding: 9px 18px;
  font-size: 0.9rem;
}

.btn--lg {
  padding: 14px 32px;
  font-size: 1.05rem;
}

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

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--yellow);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo__icon { flex-shrink: 0; }

.logo__text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.2;
}

.logo--light .logo__text { color: rgba(255,255,255,0.9); }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  padding: 8px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover {
  color: var(--blue);
  background: var(--blue-light);
}

.nav__cta {
  padding: 9px 20px;
  background: var(--yellow);
  color: var(--blue);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background var(--transition);
}
.nav__cta:hover { background: var(--yellow-dark); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.burger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger--open span:nth-child(2) { opacity: 0; }
.burger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu[hidden] { display: none; }

.mobile-menu__link {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: background var(--transition);
}
.mobile-menu__link:hover { background: var(--blue-light); }
.mobile-menu__cta {
  background: var(--yellow);
  color: var(--blue);
  font-weight: 700;
  text-align: center;
  margin-top: 8px;
}
.mobile-menu__cta:hover { background: var(--yellow-dark); }

/* ---------- HERO ---------- */
.hero {
  background: linear-gradient(135deg, var(--blue) 0%, #254e8a 60%, #1a3c6b 100%);
  color: var(--white);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(245,197,24,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  position: relative;
}

.hero__label {
  display: inline-block;
  background: rgba(245,197,24,0.18);
  border: 1px solid rgba(245,197,24,0.35);
  color: var(--yellow);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
}

.hero__accent {
  color: var(--yellow);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

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

.hero__trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__sign {
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.35));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- ADVANTAGES ---------- */
.advantages {
  padding: 72px 0;
  background: var(--white);
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.advantage-card {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.advantage-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
  transform: translateY(-3px);
}

.advantage-card__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.advantage-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

.advantage-card__text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ---------- CATALOG ---------- */
.catalog {
  padding: 72px 0;
  background: var(--bg-light);
}

.catalog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.product-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--yellow);
  transform: translateY(-3px);
}

.product-card__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
}

.product-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
}

.product-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.product-card__specs {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-card__specs li::before {
  content: '— ';
  color: var(--yellow-dark);
  font-weight: 700;
}

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 4px;
}

.price-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.price-currency {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.catalog__note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--blue-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 0.93rem;
  color: var(--blue);
}
.catalog__note a {
  font-weight: 600;
  text-decoration: underline;
  color: var(--blue);
}
.catalog__note a:hover { color: var(--blue-dark); }

/* ---------- HOW WE WORK ---------- */
.how {
  padding: 72px 0;
  background: var(--blue);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  counter-reset: steps;
}

/* Connecting line */
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(245,197,24,0.35);
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--blue);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(245,197,24,0.2);
}

.step__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
}

/* ---------- ORDER FORM ---------- */
.order {
  padding: 72px 0;
  background: var(--white);
}

.order__wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.order__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 12px;
}

.order__subtitle {
  color: var(--text-muted);
  font-size: 0.97rem;
  margin-bottom: 24px;
  line-height: 1.55;
}

.order__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.order__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--text);
}

/* Form */
.order-form {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
.form-label span { color: #e74c3c; }

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,60,107,0.1);
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}
.form-note__link {
  text-decoration: underline;
  color: var(--text-muted);
}
.form-note__link:hover { color: var(--blue); }

/* Success */
.order-success {
  background: var(--bg-light);
  border: 1.5px solid #c3e6cb;
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.order-success[hidden] { display: none; }
.order-success h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2e7d32;
}
.order-success p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- CONTACTS ---------- */
.contacts {
  padding: 72px 0;
  background: var(--bg-light);
}

.contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-item__icon {
  width: 42px;
  height: 42px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.contact-item__value {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 2px;
}
a.contact-item__value:hover { text-decoration: underline; }

.contact-item__note {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* CTA box */
.cta-box {
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-box__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.cta-box__text {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.55;
}

.cta-box .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  justify-content: center;
}
.cta-box .btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.85);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-top: 52px;
  padding-bottom: 40px;
}

.footer__tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
  line-height: 1.55;
}

.footer__nav-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__nav a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--yellow); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer__gost {
  font-size: 0.78rem;
}

/* ---------- FLOATING CTA ---------- */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  transition: opacity 0.3s;
}
.floating-cta .btn {
  box-shadow: 0 4px 20px rgba(26,60,107,0.35);
  padding: 14px 36px;
  font-size: 1rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .advantages__grid,
  .catalog__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .steps::before { display: none; }
}

@media (max-width: 768px) {
  /* Header */
  .nav { display: none; }
  .burger { display: flex; }

  /* Hero */
  .hero { padding: 52px 0; }
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__visual { display: none; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* Advantages */
  .advantages { padding: 52px 0; }
  .advantages__grid { grid-template-columns: 1fr; gap: 16px; }

  /* Catalog */
  .catalog { padding: 52px 0; }
  .catalog__grid { grid-template-columns: 1fr; gap: 16px; }

  /* How */
  .how { padding: 52px 0; }
  .steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .step { flex-direction: row; text-align: left; }
  .step__num { margin-bottom: 0; margin-right: 0; }

  /* Order */
  .order { padding: 52px 0; }
  .order__wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Contacts */
  .contacts { padding: 52px 0; }
  .contacts__grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 36px;
    padding-bottom: 28px;
  }
  .footer__bottom-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  /* Floating CTA */
  .floating-cta { display: block; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero__title { font-size: 1.6rem; }
  .section-title { font-size: 1.4rem; }

  .order-form { padding: 22px 16px; }
  .contact-card { padding: 22px 16px; }
  .cta-box { padding: 26px 20px; }

  .step { gap: 16px; }
}

/* ---------- NAV ACTIVE ---------- */
.nav__link--active {
  color: var(--blue);
  background: var(--blue-light);
}

/* ---------- CATALOG PAGE ---------- */
.catalog-hero,
.about-hero {
  background: linear-gradient(135deg, var(--blue) 0%, #254e8a 60%, #1a3c6b 100%);
  color: var(--white);
  padding: 60px 0 48px;
  text-align: center;
}

.catalog-section {
  padding: 64px 0;
  background: var(--white);
}

.catalog-section--alt {
  background: var(--bg-light);
}

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

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

.catalog-cta {
  background: var(--blue);
  padding: 64px 0;
}

/* ---------- ABOUT PAGE ---------- */
.about-section {
  padding: 64px 0;
  background: var(--white);
}

.about-section--alt {
  background: var(--bg-light);
}

.about-text {
  max-width: 780px;
  margin: 0 auto;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

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

/* Stats */
.about-stats {
  padding: 64px 0;
  background: var(--blue);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 28px 16px;
}

.stat-card__num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--yellow);
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-card__label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.stat-card__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* Certs */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cert-card {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: box-shadow var(--transition), border-color var(--transition);
}

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

.cert-card__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.cert-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

.cert-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: box-shadow var(--transition), border-color var(--transition);
}

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

.team-card__avatar {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.team-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--yellow-dark);
  margin-bottom: 10px;
}

.team-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------- CATALOG/ABOUT RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .catalog__grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid,
  .certs-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .catalog__grid--3,
  .catalog__grid--2 {
    grid-template-columns: 1fr;
  }
  .stats-grid,
  .certs-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  .catalog-hero,
  .about-hero {
    padding: 44px 0 36px;
  }
  .catalog-section,
  .about-section,
  .about-stats,
  .catalog-cta {
    padding: 48px 0;
  }
}

/* ---------- FOCUS VISIBLE (accessibility) ---------- */
:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- PRINT ---------- */
@media print {
  .header, .floating-cta, .hero__visual { display: none; }
  body { color: #000; font-size: 12pt; }
  a { text-decoration: underline; }
}
