/*
 * PROJECT: binnenband.com
 * DOMAIN: binnenband.com
 * GAME: Stick Jump
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Инфографика (white bg, #4361ee, #f72585, accents)
 * - Effect: Pattern Backgrounds + Brutalism cards
 * - 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');

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

:root {
  --ink-blue: #4361ee;
  --hot-pink: #f72585;
  --deep-violet: #3a0ca3;
  --electric-teal: #4cc9f0;
  --highlight-yellow: #f8c400;
  --bg-white: #ffffff;
  --bg-light: #f4f6ff;
  --bg-section: #eef0fb;
  --text-dark: #14142b;
  --text-mid: #3d3d5c;
  --text-light: #7e7e9a;
  --border-dark: #14142b;
  --font-heading: 'Barlow', sans-serif;
  --font-body: 'Noto Sans', sans-serif;
  --radius: 4px;
  --shadow-brutal: 5px 5px 0 #14142b;
  --shadow-brutal-sm: 3px 3px 0 #14142b;
  --shadow-brutal-lg: 8px 8px 0 #14142b;
  --header-height: 70px;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

ul {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }

/* ===== PATTERN BACKGROUND UTILITY ===== */
.pattern-bg {
  background-color: var(--bg-light);
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(67, 97, 238, 0.06) 0px,
      rgba(67, 97, 238, 0.06) 1px,
      transparent 1px,
      transparent 14px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(247, 37, 133, 0.04) 0px,
      rgba(247, 37, 133, 0.04) 1px,
      transparent 1px,
      transparent 14px
    );
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 0;
}

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

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hot-pink);
  background: #ffe8f3;
  border: 2px solid var(--hot-pink);
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

.section__title {
  margin-bottom: 0.75rem;
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== MANDATORY RULES ===== */
.article-card,
.offer-card,
.card {
  position: relative;
}

.article-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.stars { color: #ffc107; }

/* ===== HEADER / NAV ===== */
.site-header {
  background: var(--bg-white);
  border-bottom: 3px solid var(--border-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
  position: relative;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.55rem;
  color: var(--ink-blue);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo span {
  color: var(--hot-pink);
}

.nav__list {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.nav__link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 0.45rem 0.85rem;
  border-radius: 2px;
  transition: background 0.15s, color 0.15s;
}

.nav__link:hover,
.nav__link--active {
  background: var(--ink-blue);
  color: #fff;
}

.nav__play {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--hot-pink);
  color: #fff;
  padding: 0.5rem 1.1rem;
  border: 2px solid var(--border-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-brutal-sm);
  transition: transform 0.1s, box-shadow 0.1s;
}

.nav__play:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--border-dark);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.nav__toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: 0.2s;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--bg-white);
  border: 2px solid var(--border-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-brutal);
  padding: 1.25rem 1.5rem;
  max-width: 380px;
  z-index: 9999;
}

.cookie-consent__text {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.cookie-consent__text a {
  color: var(--ink-blue);
  text-decoration: underline;
}

.cookie-consent__actions {
  display: flex;
  gap: 0.75rem;
}

.cookie-consent__accept {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  background: var(--ink-blue);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border: 2px solid var(--border-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-brutal-sm);
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
}

.cookie-consent__accept:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-brutal);
}

.cookie-consent__decline {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  background: transparent;
  color: var(--text-mid);
  padding: 0.5rem 1rem;
  border: 2px solid var(--border-dark);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s;
}

.cookie-consent__decline:hover {
  background: var(--bg-section);
}

/* ===== HERO ===== */
.hero {
  background-color: var(--ink-blue);
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.04) 0px,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 40px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.04) 0px,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 40px
    );
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--electric-teal);
  border: 2px solid var(--electric-teal);
  padding: 0.2rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.hero__title {
  color: #fff;
  margin-bottom: 1rem;
}

.hero__title em {
  font-style: normal;
  color: var(--highlight-yellow);
}

.hero__desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-play {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.05rem;
  background: var(--highlight-yellow);
  color: var(--text-dark);
  padding: 0.75rem 2rem;
  border: 2px solid var(--border-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-brutal);
  letter-spacing: 0.03em;
  transition: transform 0.1s, box-shadow 0.1s;
}

.btn-play:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--border-dark);
}

.btn-secondary {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  background: transparent;
  color: #fff;
  padding: 0.75rem 1.75rem;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

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

.hero__game-card {
  background: var(--bg-white);
  border: 3px solid var(--border-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-brutal-lg);
  padding: 1.5rem;
  text-align: center;
  max-width: 300px;
  width: 100%;
}

.hero__game-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 1rem;
  border: 2px solid var(--border-dark);
  border-radius: var(--radius);
}

.hero__game-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.hero__game-cat {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-blue);
  margin-bottom: 1rem;
}

.hero__stat-row {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 0.75rem;
}

