/* ==========================================================================
   Gagarina 31 — Landing Page Stylesheet
   ==========================================================================
   Design system: Outfit font, warm cream palette, green + coral accents.
   Mobile-first responsive layout with sticky header and scroll animations.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --bg-page: #F5F4F1;
  --bg-card: #FFFFFF;
  --green-primary: #3D8A5A;
  --green-dark: #1A3D2A;
  --coral: #D89575;
  --text-primary: #1A1918;
  --text-secondary: #6D6C6A;
  --text-tertiary: #9C9B99;
  --green-light: #C8F0D8;

  /* Radii */
  --radius-card: 16px;
  --radius-btn: 12px;

  /* Shadows */
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.06);

  /* Transitions */
  --transition: 0.2s ease;
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --------------------------------------------------------------------------
   3. Utility: Container
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

/* --------------------------------------------------------------------------
   4. Utility: Section
   -------------------------------------------------------------------------- */
.section {
  padding: 48px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 80px 0;
  }
}

/* --------------------------------------------------------------------------
   5. Scroll Animations
   -------------------------------------------------------------------------- */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger children animation */
.about__card,
.voting__item,
.barakholka__category,
.news__card,
.contacts__column {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.about__card.animate-in,
.voting__item.animate-in,
.barakholka__category.animate-in,
.news__card.animate-in,
.contacts__column.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: background-color var(--transition), box-shadow var(--transition), transform var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn--primary {
  background-color: var(--green-primary);
  color: #FFFFFF;
}

.btn--primary:hover {
  background-color: #337A4E;
  box-shadow: 0 4px 12px rgba(61, 138, 90, 0.3);
}

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

.btn--outline {
  background-color: transparent;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
}

.btn--outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

.btn--coral {
  background-color: var(--coral);
  color: #FFFFFF;
}

.btn--coral:hover {
  background-color: #C68260;
  box-shadow: 0 4px 12px rgba(216, 149, 117, 0.3);
}

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

/* --------------------------------------------------------------------------
   7. Header
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(245, 244, 241, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.header--scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding-top: 16px;
  padding-bottom: 16px;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 20px;
  color: var(--green-primary);
  text-decoration: none;
  z-index: 1001;
}

.header__logo svg {
  width: 24px;
  height: 24px;
}

/* Desktop Nav */
.header__nav {
  display: none;
  gap: 32px;
}

.header__nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  position: relative;
  transition: color var(--transition);
}

.header__nav-link:hover {
  color: var(--green-primary);
}

.header__nav-link--active {
  color: var(--green-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .header__nav {
    display: flex;
  }

  .header__burger {
    display: none;
  }
}

/* Burger Button */
.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
}

.header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Burger active (X) */
.header__burger--active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger--active span:nth-child(2) {
  opacity: 0;
}

.header__burger--active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--green-dark);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay--active {
  opacity: 1;
  pointer-events: auto;
}

.nav-overlay a {
  font-size: 24px;
  font-weight: 500;
  color: #FFFFFF;
  text-decoration: none;
  padding: 16px;
  transition: opacity var(--transition);
}

.nav-overlay a:hover {
  opacity: 0.8;
}

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
  color: #FFFFFF;
  text-align: center;
  padding: 100px 0 60px;
}

@media (min-width: 768px) {
  .hero {
    padding: 120px 0 80px;
  }
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero__badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Title */
.hero__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  max-width: 700px;
  margin: 0 auto 16px;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 56px;
  }
}

/* Subtitle */
.hero__subtitle {
  font-size: 16px;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 18px;
  }
}

/* Actions */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

/* --------------------------------------------------------------------------
   9. About
   -------------------------------------------------------------------------- */
.about {
  background-color: var(--bg-page);
}

.about__title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .about__title {
    font-size: 40px;
    margin-bottom: 48px;
  }
}

/* Grid */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 480px) {
  .about__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .about__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

/* Cards */
.about__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bg-card);
  padding: 32px 24px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.about__card svg {
  width: 28px;
  height: 28px;
  color: var(--green-primary);
  margin-bottom: 4px;
}

/* Icon circle */
.about__card > svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 10px;
  box-sizing: content-box;
  background: var(--green-light);
  border-radius: 50%;
  color: var(--green-primary);
  margin-bottom: 16px;
}

/* Stat number */
.about__number {
  font-size: 48px;
  font-weight: 700;
  color: var(--green-primary);
  line-height: 1.1;
}

/* Label */
.about__label {
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* --------------------------------------------------------------------------
   10. Voting
   -------------------------------------------------------------------------- */
.voting {
  background-color: var(--green-dark);
  color: #FFFFFF;
}

/* Header */
.voting__header {
  text-align: center;
  margin-bottom: 40px;
}

.voting__subtitle {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green-light);
  margin-bottom: 12px;
}

.voting__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .voting__title {
    font-size: 40px;
  }
}

.voting__description {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

/* Live voting cards grid */
.voting__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 600px) {
  .voting__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .voting__cards--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .voting__cards--4 {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
  }
}

/* Voting card */
.voting-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  overflow: hidden;
  text-decoration: none;
  color: #FFFFFF;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.voting-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.voting-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.voting-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.voting-card:hover .voting-card__image img {
  transform: scale(1.05);
}

.voting-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(61, 138, 90, 0.3), rgba(26, 61, 42, 0.5));
}

.voting-card__placeholder svg {
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.25);
}

