/* ===== RESET ===== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: Inter, system-ui, sans-serif;
  color: #e6edf3;
  line-height: 1.6;
  min-height: 100%;
}

html {
  background: #0b0f17;
}

body {
  position: relative;
  overflow-x: hidden;
  background: linear-gradient(
    -45deg,
    #020617,
    #0f172a,
    #111827,
    #0b1324,
    #0f172a,
    #1e293b
  );
  background-size: 500% 500%;
  animation: siteGradientShift 24s ease infinite;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(34, 211, 238, 0.14), transparent 30%),
    radial-gradient(circle at 85% 25%, rgba(99, 102, 241, 0.12), transparent 30%),
    radial-gradient(circle at 60% 80%, rgba(16, 185, 129, 0.10), transparent 28%);
  animation: siteGlowShift 28s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: rgba(2, 6, 23, 0.12);
}

.site-shell,
.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

@keyframes siteGradientShift {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes siteGlowShift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.85;
  }
  100% {
    transform: translate3d(-2%, 2%, 0) scale(1.06);
    opacity: 1;
  }
}

body.modal-open {
  overflow: hidden;
}

/* ===== CONTAINER ===== */

.container {
  width: 1200px;
  max-width: 92%;
  margin: 0 auto;
}

/* ===== HEADER ===== */

.site-header {
  border-bottom: 1px solid #1f2937;
  background: rgba(11, 15, 23, 0.85);
  backdrop-filter: blur(6px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
}

.site-brand__logo {
  width: 44px;
}

.site-brand__text strong {
  display: block;
  font-size: 16px;
}

.site-brand__text span {
  font-size: 11px;
  color: #94a3b8;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.site-nav a {
  text-decoration: none;
  color: #cbd5f5;
  font-size: 14px;
  transition: 0.2s;
}

.site-nav a:hover {
  color: #22d3ee;
}

.site-nav a.is-active {
  color: #22d3ee;
}

.site-nav a.is-active::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 4px;
  background: #22d3ee;
  border-radius: 999px;
}

/* ===== SECTION ===== */

.section {
  padding: 90px 0;
}

.section--accent {
  background: rgba(14, 22, 36, 0.72);
  backdrop-filter: blur(2px);
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-heading h1,
.section-heading h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.section-heading p {
  color: #94a3b8;
}

/* ===== HERO ===== */

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__badge {
  font-size: 11px;
  color: #22d3ee;
  border: 1px solid rgba(34, 211, 238, 0.4);
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
}

.hero__title {
  font-size: 48px;
  margin-top: 20px;
  line-height: 1.1;
}

.hero__title span {
  display: block;
  color: #22d3ee;
}

.hero__text {
  margin-top: 20px;
  color: #cbd5f5;
}

.hero__subtext {
  margin-top: 10px;
  color: #94a3b8;
}

.hero__chips {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__actions {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero__visual {
  position: relative;
}

.hero__visual-note {
  margin-top: 15px;
  font-size: 12px;
  color: #64748b;
}

/* ===== BUTTONS ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
}

.btn--primary {
  background: #22d3ee;
  color: #020617;
  border: none;
}

.btn--primary:hover {
  background: #67e8f9;
}

.btn--secondary {
  border: 1px solid #334155;
  color: #cbd5f5;
  background: transparent;
}

.btn--secondary:hover {
  border-color: #22d3ee;
  color: #22d3ee;
}

.btn--full {
  width: 100%;
  cursor: pointer;
}

/* ===== CHIPS ===== */

.chip {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 8px;
}

.chip--cyan {
  background: rgba(34, 211, 238, 0.15);
  color: #22d3ee;
}

.chip--green {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.chip--indigo {
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
}

/* ===== CARDS ===== */

.card {
  background: rgba(14, 22, 36, 0.82);
  border: 1px solid #1e293b;
  border-radius: 14px;
  padding: 28px;
  backdrop-filter: blur(4px);
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: #94a3b8;
  font-size: 14px;
}

.card--link {
  text-decoration: none;
  color: inherit;
  transition: 0.2s;
}

.card--link:hover {
  border-color: #22d3ee;
}

/* ===== GRID ===== */

.grid {
  display: grid;
  gap: 25px;
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

/* ===== FLOW BLOCK ===== */

.flow-list {
  margin-top: 15px;
}

.flow-item {
  background: #020617;
  border: 1px solid #1e293b;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flow-item__left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.flow-item__icon {
  width: 22px;
}

.flow-item__title {
  font-weight: 600;
}

.flow-item__title--cyan {
  color: #22d3ee;
}

.flow-item__title--green {
  color: #22c55e;
}

.flow-item__title--indigo {
  color: #818cf8;
}

.flow-item__meta {
  font-size: 12px;
  color: #64748b;
}

/* ===== PRODUCTS ===== */

.product-logo {
  width: 45px;
  margin-bottom: 10px;
}

/* ===== CTA ===== */

.cta-block {
  background: #0e1624;
  border: 1px solid #1e293b;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cta-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== CONTACTS ===== */

.contacts-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 25px;
}

.contacts-title {
  margin-bottom: 12px;
  font-size: 24px;
}

.contacts-text {
  color: #94a3b8;
  margin-bottom: 24px;
}

.contacts-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contacts-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contacts-item__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
}

.contacts-item__value {
  font-size: 16px;
  color: #e6edf3;
  text-decoration: none;
}

.contacts-item__value:hover {
  color: #22d3ee;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  color: #cbd5f5;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #334155;
  background: #020617;
  color: #e6edf3;
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #22d3ee;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-note {
  font-size: 12px;
  color: #64748b;
}

/* ===== VOLLEYBALL ===== */

.volley-hero {
  position: relative;
  overflow: hidden;
  height: 88vh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
}

.volley-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.volley-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2, 6, 23, 0.92),
    rgba(2, 6, 23, 0.45),
    rgba(2, 6, 23, 0.1)
  );
}

.volley-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 72px;
  color: #fff;
}