.hero__stat {
  text-align: center;
}

.hero__stat-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--hot-pink);
  display: block;
}

.hero__stat-label {
  font-size: 0.72rem;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: var(--hot-pink);
  border-top: 3px solid var(--border-dark);
  border-bottom: 3px solid var(--border-dark);
  padding: 1.25rem 0;
  overflow: hidden;
}

.features-strip__inner {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.features-strip__item {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.features-strip__item::before {
  content: '▶';
  font-size: 0.7rem;
  color: var(--highlight-yellow);
}

/* ===== FEATURES GRID (3 cards) ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--bg-white);
  border: 2px solid var(--border-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-brutal-sm);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
}

.feature-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-brutal);
}

.feature-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-card__desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin-bottom: 0;
}

/* ===== HOW TO PLAY STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
}

.step-card {
  background: var(--bg-white);
  border: 2px solid var(--border-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-brutal-sm);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
}

.step-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-brutal);
}

.step-card__number {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2rem;
  color: var(--bg-white);
  background: var(--ink-blue);
  width: 56px;
  height: 56px;
  line-height: 56px;
  border-radius: 50%;
  border: 2px solid var(--border-dark);
  margin-bottom: 1rem;
}

.step-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.step-card__desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin-bottom: 0;
}

/* ===== INFOGRAPHIC STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
}

.stat-card {
  background: var(--bg-white);
  border: 2px solid var(--border-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-brutal-sm);
  padding: 1.75rem 1rem;
  text-align: center;
}

.stat-card--blue { border-top: 5px solid var(--ink-blue); }
.stat-card--pink { border-top: 5px solid var(--hot-pink); }
.stat-card--yellow { border-top: 5px solid var(--highlight-yellow); }
.stat-card--teal { border-top: 5px solid var(--electric-teal); }

.stat-card__value {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--ink-blue);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-card--pink .stat-card__value { color: var(--hot-pink); }
.stat-card--yellow .stat-card__value { color: var(--highlight-yellow); }
.stat-card--teal .stat-card__value { color: var(--electric-teal); }

.stat-card__label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-mid);
}

/* ===== ARTICLE CARDS ===== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.article-card {
  background: var(--bg-white);
  border: 2px solid var(--border-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-brutal-sm);
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
    position: relative;
}

.article-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-brutal);
}

.article-card__thumb {
  width: 100%;
  height: 180px;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid var(--border-dark);
  overflow: hidden;
}

.article-card__thumb-inner {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 3.5rem;
}

.article-card__body {
  padding: 1.25rem;
}

.article-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-blue);
  background: #e8ecfd;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 2;
}

.article-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.article-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 0;
}

.article-card__footer {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid #e5e7f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.article-card__date {
  font-size: 0.8rem;
  color: var(--text-light);
}

.article-card__read {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-blue);
  position: relative;
  z-index: 2;
}

.article-card__read:hover {
  color: var(--hot-pink);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-white);
  border: 2px solid var(--border-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-brutal-sm);
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.25rem;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.15s;
}

.faq-item__question:hover {
  background: var(--bg-light);
}

.faq-item__icon {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--ink-blue);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item--open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  display: none;
  padding: 0 1.25rem 1.1rem;
  font-size: 0.95rem;
  color: var(--text-mid);
  border-top: 1px solid #e5e7f0;
  padding-top: 0.9rem;
}

.faq-item--open .faq-item__answer {
  display: block;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--deep-violet);
  border-top: 3px solid var(--border-dark);
  border-bottom: 3px solid var(--border-dark);
  padding: 4rem 0;
  text-align: center;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.03) 0px,
      rgba(255,255,255,0.03) 1px,
      transparent 1px,
      transparent 20px
    );
}

.cta-band__title {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-band__desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  background: var(--highlight-yellow);
  color: var(--text-dark);
  padding: 0.85rem 2.5rem;
  border: 2px solid var(--border-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-brutal);
  transition: transform 0.1s, box-shadow 0.1s;
}

.btn-cta:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--border-dark);
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: var(--ink-blue);
  padding: 4rem 0;
  text-align: center;
}

.about-hero__title {
  color: #fff;
  margin-bottom: 0.75rem;
}

.about-hero__desc {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-visual {
  background: var(--bg-section);
  border: 2px solid var(--border-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-brutal);
  padding: 2.5rem;
  text-align: center;
}

.about-visual__icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.about-visual__title {
  font-size: 1.2rem;
  font-weight: 700;
}

.value-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-white);
  border: 2px solid var(--border-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-brutal-sm);
  padding: 1rem 1.25rem;
}

.value-item__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.value-item__title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.value-item__desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 0;
}

/* ===== HOW TO PLAY PAGE ===== */
.htp-hero {
  background: var(--hot-pink);
  padding: 4rem 0;
  text-align: center;
}

.htp-hero__title {
  color: #fff;
  margin-bottom: 0.75rem;
}

.htp-hero__desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

.htp-controls {
  background: var(--bg-white);
  border: 2px solid var(--border-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-brutal);
  padding: 2rem;
  max-width: 680px;
  margin: 0 auto;
}

.htp-controls__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.control-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7f0;
}

.control-row:last-child {
  border-bottom: none;
}

.control-row__key {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  background: var(--bg-section);
  border: 2px solid var(--border-dark);
  border-radius: 3px;
  padding: 0.3rem 0.7rem;
  min-width: 90px;
  text-align: center;
  flex-shrink: 0;
}

.control-row__desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin: 0;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.tip-card {
  background: var(--bg-white);
  border: 2px solid var(--border-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-brutal-sm);
  padding: 1.5rem 1.25rem;
  border-left: 5px solid var(--ink-blue);
}

.tip-card:nth-child(2n) { border-left-color: var(--hot-pink); }
.tip-card:nth-child(3n) { border-left-color: var(--highlight-yellow); }

.tip-card__title {
  font-weight: 700;
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
}

.tip-card__desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 0;
}