.voting-card__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.voting-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.voting-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 50px;
}

.voting-card__badge svg {
  width: 12px;
  height: 12px;
}

.voting-card__badge--active {
  background: rgba(82, 183, 136, 0.2);
  color: var(--green-light);
}

.voting-card__badge--closed {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

.voting-card__date {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.voting-card__date svg {
  width: 12px;
  height: 12px;
}

.voting-card__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.voting-card__desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Footer CTA */
.voting__footer {
  text-align: center;
  margin-top: 8px;
}

.voting__cta {
  margin-top: 8px;
}

/* --------------------------------------------------------------------------
   11. Barakholka
   -------------------------------------------------------------------------- */
.barakholka {
  background-color: var(--bg-card);
}

.barakholka__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 1024px) {
  .barakholka__content {
    flex-direction: row;
    gap: 48px;
    align-items: center;
  }
}

/* Left: Info */
.barakholka__info {
  flex: 1;
}

.barakholka__subtitle {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--coral);
  margin-bottom: 12px;
}

.barakholka__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-primary);
}

@media (min-width: 768px) {
  .barakholka__title {
    font-size: 40px;
  }
}

.barakholka__description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.barakholka__cta {
  margin-top: 8px;
}

/* Right: Categories */
.barakholka__categories {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.barakholka__category {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--bg-page);
  border-radius: 12px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.barakholka__category:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.barakholka__category > svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  padding: 12px;
  box-sizing: content-box;
  background: rgba(216, 149, 117, 0.12);
  border-radius: 50%;
  color: var(--coral);
}

.barakholka__category h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.barakholka__category p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   12. News
   -------------------------------------------------------------------------- */
.news {
  background-color: var(--bg-page);
}

.news__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.news__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 0;
}

.news__submit-btn {
  border: 2px solid var(--green-primary);
  color: var(--green-primary);
  background: transparent;
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.news__submit-btn:hover {
  background: var(--green-primary);
  color: #FFFFFF;
}

.news__submit-btn i {
  width: 16px;
  height: 16px;
}

@media (min-width: 768px) {
  .news__title {
    font-size: 40px;
  }

  .news__header {
    margin-bottom: 48px;
  }
}

@media (max-width: 480px) {
  .news__header {
    justify-content: center;
    text-align: center;
  }
}

/* Grid */
.news__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .news__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news__grid .news__card:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .news__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .news__grid .news__card:last-child {
    grid-column: auto;
  }
}

/* Card */
.news__card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.news__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

/* Image — 16:9 aspect ratio */
.news__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #E8E7E5;
}

.news__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news__image-placeholder {
  width: 100%;
  height: 100%;
}

/* Body */
.news__body {
  padding: 24px;
}

.news__date {
  display: block;
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}

.news__heading {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.news__card {
  cursor: pointer;
}

.news__description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}

.news__card--expanded .news__description {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

/* Toggle link */
.news__toggle {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--green-primary);
  cursor: pointer;
}

.news__toggle-less {
  display: none;
}

.news__card--expanded .news__toggle-more {
  display: none;
}

.news__card--expanded .news__toggle-less {
  display: inline;
}

/* --------------------------------------------------------------------------
   13. Contacts
   -------------------------------------------------------------------------- */
.contacts {
  background-color: var(--bg-card);
}

.contacts__title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .contacts__title {
    font-size: 40px;
    margin-bottom: 48px;
  }
}

/* Grid */
.contacts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .contacts__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Column */
.contacts__column {
  text-align: left;
  background: var(--bg-page);
  border-radius: var(--radius-card);
  padding: 28px 24px;
}

.contacts__column-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.contacts__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: 50%;
  flex-shrink: 0;
}

.contacts__icon svg {
  width: 20px;
  height: 20px;
  color: var(--green-primary);
}

.contacts__column h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

/* Items */
.contacts__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contacts__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contacts__item:first-child {
  padding-top: 0;
}

.contacts__item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.contacts__item p:first-child {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}

.contacts__item a {
  font-size: 16px;
  font-weight: 600;
  color: var(--green-primary);
  text-decoration: none;
  transition: color var(--transition);
}

.contacts__item a:hover {
  text-decoration: underline;
  color: #337A4E;
}

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--green-dark);
  color: #FFFFFF;
  padding: 48px 0 0;
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
}

@media (min-width: 768px) {
  .footer__content {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
  }
}

/* Brand */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 20px;
  color: #FFFFFF;
  text-decoration: none;
}

.footer__logo svg {
  width: 24px;
  height: 24px;
}

.footer__charity {
  font-size: 15px;
  color: var(--green-light);
  font-weight: 500;
}

.footer__address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.footer__address svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Nav & Links columns */
.footer__nav-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

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

.footer__nav a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: #FFFFFF;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer__links svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Bottom */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__privacy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__privacy:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* --------------------------------------------------------------------------
   15. Lucide Icon Defaults
   -------------------------------------------------------------------------- */
svg[data-lucide],
.lucide {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

/* --------------------------------------------------------------------------
   16. Selection & Focus
   -------------------------------------------------------------------------- */
::selection {
  background-color: var(--green-light);
  color: var(--green-dark);
}

:focus-visible {
  outline: 2px solid var(--green-primary);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   17. Scrollbar (WebKit)
   -------------------------------------------------------------------------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-page);
}

::-webkit-scrollbar-thumb {
  background: var(--text-tertiary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-secondary);
}