.volley-hero__head {
  display: flex;
  align-items: center;
  gap: 24px;
}

.volley-hero__logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px;
  backdrop-filter: blur(8px);
}

.volley-hero__head h1 {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 8px;
}

.volley-hero__head p {
  color: rgba(255, 255, 255, 0.82);
}

.team-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.team-search {
  width: 100%;
  max-width: 520px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #334155;
  background: #020617;
  color: #e6edf3;
  outline: none;
  position: relative;
  z-index: 1;
}

.team-search:focus {
  border-color: #22d3ee;
}

.team-counter {
  font-size: 14px;
  color: #94a3b8;
  white-space: nowrap;
}

.players-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.player-card {
  border: 1px solid #1e293b;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-align: left;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.player-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.25);
}

.player-card__image-wrap {
  position: relative;
  aspect-ratio: 6 / 9;
  overflow: hidden;
}

.player-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.02));
}

.player-card__caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  color: #fff;
}

.player-card__name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.player-card__meta {
  font-size: 12px;
  opacity: 0.9;
  margin-top: 4px;
}

.player-card__info {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px 16px;
  font-size: 12px;
  color: #475569;
}

.player-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.player-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
}

.player-modal__content {
  position: relative;
  z-index: 2;
  width: min(1100px, 96vw);
  max-height: 92vh;
  overflow: auto;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.42);
  padding: 28px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  background: #e2e8f0;
  color: #0f172a;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  font-size: 18px;
  cursor: pointer;
}

.player-modal-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
}

.player-modal-photo {
  width: 100%;
  border-radius: 18px;
  display: block;
}

.player-modal-title {
  font-size: 34px;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 6px;
}

.player-modal-subtitle {
  color: #047857;
  font-weight: 700;
  margin-bottom: 20px;
}

.player-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.player-stat-box,
.season-stat-box {
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 14px;
  background: #fff;
}

.player-stat-label {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 4px;
}

.player-stat-value {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.season-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.season-stat-value {
  font-size: 26px;
  font-weight: 800;
  color: #0f172a;
}

.player-info-section + .player-info-section {
  margin-top: 24px;
}

.player-info-section h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0f172a;
}

.player-info-section p {
  color: #334155;
}

.player-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.player-gallery__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
}

/* ===== TEAM TIMELINE ===== */

.team-timeline {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.team-timeline > * {
  flex: 0 0 320px;
}

.team-timeline::-webkit-scrollbar {
  height: 10px;
}

.team-timeline::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 999px;
}

.team-timeline::-webkit-scrollbar-track {
  background: #0b1220;
  border-radius: 999px;
}

.team-timeline-card {
  scroll-snap-align: start;
  background: #0b1220;
  border: 1px solid #1e293b;
  border-radius: 18px;
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.team-timeline-card__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,0.6) 100%
  );
}


.team-timeline-card:hover {
  transform: translateY(-4px);
  border-color: #22d3ee;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.team-timeline-card__image-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.team-timeline-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-timeline-card__body {
  padding: 18px;
}

.team-timeline-card__meta {
  font-size: 12px;
  color: #22d3ee;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.team-timeline-card__body h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #e6edf3;
}

.team-timeline-card__body p {
  font-size: 14px;
  color: #94a3b8;
}

/* ===== PROJECTS UI ===== */

.projects-map-toolbar .team-search {
  flex: 1;
  max-width: none;
}

.projects-map-toolbar .btn {
  min-width: 140px;
}

.projects-map-error {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  color: #94a3b8;
  background: #020617;
}

/* ===== FOOTER ===== */