/* ===== BLOG PAGE ===== */
.blog-hero {
  background: var(--ink-blue);
  padding: 3.5rem 0;
  text-align: center;
}

.blog-hero__title {
  color: #fff;
  margin-bottom: 0.5rem;
}

.blog-hero__desc {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
}

/* ===== ARTICLE PAGE ===== */
.article-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
}

.article-page__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hot-pink);
  background: #ffe8f3;
  border: 2px solid var(--hot-pink);
  padding: 0.2rem 0.65rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.article-page__title {
  margin-bottom: 1rem;
}

.article-page__meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.article-page__content h2 {
  font-size: 1.55rem;
  margin: 2rem 0 0.75rem;
}

.article-page__content h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.5rem;
}

.article-page__content p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.article-page__content ul,
.article-page__content ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.75;
}

.article-page__content ol {
  list-style: decimal;
}

.article-page__content .callout {
  background: var(--bg-section);
  border: 2px solid var(--ink-blue);
  border-left: 6px solid var(--ink-blue);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  color: var(--text-dark);
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  background: var(--deep-violet);
  padding: 4rem 0;
  text-align: center;
}

.contact-hero__title {
  color: #fff;
  margin-bottom: 0.5rem;
}

.contact-hero__desc {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-form {
  background: var(--bg-white);
  border: 2px solid var(--border-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-brutal);
  padding: 2.5rem;
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 2px solid var(--border-dark);
  border-radius: var(--radius);
  background: var(--bg-white);
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--ink-blue);
  box-shadow: 3px 3px 0 var(--ink-blue);
}

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

.btn-submit {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1rem;
  background: var(--ink-blue);
  color: #fff;
  padding: 0.75rem 2.25rem;
  border: 2px solid var(--border-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-brutal-sm);
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
}

.btn-submit:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-brutal);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-item {
  background: var(--bg-white);
  border: 2px solid var(--border-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-brutal-sm);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-item__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-info-item__label {
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.2rem;
}

.contact-info-item__value {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin: 0;
}

/* ===== PRIVACY / TERMS ===== */
.policy-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
}

.policy-page__title {
  margin-bottom: 0.5rem;
}

.policy-page__date {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.policy-page h2 {
  font-size: 1.4rem;
  margin: 2rem 0 0.6rem;
  color: var(--ink-blue);
}

.policy-page p,
.policy-page li {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.policy-page ul {
  list-style: disc;
  padding-left: 1.5rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--text-dark);
  border-top: 3px solid var(--border-dark);
  padding: 3.5rem 0 1.5rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer__brand .logo {
  color: #fff;
  display: block;
  margin-bottom: 0.75rem;
}

.footer__brand .logo span {
  color: var(--hot-pink);
}

.footer__tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0;
}

.footer__col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hot-pink);
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}

.footer__links a:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer__legal {
  display: flex;
  gap: 1.25rem;
}

.footer__legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.15s;
}

.footer__legal a:hover {
  color: rgba(255,255,255,0.75);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--ink-blue);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--text-light);
}

/* ===== FORM SUCCESS MESSAGE ===== */
.form-success {
  display: none;
  background: #e8f5e9;
  border: 2px solid #2e7d32;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  font-weight: 600;
  color: #2e7d32;
}

.form-success--visible {
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

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

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

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

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

@media (max-width: 680px) {
  .nav__list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-top: 2px solid var(--border-dark);
    border-bottom: 2px solid var(--border-dark);
    padding: 1rem;
    gap: 0.25rem;
    z-index: 99;
  }

  .nav__list--open {
    display: flex;
  }

  .nav__play {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .site-header {
    position: relative;
  }

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

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

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

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

  .cookie-consent {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }
}