/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --coral-red: #ff5757;
  --coral-red-light: #ff7b7b;
  --coral-red-dark: #e64545;
  --dark-bg: #1a1a1a;
  --light-bg: #f8f8f8;
  --white: #ffffff;
  --black: #000000;
  --gray-light: #e0e0e0;
  --gray-medium: #999999;
  --gray-dark: #4a4a4a;
  --accent-yellow: #ffd93d;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-bg);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--gray-light);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo-section {
  display: flex;
  gap: 8px;
  align-items: center;
}

.logo-pill {
  background: var(--dark-bg);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-desktop {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-desktop a {
  color: var(--dark-bg);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-desktop a:hover {
  color: var(--coral-red);
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.burger-btn span {
  width: 25px;
  height: 2px;
  background: var(--dark-bg);
  transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu.active {
  max-height: 400px;
  padding: 20px 0;
  border-top: 1px solid var(--gray-light);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-menu a {
  color: var(--dark-bg);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0;
}

/* Hero Section */
.hero-section {
  background: var(--coral-red);
  min-height: 100vh;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content {
  position: relative;
}

.hero-title {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 300;
  color: var(--dark-bg);
  margin-bottom: 60px;
  line-height: 1.1;
  max-width: 900px;
}

.floating-icon,
.floating-cursor {
  position: absolute;
  color: var(--dark-bg);
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

.floating-icon-1 {
  top: 100px;
  left: 200px;
  animation-delay: 0s;
}

.floating-icon-2 {
  top: 300px;
  right: 150px;
  animation-delay: 2s;
}

.floating-cursor {
  bottom: 200px;
  left: 100px;
  animation-delay: 1s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 80px 0;
  position: relative;
}

.geometric-sphere {
  width: 400px;
  height: 400px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.05s linear;
}

.sphere-svg {
  width: 100%;
  height: 100%;
}

.sphere-shape-1,
.sphere-shape-2 {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.sphere-shape-1 {
  width: 120px;
  height: 180px;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  border-radius: 60% 40% 40% 60% / 50% 50% 50% 50%;
  background: linear-gradient(135deg, rgba(26, 217, 217, 0.3), rgba(161, 136, 255, 0.3));
}

.sphere-shape-2 {
  width: 100px;
  height: 140px;
  bottom: 40px;
  right: 20px;
  border-radius: 45% 55% 55% 45% / 60% 60% 40% 40%;
  background: linear-gradient(225deg, rgba(255, 255, 255, 0.25), rgba(255, 217, 61, 0.2));
}

.sphere-badge {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-yellow);
  color: var(--dark-bg);
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-description {
  max-width: 700px;
  margin: 0 auto;
}

.hero-description p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--dark-bg);
  opacity: 0.9;
}

/* Section Styles */
section {
  padding: 120px 40px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gray-medium);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 60px;
  max-width: 1000px;
}

/* About Section */
.about-section {
  background: var(--light-bg);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  max-width: 900px;
}

.about-text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--gray-dark);
}

.highlight-text {
  color: var(--coral-red);
  font-weight: 500;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 60px;
}

.stat-card {
  perspective: 1000px;
  cursor: pointer;
  height: 200px;
}

.stat-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.stat-card.flipped .stat-card-inner {
  transform: rotateY(180deg);
}

.stat-card-front,
.stat-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.stat-card-front {
  background: var(--white);
  border: 2px solid var(--dark-bg);
}

.stat-card-back {
  background: var(--dark-bg);
  color: var(--white);
  transform: rotateY(180deg);
  font-size: 14px;
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 300;
  font-family: "IBM Plex Serif", serif;
  margin-bottom: 10px;
  color: var(--coral-red);
}

.stat-label {
  font-size: 14px;
  color: var(--gray-dark);
  text-align: center;
}

/* Services Section */
.services-section {
  background: var(--white);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.service-card {
  background: var(--white);
  border: 2px solid var(--dark-bg);
  border-radius: 16px;
  padding: 40px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.service-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  border-color: var(--coral-red);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-card.expanded {
  grid-column: span 2;
  background: var(--coral-red);
  color: var(--white);
}

.service-card.expanded .service-number,
.service-card.expanded .service-title,
.service-card.expanded .service-description {
  color: var(--white);
}

.service-card.expanded .tag {
  background: var(--white);
  color: var(--dark-bg);
}

.service-card-main {
  position: relative;
  z-index: 2;
}

.service-number {
  font-size: 14px;
  font-weight: 700;
  color: var(--coral-red);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.service-title {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 15px;
  color: var(--dark-bg);
}

.service-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-dark);
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: var(--light-bg);
  color: var(--dark-bg);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.service-card-expanded {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  margin-top: 0;
}

.service-card.expanded .service-card-expanded {
  max-height: 500px;
  opacity: 1;
  margin-top: 30px;
}

.service-card-expanded h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--white);
}

.service-card-expanded ul {
  list-style: none;
  padding: 0;
}

.service-card-expanded li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  line-height: 1.6;
}

.service-card-expanded li:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--accent-yellow);
}

.services-note {
  background: var(--light-bg);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.note-icon {
  font-size: 48px;
  flex-shrink: 0;
}

.note-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 500;
}

.note-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-dark);
}