.site-footer {
  border-top: 1px solid #1f2937;
  padding: 35px 0;
  margin-top: 80px;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.site-footer__brand {
  font-weight: 600;
  margin-bottom: 4px;
}

.site-footer p {
  color: #64748b;
  font-size: 13px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer__links a {
  text-decoration: none;
  color: #94a3b8;
  font-size: 13px;
}

.site-footer__links a:hover {
  color: #22d3ee;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1100px) {
  .players-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .player-modal-grid {
    grid-template-columns: 1fr;
  }

  .matches-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 1000px) {
  .site-header__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .site-nav {
    gap: 14px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .grid--4 {
    grid-template-columns: 1fr 1fr;
  }

  .grid--3 {
    grid-template-columns: 1fr;
  }

  .grid--2 {
    grid-template-columns: 1fr;
  }

  .cta-block {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .contacts-layout {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .volley-hero__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .volley-hero__head h1 {
    font-size: 36px;
  }

  .players-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .team-counter {
    white-space: normal;
  }

  .season-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .player-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-map {
    height: 520px;
  }

  .projects-map-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 70px 0;
  }

  .hero__title {
    font-size: 34px;
  }

  .volley-hero {
    min-height: 520px;
    height: 72vh;
  }

  .volley-hero__content {
    padding-bottom: 40px;
  }

  .volley-hero__head h1 {
    font-size: 28px;
  }

  .volley-hero__logo {
    width: 72px;
    height: 72px;
  }

  .players-grid {
    grid-template-columns: 1fr;
  }

  .player-stats-grid,
  .season-stats-grid,
  .player-gallery {
    grid-template-columns: 1fr;
  }

  .player-modal {
    align-items: flex-end;
    padding: 0;
  }

  .player-modal__content {
    width: 100%;
    max-height: 88vh;
    border-radius: 24px 24px 0 0;
    padding: 22px 18px 24px;
  }

  .player-modal-title {
    font-size: 26px;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .projects-map {
    height: 420px;
  }
}

input[type="search"] {
  -webkit-appearance: none;
  appearance: none;
}

input::-webkit-search-decoration,
input::-webkit-search-cancel-button {
  display: none;
}

.hidden {
  display: none !important;
}

/* ===== MATCHES ===== */

.matches-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.match-card {
  background: #0b1220;
  border: 1px solid #1e293b;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.match-card:hover {
  transform: translateY(-4px);
  border-color: #22d3ee;
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.28);
}

.match-card--featured {
  border-color: #22d3ee;
}

.match-card__image-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.match-card__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.55), rgba(2, 6, 23, 0.05));
}

.match-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.match-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(2, 6, 23, 0.88);
  border: 1px solid #334155;
  color: #22d3ee;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.match-card__body {
  padding: 18px;
}

.match-card__date {
  font-size: 12px;
  color: #22d3ee;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.match-card__body h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #e6edf3;
}

.match-card__score {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.match-card__body p {
  font-size: 14px;
  color: #94a3b8;
}

/* ===== SOCIAL ===== */

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  background: #0b1220;
  border: 1px solid #1e293b;
  border-radius: 18px;
  padding: 22px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.social-card:hover {
  transform: translateY(-4px);
  border-color: #22d3ee;
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.24);
}

.social-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 211, 238, 0.14);
  color: #22d3ee;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}

.social-card h3 {
  margin-bottom: 4px;
  color: #e6edf3;
}

.social-card p {
  color: #94a3b8;
  font-size: 14px;
}

/* ===== RESPONSIVE PATCH ===== */

@media (max-width: 768px) {
  .matches-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .match-card__body h3 {
    font-size: 20px;
  }

  .match-card__score {
    font-size: 24px;
  }
}

/* ===== PROJECTS SINGLE STAT ===== */

.projects-single-stat {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.projects-single-stat__card {
  background: #0b1220;
  border: 1px solid #1e293b;
  border-radius: 20px;
  padding: 40px 50px;
  text-align: center;
  max-width: 420px;
  width: 100%;
  transition: all 0.2s ease;
}

.projects-single-stat__card:hover {
  transform: translateY(-4px);
  border-color: #22d3ee;
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.4);
}

.projects-single-stat__label {
  font-size: 14px;
  color: #22d3ee;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.projects-single-stat__value {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

/* ===== FULL WIDTH MAP ===== */

.projects-map-full {
  width: 100%;
  margin-top: 40px;
  padding: 0 40px;
}

.projects-map-toolbar {
  max-width: 1400px;
  margin: 0 auto 15px auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.projects-map {
  width: 100%;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
}

/* ===== HERO GRADIENT ===== */

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.site-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.site-brand__text strong {
  margin: 0;
  line-height: 1.1;
}

.site-brand__text span {
  margin-top: 2px;
  line-height: 1.2;
  font-size: 14px;
  color: #94a3b8;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-brand__logo {
  height: 42px;
}