/*
 * PROJECT: artnois.com
 * DOMAIN: artnois.com
 * GAME: Stick Jump (arcade)
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Инфографика (белый фон, #4361ee, #f72585, акценты #ffd700, #7209b7)
 * - Effect: Brutalism (bold borders + offset shadows)
 * - Fonts: Barlow (heading) + Noto Sans (body)
 * - Buttons: 3D Effect
 *
 * Created: 2026
 */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;600;700;900&family=Noto+Sans:wght@400;500;600&display=swap');

/* ─── CSS Variables ─── */
:root {
  --blue-main:    #4361ee;
  --pink-main:    #f72585;
  --yellow-acc:   #ffd700;
  --purple-acc:   #7209b7;
  --dark:         #1a1a2e;
  --text:         #1a1a2e;
  --text-muted:   #555577;
  --bg:           #ffffff;
  --bg-light:     #f4f6ff;
  --border:       #1a1a2e;
  --shadow-hard:  6px 6px 0 #1a1a2e;
  --shadow-blue:  6px 6px 0 #4361ee;
  --shadow-pink:  6px 6px 0 #f72585;
  --radius:       4px;
  --font-head:    'Barlow', sans-serif;
  --font-body:    'Noto Sans', sans-serif;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; max-width: 100%; }

html { scroll-behavior: smooth; }
html, body { overflow-x: hidden !important; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 900;
  line-height: 1.2;
  color: var(--dark);
}

/* ─── Utility ─── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 4.5rem 0; }
.section--light { background: var(--bg-light); }
.section--dark { background: var(--dark); color: #fff; }
.section--blue { background: var(--blue-main); color: #fff; }
.section--pink { background: var(--pink-main); color: #fff; }

.section__heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}
.section__heading::after {
  content: '';
  display: block;
  height: 5px;
  width: 60%;
  background: var(--pink-main);
  margin-top: 0.4rem;
}
.section--dark .section__heading::after,
.section--blue .section__heading::after { background: var(--yellow-acc); }

.section__subheading {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-family: var(--font-body);
  font-weight: 400;
}
.section--dark .section__subheading,
.section--blue .section__subheading { color: rgba(255,255,255,0.75); }

.text-center { text-align: center; }
.stars { color: #ffc107; }

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border: 3px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
  position: relative;
}
.btn--primary {
  background: var(--blue-main);
  color: #fff;
  box-shadow: var(--shadow-hard);
}
.btn--primary:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 #1a1a2e;
}
.btn--primary:active {
  transform: translate(3px, 3px);
  box-shadow: none;
}
.btn--pink {
  background: var(--pink-main);
  color: #fff;
  box-shadow: 6px 6px 0 var(--purple-acc);
}
.btn--pink:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--purple-acc);
}
.btn--yellow {
  background: var(--yellow-acc);
  color: var(--dark);
  border-color: var(--dark);
  box-shadow: var(--shadow-hard);
}
.btn--yellow:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 #1a1a2e;
}
.btn--outline {
  background: transparent;
  color: var(--blue-main);
  border-color: var(--blue-main);
  box-shadow: 4px 4px 0 var(--blue-main);
}
.btn--outline:hover {
  background: var(--blue-main);
  color: #fff;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--dark);
}

.btn-play {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.25rem;
  padding: 1rem 2.8rem;
  background: var(--pink-main);
  color: #fff;
  border: 3px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--dark);
  transition: transform 0.1s, box-shadow 0.1s;
  letter-spacing: 0.03em;
  cursor: pointer;
}
.btn-play:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 var(--dark);
}
.btn-play:active {
  transform: translate(4px, 4px);
  box-shadow: none;
}

/* ─── Header / Navbar ─── */
.header {
  background: var(--bg);
  border-bottom: 3px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 3px 0 var(--blue-main);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}
.logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--blue-main);
  letter-spacing: -0.02em;
}
.logo span { color: var(--pink-main); }