/* Why Section */
.why-section {
  background: var(--dark-bg);
  color: var(--white);
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-section .section-title {
  color: var(--white);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.principle-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 35px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.principle-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.principle-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--coral-red);
  transform: translateY(-5px);
}

.principle-number {
  font-size: 14px;
  font-weight: 700;
  color: var(--coral-red);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.principle-card h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--white);
}

.principle-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* Cases Section */
.cases-section {
  background: var(--white);
}

.cases-container {
  max-width: 1200px;
  margin: 0 auto;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.case-card {
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
}

.case-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.case-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-card:hover .case-image img {
  transform: scale(1.05);
}

.case-content {
  padding: 30px 0;
}

.case-content h3 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 15px;
  color: var(--dark-bg);
}

.case-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-dark);
}

/* Team Section */
.team-section {
  background: var(--light-bg);
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
}

.team-intro {
  max-width: 800px;
  margin-bottom: 60px;
}

.team-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-dark);
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.team-member {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.team-member.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.team-member:nth-child(even) {
  grid-template-columns: 1fr 300px;
}

.team-member:nth-child(even) .member-photo {
  order: 2;
}

.member-photo {
  width: 300px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member.hovered .member-photo img {
  transform: scale(1.05);
}

.member-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.member-tag {
  background: var(--dark-bg);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.member-name {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 5px;
  color: var(--dark-bg);
}

.member-role {
  font-size: 16px;
  color: var(--coral-red);
  font-weight: 600;
  margin-bottom: 15px;
}

.member-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-dark);
}

/* Contacts Section */
.contacts-section {
  background: var(--white);
  padding-bottom: 80px;
}

.contacts-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contacts-visual {
  display: flex;
  justify-content: center;
  margin: 60px 0;
}

.contact-illustration {
  width: 300px;
  height: 300px;
}

.illustration-svg {
  width: 100%;
  height: 100%;
}

.contacts-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-block h3 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 30px;
}

.info-item {
  margin-bottom: 25px;
}

.info-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gray-medium);
  margin-bottom: 8px;
}

.info-value {
  font-size: 18px;
  font-weight: 500;
  color: var(--dark-bg);
  margin-bottom: 5px;
}

.info-note {
  font-size: 13px;
  color: var(--gray-medium);
}

.work-format {
  background: var(--light-bg);
  padding: 30px;
  border-radius: 12px;
}

.work-format h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}

.work-format p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-dark);
}

.contact-form-wrapper h3 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark-bg);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-light);
  border-radius: 8px;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--coral-red);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #e74c3c;
}

.form-checkbox {
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 4px;
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: 13px;
  color: var(--gray-dark);
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox a {
  color: var(--coral-red);
  text-decoration: none;
  font-weight: 600;
}

.form-checkbox a:hover {
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  padding: 16px 32px;
  background: var(--coral-red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--coral-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 87, 87, 0.3);
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--gray-light);
}

/* Footer */
.site-footer {
  background: var(--dark-bg);
  color: var(--white);
  padding: 80px 40px 40px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--white);
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-heading {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--coral-red);
}

.footer-contacts {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contacts p {
  margin-bottom: 15px;
}

.footer-contacts strong {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

.footer-bottom a {
  color: var(--coral-red);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-note {
  font-size: 11px !important;
  color: rgba(255, 255, 255, 0.4) !important;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: -500px;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 30px;
  transition: bottom 0.5s ease;
}

.cookie-popup.show {
  bottom: 30px;
}

.cookie-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--dark-bg);
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.cookie-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.cookie-text {
  flex: 1;
}

.cookie-text h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark-bg);
}

.cookie-text p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-dark);
  margin-bottom: 0;
}

.cookie-text a {
  color: var(--coral-red);
  text-decoration: none;
  font-weight: 600;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--dark-bg);
}

.cookie-btn-accept {
  background: var(--dark-bg);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background: var(--coral-red);
  border-color: var(--coral-red);
}

.cookie-btn-decline {
  background: var(--white);
  color: var(--dark-bg);
}

.cookie-btn-decline:hover {
  background: var(--light-bg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-desktop {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .team-member,
  .team-member:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .team-member:nth-child(even) .member-photo {
    order: 1;
  }

  .member-photo {
    margin: 0 auto;
  }

  .contacts-content {
    grid-template-columns: 1fr;
  }

  .service-card.expanded {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 20px;
  }

  .header-container {
    padding: 0 20px;
  }

  .hero-section {
    padding: 100px 20px 60px;
  }

  .hero-title {
    font-size: 40px;
  }

  .section-title {
    font-size: 32px;
  }

  .geometric-sphere {
    width: 280px;
    height: 280px;
  }

  .services-grid,
  .cases-grid,
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cookie-content {
    flex-direction: column;
    padding: 20px;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .member-photo {
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 1;
  }
}

/* Accessibility */
*:focus {
  outline: 2px solid var(--coral-red);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid var(--coral-red);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  header,
  footer,
  .cookie-popup,
  .burger-btn {
    display: none;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--coral-red);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--coral-red-dark);
}