.nav__list {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav__list a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nav__list a:hover { color: var(--blue-main); }
.nav__list .nav__cta {
  background: var(--blue-main);
  color: #fff;
  padding: 0.45rem 1.2rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 3px 3px 0 var(--border);
  transition: transform 0.1s, box-shadow 0.1s;
}
.nav__list .nav__cta:hover {
  transform: translate(-2px,-2px);
  box-shadow: 5px 5px 0 var(--border);
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── Cookie Consent ─── */
.cookie-consent {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  max-width: 380px;
  background: var(--dark);
  color: #fff;
  border: 3px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--blue-main);
  z-index: 9999;
  padding: 1.2rem 1.5rem;
}
.cookie-consent__inner {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.cookie-consent__inner p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
}
.cookie-consent__inner p a {
  color: var(--yellow-acc);
  text-decoration: underline;
}

/* ─── Hero ─── */
.hero {
  background: var(--bg-light);
  border-bottom: 3px solid var(--border);
  padding: 4rem 0 3rem;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.hero__label {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  background: var(--pink-main);
  padding: 0.25rem 0.75rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: 3px 3px 0 var(--border);
}
.hero__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.hero__title em {
  font-style: normal;
  color: var(--blue-main);
}
.hero__desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero__stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}
.hero__stat-value {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2rem;
  color: var(--blue-main);
  display: block;
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__game-card {
  background: var(--bg);
  border: 3px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-blue);
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  position: relative;
}
.hero__game-card-inner {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e8eeff 0%, #fce4f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__game-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border: 3px solid var(--border);
  border-radius: 50%;
  box-shadow: 4px 4px 0 var(--pink-main);
  background: #fff;
  padding: 8px;
}
.hero__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--yellow-acc);
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 3px 3px 0 var(--border);
}
.hero__game-meta {
  padding: 1rem 1.2rem;
  border-top: 3px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero__game-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.1rem;
}
.hero__game-cat {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero__floating-tag {
  position: absolute;
  background: var(--blue-main);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 3px 3px 0 var(--border);
  white-space: nowrap;
}
.hero__floating-tag--1 {
  top: -14px;
  left: 20px;
  background: var(--pink-main);
}
.hero__floating-tag--2 {
  bottom: -14px;
  right: 20px;
  background: var(--yellow-acc);
  color: var(--dark);
}

/* ─── Feature strip ─── */
.features-strip {
  background: var(--blue-main);
  border-top: 3px solid var(--border);
  border-bottom: 3px solid var(--border);
  padding: 1.5rem 0;
  overflow: hidden;
}
.features-strip__inner {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.features-strip__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.features-strip__icon {
  font-size: 1.4rem;
}

/* ─── Info Cards (grid section) ─── */
.info-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.info-card {
  position: relative;
  background: var(--bg);
  border: 3px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-hard);
  transition: transform 0.15s, box-shadow 0.15s;
}
.info-card:hover {
  transform: translate(-3px,-3px);
  box-shadow: 9px 9px 0 var(--dark);
}
.info-card__number {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 3rem;
  color: var(--blue-main);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.15;
  position: absolute;
  top: 1rem;
  right: 1.2rem;
}
.info-card__icon {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}
.info-card__title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.info-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ─── How To Play Steps ─── */
.steps__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  counter-reset: steps;
}
.step {
  position: relative;
  background: var(--bg);
  border: 3px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem 1.4rem;
  box-shadow: var(--shadow-pink);
  counter-increment: steps;
}
.step::before {
  content: counter(steps);
  position: absolute;
  top: -18px;
  left: 1.2rem;
  background: var(--pink-main);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--border);
  border-radius: 50%;
}
.step__title {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.step__desc { font-size: 0.9rem; color: var(--text-muted); }

/* ─── Article cards (Blog) ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
}

.article-card {
  position: relative;
  background: var(--bg);
  border: 3px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
}
.article-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--dark);
}
.article-card__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, #e8eeff 0%, #fce4f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 3px solid var(--border);
}
.article-card__thumb-emoji {
  font-size: 4rem;
}
.article-card__content {
  padding: 1.4rem;
}
.article-card__tag {
  display: inline-block;
  background: var(--blue-main);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.6rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.7rem;
}
.article-card__title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.article-card__excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.article-card__meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  gap: 1rem;
}
.article-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ─── FAQ ─── */
.faq__list { max-width: 780px; margin: 0 auto; }
.faq__item {
  border: 3px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
  box-shadow: 4px 4px 0 var(--border);
  overflow: hidden;
}
.faq__question {
  width: 100%;
  background: var(--bg);
  border: none;
  padding: 1rem 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-align: left;
  color: var(--dark);
  transition: background 0.2s;
}
.faq__question:hover { background: var(--bg-light); }
.faq__question.is-open { background: var(--blue-main); color: #fff; }
.faq__chevron {
  font-size: 1.2rem;
  font-weight: 900;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq__question.is-open .faq__chevron { transform: rotate(45deg); }
.faq__answer {
  display: none;
  padding: 1rem 1.3rem;
  font-size: 0.93rem;
  color: var(--text-muted);
  border-top: 2px solid var(--border);
  background: var(--bg-light);
}
.faq__answer.is-open { display: block; }

/* ─── Testimonials ─── */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  position: relative;
  background: var(--bg);
  border: 3px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-hard);
}
.testimonial-card__stars { margin-bottom: 0.6rem; font-size: 1.1rem; }
.testimonial-card__text {
  font-size: 0.93rem;
  color: var(--text);
  margin-bottom: 1rem;
  font-style: italic;
}
.testimonial-card__author {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
}
.testimonial-card__role {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.testimonial-card__quote {
  position: absolute;
  top: -16px;
  right: 1rem;
  font-size: 3rem;
  line-height: 1;
  color: var(--pink-main);
  font-family: Georgia, serif;
}

/* ─── CTA Banner ─── */
.cta-banner {
  background: var(--dark);
  border-top: 3px solid var(--border);
  border-bottom: 3px solid var(--border);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 0.8rem;
}
.cta-banner__title span { color: var(--yellow-acc); }
.cta-banner__desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  background: var(--blue-main);
  border-bottom: 3px solid var(--border);
  padding: 3rem 0;
}
.page-hero__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.page-hero__label {
  display: inline-block;
  background: var(--yellow-acc);
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.7rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
  box-shadow: 3px 3px 0 var(--border);
}
.page-hero__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 0.5rem;
}
.page-hero__desc {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 600px;
}

/* ─── About Page ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.about-text p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.97rem;
}
.about-text h3 {
  font-size: 1.4rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--dark);
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-stat {
  background: var(--bg);
  border: 3px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow-hard);
  text-align: center;
}
.about-stat__value {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--blue-main);
  line-height: 1;
  display: block;
}
.about-stat__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--bg);
  border: 3px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-hard);
}
.team-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 0.8rem;
}
.team-card__name { font-size: 1rem; margin-bottom: 0.2rem; }
.team-card__role { font-size: 0.8rem; color: var(--text-muted); }

/* ─── How To Play Page ─── */
.controls-box {
  background: var(--dark);
  color: #fff;
  border: 3px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-blue);
  margin-bottom: 2rem;
}
.controls-box__title {
  font-size: 1.4rem;
  color: var(--yellow-acc);
  margin-bottom: 1rem;
}
.controls-box__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.controls-box__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.controls-box__key {
  background: var(--bg-light);
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.9rem;
  padding: 0.4rem 0.8rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 3px 3px 0 var(--border);
  white-space: nowrap;
}
.controls-box__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}
.tip-card {
  background: var(--bg);
  border: 3px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: 4px 4px 0 var(--pink-main);
  position: relative;
}
.tip-card__num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--pink-main);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}
.tip-card__title {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}
.tip-card__desc { font-size: 0.87rem; color: var(--text-muted); }

/* ─── Contact Page ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
}
.contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-info__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.contact-info__label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.contact-info__value {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-form {
  background: var(--bg);
  border: 3px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-hard);
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 3px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--bg-light);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue-main);
  box-shadow: 4px 4px 0 var(--blue-main);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ─── Blog / Articles ─── */
.article-full { max-width: 820px; margin: 0 auto; }
.article-full__meta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.article-full__tag {
  display: inline-block;
  background: var(--pink-main);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.7rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 2px 2px 0 var(--border);
}
.article-full__date {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.article-full__reading {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.article-full h2 {
  font-size: 1.6rem;
  margin: 2rem 0 0.6rem;
  color: var(--dark);
}
.article-full h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--blue-main);
}
.article-full p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.97rem;
}
.article-full ul, .article-full ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.article-full ul { list-style: disc; }
.article-full ol { list-style: decimal; }
.article-full li {
  color: var(--text-muted);
  font-size: 0.97rem;
  margin-bottom: 0.4rem;
}
.article-full__callout {
  background: var(--bg-light);
  border: 3px solid var(--border);
  border-left: 6px solid var(--blue-main);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  margin: 1.5rem 0;
  font-size: 0.95rem;
  color: var(--text);
}

/* ─── Privacy / Terms ─── */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 {
  font-size: 1.4rem;
  margin: 2rem 0 0.6rem;
  color: var(--blue-main);
  border-bottom: 2px solid var(--border);
  padding-bottom: 0.3rem;
}
.legal-content h3 {
  font-size: 1.1rem;
  margin: 1.2rem 0 0.4rem;
}
.legal-content p {
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content li {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

/* ─── Footer ─── */
.footer {
  background: var(--dark);
  border-top: 3px solid var(--border);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  margin-bottom: 2rem;
}
.footer__logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  color: #fff;
  display: block;
  margin-bottom: 0.8rem;
}
.footer__logo span { color: var(--pink-main); }
.footer__tagline {
  font-size: 0.88rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.footer__col-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.85rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
  border-bottom: 2px solid rgba(255,255,255,0.15);
  padding-bottom: 0.4rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.4rem; }
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--yellow-acc); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 1.5rem 0;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__copy { font-size: 0.82rem; }
.footer__legal-links {
  display: flex;
  gap: 1.2rem;
}
.footer__legal-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer__legal-links a:hover { color: var(--yellow-acc); }

/* ─── Infographic Data Blocks ─── */
.data-block {
  background: var(--bg);
  border: 3px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-hard);
  text-align: center;
}
.data-block__value {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--blue-main);
  display: block;
  margin-bottom: 0.3rem;
}
.data-block__label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.data-blocks-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin: 2rem 0;
}

/* ─── Category Badge ─── */
.badge {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.65rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
}
.badge--blue { background: var(--blue-main); color: #fff; }
.badge--pink { background: var(--pink-main); color: #fff; }
.badge--yellow { background: var(--yellow-acc); color: var(--dark); }

/* ─── Breadcrumbs ─── */
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb__sep { opacity: 0.4; }

/* ─── Offer card / card base ─── */
.card { position: relative; }
.offer-card { position: relative; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .info-cards__grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .data-blocks-row { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .nav__list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 3px solid var(--border);
    padding: 1rem 1.5rem;
    gap: 1rem;
    box-shadow: 0 6px 0 var(--blue-main);
    z-index: 99;
  }
  .nav__list.is-open { display: flex; }
  .nav-toggle { display: flex; }
  .info-cards__grid { grid-template-columns: 1fr; }
  .data-blocks-row { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .features-strip__inner { gap: 1.5rem; }
  .cookie-consent {
    left: 1rem;
    right: 1rem;
    max-width: none;
    bottom: 1rem;
  }
}
@media (max-width: 480px) {
  .data-blocks-row { grid-template-columns: 1fr 1fr; }
  .hero__stats { gap: 1.2rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .btn-play { width: 100%; text-align: center; }
}