/* style.css */
:root {
      --bg-dark: #121212;
      --accent-neon: #FFC300;
      --text-light: #FFFFFF;
      --text-gray: #CCCCCC;
      --overlay: rgba(18, 18, 18, 0.85);
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
  background: linear-gradient(to bottom, var(--overlay), var(--bg-dark));
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* position: relative; Добавляем для правильной позиционировки фиксированного элемента */
}
    .neon-glow {
      text-shadow: 0 0 5px var(--accent-neon), 0 0 10px var(--accent-neon);
      box-shadow: 0 0 10px var(--accent-neon);
      transition: all 0.3s ease;
    }
    .neon-glow:hover {
      text-shadow: 0 0 10px var(--accent-neon), 0 0 20px var(--accent-neon);
      box-shadow: 0 0 20px var(--accent-neon);
    }
    .neon-border {
      border: 2px solid var(--accent-neon);
      box-shadow: 0 0 15px var(--accent-neon);
    }
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    /* Header Styles */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(18, 18, 18, 0.9);
      backdrop-filter: blur(10px);
      z-index: 1000;
      padding: 15px 0;
    }
    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Montserrat Alternates', sans-serif;
      font-size: 24px;
      font-weight: 700;
      text-decoration: none;
      color: var(--text-light);
    }
    .logo span {
      color: var(--accent-neon);
    }
    nav ul {
      display: flex;
      list-style: none;
      gap: 25px;
    }
    nav a {
      color: var(--text-light);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }
    nav a:hover {
      color: var(--accent-neon);
    }
    .social-icons {
      display: flex;
      gap: 15px;
      margin-right: 20px;
    }
    .social-icons a {
      color: var(--text-light);
      font-size: 18px;
      transition: color 0.3s ease;
    }
    .social-icons a:hover {
      color: var(--accent-neon);
    }
    .book-dropdown {
      position: relative;
    }
    .book-btn {
      background: transparent;
      border: 2px solid var(--accent-neon);
      color: var(--accent-neon);
      padding: 10px 20px;
      border-radius: 50px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .book-btn:hover {
      background: var(--accent-neon);
      color: var(--bg-dark);
    }
    .dropdown-content {
      position: absolute;
      top: 100%;
      right: 0;
      background: rgba(30, 30, 30, 0.95);
      border-radius: 10px;
      padding: 15px;
      min-width: 250px;
      z-index: 1001;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
    }
    .book-dropdown:hover .dropdown-content {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .dropdown-item {
      padding: 10px 0;
      border-bottom: 1px solid #444;
    }
    .dropdown-item:last-child {
      border-bottom: none;
    }
    .dropdown-item h4 {
      font-size: 14px;
      margin-bottom: 5px;
      color: var(--accent-neon);
    }
    .dropdown-item p {
      font-size: 13px;
      color: var(--text-gray);
    }
    /* Hero Section */
    .hero {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
    }
    .hero-content {
      max-width: 1000px;
      padding: 0 20px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 1s forwards;
    }
    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .hero h1 {
      font-family: 'Montserrat Alternates', sans-serif;
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.2;
    }
    .hero p {
      font-size: 1.5rem;
      margin-bottom: 30px;
      color: var(--text-gray);
    }
    .btn-primary {
      background: var(--accent-neon);
      color: var(--bg-dark);
      border: none;
      padding: 15px 40px;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s ease;
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(255, 195, 0, 0.3);
    }
    /* Section Styles */
    section {
      padding: 0px 0;
    }
    .section-title {
      font-family: 'Montserrat Alternates', sans-serif;
      font-size: 2.5rem;
      text-align: center;
      margin-bottom: 60px;
      font-weight: 700;
      margin-top: 40px;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .section-visible .section-title {
      opacity: 1;
      transform: translateY(0);
    }
    /* Cards */
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }
    .card {
      background: rgba(30, 30, 30, 0.8);
      border-radius: 15px;
      overflow: hidden;
      transition: transform 0.3s ease;
      opacity: 0;
      transform: translateY(30px);
    }
    .section-visible .card {
      animation: fadeInUpCard 0.6s forwards;
    }
    @keyframes fadeInUpCard {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .card:hover {
      transform: translateY(-10px);
    }
    .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    .card-content {
      padding: 25px;
    }
    .card h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      font-weight: 600;
    }
    .card p {
      color: var(--text-gray);
      line-height: 1.6;
    }
    /* Locations */
    .locations-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 0;
    }
    .location-card {
      background: rgba(30, 30, 30, 0.8);
      border-radius: 15px;
      overflow: hidden;
      position: relative;
      height: 350px;
      opacity: 0;
      transform: translateY(30px);
    }
    .section-visible .location-card {
      animation: fadeInUpCard 0.6s forwards 0.1s;
    }
    .location-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    .location-info {
      padding: 20px;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(30, 30, 30, 0.9), transparent);
      transition: all 0.3s ease;
      opacity: 1;
      transform: translateY(0);
      text-align: center;
    }
    .location-card:hover .location-info {
      opacity: 0;
      transform: translateY(20px);
    }
    .location-overlay {
      position: absolute;
      bottom: 20px;
      left: 0;
      right: 0;
      padding: 20px;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.3s ease;
      text-align: center;
    }
    .location-card:hover .location-overlay {
      opacity: 1;
      transform: translateY(0);
    }
    .location-overlay h3 {
      font-size: 1.4rem;
      margin-bottom: 10px;
    }
    .location-overlay .btn-primary {
      width: 100%;
      margin-top: 15px;
    }
    /* Reviews */
    .reviews-container {
      position: relative;
      overflow: hidden;
      margin: 40px 0;
    }
    .reviews-wrapper {
      display: flex;
      transition: transform 0.5s ease;
      min-width: 100%;
    }
    .review {
      background: rgba(30, 30, 30, 0.8);
      border-radius: 15px;
      padding: 25px;
      min-width: 280px;
      margin: 0 10px;
      transition: transform 0.3s ease;
    }
    .review:hover {
      transform: translateY(-5px);
    }
    .review-header {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }
    .review-avatar {
      width: 40px;
      height: 40px;
      background: var(--accent-neon);
      color: var(--bg-dark);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1rem;
    }
    .review-info {
      margin-left: 12px;
    }
    .review-info h4 {
      font-size: 1rem;
      margin-bottom: 3px;
    }
    .review-stars {
      color: var(--accent-neon);
      font-size: 0.9rem;
    }
    .review blockquote {
      font-style: italic;
      color: var(--text-gray);
      line-height: 1.5;
      font-size: 0.95rem;
    }
    .review-nav {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }
    .review-btn {
      background: rgba(255, 195, 0, 0.2);
      color: var(--accent-neon);
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      font-size: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    .review-btn:hover {
      background: rgba(255, 195, 0, 0.4);
      transform: scale(1.1);
    }
    .leave-review-btn {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }
    .leave-review-btn a {
      padding: 12px 25px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s ease;
    }
    .leave-review-btn .btn-lesnaya {
      background: transparent;
      border: 2px solid var(--accent-neon);
      color: var(--accent-neon);
    }
    .leave-review-btn .btn-petrogradskaya {
      background: var(--accent-neon);
      color: var(--bg-dark);
      border: none;
    }
    .leave-review-btn a:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(255, 195, 0, 0.3);
    }
    /* Map */
    .map-section {
      margin-top: 60px;
    }
    .map-section .section-title {
      margin-top: 0;
    }
    .yandex-map {
      width: 100%;
      height: 530px;
      border: none;
      border-radius: 15px;
      overflow: hidden;
    }
    .map-lesnaya, .map-petrogradskaya {
      height: 400px;
    }
    /* Venue Pages */
    .gallery-slider {
      position: relative;
      max-width: 100%;
      margin: 40px auto;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 0 20px rgba(255, 195, 0, 0.1);
    }
    .slider-images {
      display: flex;
      transition: transform 0.5s ease;
    }
    .slider-images img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      flex-shrink: 0;
    }
    .slider-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 100%;
      display: flex;
      justify-content: space-between;
      padding: 0 20px;
      pointer-events: none;
    }
    .slider-btn {
      background: rgba(255, 195, 0, 0.2);
      color: var(--accent-neon);
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: auto;
      transition: all 0.3s ease;
    }
    .slider-btn:hover {
      background: rgba(255, 195, 0, 0.4);
      transform: scale(1.1);
    }
    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 20px;
    }
    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #444;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    .dot.active {
      background: var(--accent-neon);
    }
    .booking-section {
      text-align: center;
      padding: 20px 0;
    }
    .booking-btn {
      font-size: 1.5rem;
      padding: 20px 50px;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(255, 195, 0, 0.4); }
      70% { box-shadow: 0 0 0 20px rgba(255, 195, 0, 0); }
      100% { box-shadow: 0 0 0 0 rgba(255, 195, 0, 0); }
    }
    .menu-section {
      text-align: center;
      padding: 20px 0;
    }
    .info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }
    .info-item {
      background: rgba(30, 30, 30, 0.8);
      border-radius: 15px;
      padding: 25px;
      transition: transform 0.3s ease;
      opacity: 0;
      transform: translateY(30px);
    }
    .section-visible .info-item {
      animation: fadeInUpCard 0.6s forwards 0.2s;
    }
    .info-item:hover {
      transform: translateY(-5px);
    }
    .info-item h3 {
      font-size: 1.3rem;
      margin-bottom: 15px;
      color: var(--accent-neon);
    }
    .social-links {
      display: flex;
      gap: 20px;
      margin-top: 10px;
    }
    .social-links a {
      color: var(--accent-neon);
      text-decoration: none;
      transition: color 0.3s ease;
    }
    .social-links a:hover {
      color: var(--text-light);
    }
    /* Menu Modal */
    .modal {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }
    .modal.active {
      opacity: 1;
      visibility: visible;
    }
    .modal-content {
      background: var(--bg-dark);
      border-radius: 15px;
      max-width: 90%;
      max-height: 90vh;
      overflow: auto;
      position: relative;
      transform: scale(0.9);
      transition: transform 0.3s ease;
    }
    .modal.active .modal-content {
      transform: scale(1);
    }
    .modal-close {
      position: absolute;
      top: 15px;
      right: 15px;
      background: var(--bg-dark);
      color: var(--text-light);
      border: none;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
    }
    .menu-content {
      padding: 30px;
      font-family: 'Inter', sans-serif;
    }
    .menu-title {
      font-family: 'Montserrat Alternates', sans-serif;
      font-size: 2rem;
      text-align: center;
      margin-bottom: 30px;
      color: var(--accent-neon);
    }
    .menu-category {
      margin-bottom: 40px;
    }
    .menu-category h3 {
      font-size: 1.5rem;
      margin-bottom: 20px;
      color: var(--accent-neon);
      border-bottom: 2px solid var(--accent-neon);
      padding-bottom: 10px;
    }
    .menu-item {
      display: flex;
      justify-content: space-between;
      padding: 15px 0;
      border-bottom: 1px solid #444;
    }
    .menu-item:last-child {
      border-bottom: none;
    }
    .menu-item-name {
      font-size: 1.1rem;
    }
    .menu-item-price {
      font-weight: 600;
      color: var(--accent-neon);
    }
    .menu-subcategory {
      margin-left: 20px;
      margin-bottom: 15px;
    }
    .menu-subcategory h4 {
      font-size: 1.3rem;
      margin-bottom: 15px;
      color: var(--accent-neon);
      padding: 10px 0 5px 0;
    }
    .menu-subitem {
      display: flex;
      justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px solid #444;
    }
    .menu-subitem:last-child {
      border-bottom: none;
    }
    .menu-note {
      margin-top: 15px;
      padding: 10px;
      background: rgba(255, 195, 0, 0.1);
      border-radius: 5px;
      font-size: 0.9rem;
      text-align: center;
    }
    .menu-center-note {
      text-align: center;
      margin: 15px 0;
      padding: 10px;
      background: rgba(255, 195, 0, 0.1);
      border-radius: 5px;
      font-style: italic;
    }
    /* Rates Section */
    .rates-container {
      background: rgba(30, 30, 30, 0.8);
      border-radius: 15px;
      padding: 40px;
      margin: 40px 0;
    }
    .rates-grid {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 120px;
    }
    .rate-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 40px;
      border-radius: 10px;
      background: rgba(40, 40, 40, 0.8);
      width: 100%;
      max-width: 500px;
    }
    .rate-icon {
      margin-right: 20px;
      font-size: 24px;
      color: var(--accent-neon);
    }
    .rate-info {
      flex: 1;
    }
    .rate-name {
      font-size: 1.3rem;
      margin-bottom: 5px;
    }
    .rate-price {
      font-weight: 700;
      color: var(--accent-neon);
      font-size: 1.5rem;
    }
    .rates-note {
      text-align: center;
      margin: 25px 0;
      padding: 15px;
      background: rgba(255, 195, 0, 0.1);
      border-radius: 10px;
      font-style: italic;
    }
    .divider {
      height: 1px;
      background: linear-gradient(to right, transparent, var(--accent-neon), transparent);
      margin: 30px 0;
    }
    .time-format {
      margin-top: 30px;
    }
    .time-format h3 {
      font-size: 1.3rem;
      margin-bottom: 20px;
      color: var(--accent-neon);
    }
    .time-items {
      display: grid;
      gap: 15px;
    }
    .time-item {
      display: flex;
      justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px solid #444;
    }
    .time-item:last-child {
      border-bottom: none;
    }
    /* New Deals Style */
    .deals-grid-2x2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .new-deal {
      background: rgba(30, 30, 30, 0.8);
      border-radius: 10px;
      padding: 25px;
      position: relative;
      transition: transform 0.3s ease;
      opacity: 0;
      transform: translateY(30px);
    }
    .section-visible .new-deal {
      animation: fadeInUpCard 0.6s forwards 0.3s;
    }
    .new-deal:hover {
      transform: translateY(-5px);
    }
    .new-deal h3 {
      font-size: 1.2rem;
      margin-bottom: 12px;
      color: var(--accent-neon);
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .new-deal p {
      color: var(--text-gray);
      line-height: 1.5;
    }
    .gift-note {
      background: rgba(255, 195, 0, 0.1);
      border-radius: 8px;
      padding: 15px;
      margin-top: 30px;
      font-size: 0.9rem;
      border-left: 3px solid var(--accent-neon);
      grid-column: 1 / -1;
    }
    /* Footer */
    footer {
      background: rgba(18, 18, 18, 0.95);
      padding: 40px 0 20px;
      margin-top: auto;
      border-top: 1px solid rgba(255, 195, 0, 0.2);
    }
    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      width: 100%;
    }
    .footer-logo-wrapper {
      display: flex;
      flex: 1;
      justify-content: center;
      order: 2;
    }
    .footer-logo {
      font-family: 'Montserrat Alternates', sans-serif;
      font-size: 20px;
      font-weight: 700;
      text-align: center;
    }
    .footer-logo span {
      color: var(--accent-neon);
    }
    .footer-social {
      display: flex;
      gap: 20px;
      flex: 1;
      justify-content: flex-end;
      order: 3;
    }
    .footer-social a {
      color: var(--text-light);
      font-size: 20px;
      transition: color 0.3s ease;
    }
    .footer-social a:hover {
      color: var(--accent-neon);
    }
    .copyright {
      flex: 1;
      text-align: left;
      order: 1;
    }
    /* Responsive */
    @media (max-width: 768px) {
      .footer-content {
        flex-direction: column;
        text-align: center;
      }
      .copyright,
      .footer-logo-wrapper,
      .footer-social {
        order: unset;
        flex: unset;
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
      }
      .slider-images img {
        height: 250px;
      }
    }
    .hidden {
      display: none;
    }
    /* Age Verification Modal */
    #ageVerificationModal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      backdrop-filter: blur(5px);
    }
    #ageVerificationModal .modal-content {
      background: var(--bg-dark);
      border: 2px solid var(--accent-neon);
      border-radius: 20px;
      padding: 40px;
      text-align: center;
      max-width: 500px;
      width: 90%;
      box-shadow: 0 0 30px var(--accent-neon);
    }
    #ageVerificationModal h2 {
      font-family: 'Montserrat Alternates', sans-serif;
      font-size: 1.8rem;
      margin-bottom: 25px;
      color: var(--accent-neon);
    }
    #ageVerificationModal p {
      margin-bottom: 30px;
      font-size: 1.1rem;
      line-height: 1.6;
    }
    .age-buttons {
      display: flex;
      justify-content: center;
      gap: 25px;
    }
    .age-btn {
      padding: 12px 35px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1.1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
    }
    .age-btn.yes {
      background: var(--accent-neon);
      color: var(--bg-dark);
    }
    .age-btn.yes:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(255, 195, 0, 0.4);
    }
    .age-btn.no {
      background: transparent;
      color: var(--text-light);
      border: 2px solid var(--accent-neon);
    }
    .age-btn.no:hover {
      background: rgba(255, 195, 0, 0.1);
    }
    .underage-message {
      color: var(--accent-neon);
      font-weight: 600;
      margin-top: 20px;
      display: none;
    }
/* --- ADAPTIVE STYLES FOR MOBILE AND TABLET --- */

/* Десктоп: фон в body */
@media (min-width: 769px) {
  body {
    background-image: url('логотип.png');
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
}

/* Мобильные: убираем фон из body и добавляем фиксированный псевдоэлемент */
@media (max-width: 768px) {
  body {
    background-image: none;
  }

  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('логотип.png') center / cover no-repeat;
    z-index: -1;
    pointer-events: none;
  }

  /* Остальные адаптивные стили */
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1.1rem; }
  .btn-primary { padding: 12px 30px; font-size: 1rem; }
  .section-title { font-size: 1.8rem; }
  .book-btn span { display: none; }
  .book-btn { padding: 10px 15px; font-size: 0.9rem; }
  .header-content > nav, .social-icons {
    display: none;
  }
  .locations-grid,
  .deals-grid-2x2,
  .info-grid {
    grid-template-columns: 1fr;
  }
  .leave-review-btn {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .leave-review-btn a {
    width: 100%;
    max-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 20px;
    box-sizing: border-box;
  }
  .slider-images img { height: 250px; }
  .yandex-map { height: 280px; }
  .map-lesnaya, .map-petrogradskaya { height: 280px; }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .copyright,
  .footer-logo-wrapper,
  .footer-social {
    order: unset;
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero p { font-size: 1rem; }
  .section-title { font-size: 1.5rem; margin-bottom: 30px; }
  .btn-primary { padding: 10px 20px; font-size: 0.9rem; }
  .slider-btn { width: 40px; height: 40px; font-size: 16px; }
  .review { min-width: 250px; padding: 20px; }
  .age-btn { padding: 10px 20px; font-size: 1rem; min-width: 140px; }
}
.hidden {
  display: none;
}
.team-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.team-cards .card {
  width: calc(33.333% - 20px); /* 3 колонки на десктопе */
  min-width: 300px;
  flex: 0 1 auto;
  opacity: 0;
  transform: translateY(30px);
}

.team-cards .card:hover {
  transform: translateY(-10px);
}

/* Анимация появления — как у оригинальных .card */
.section-visible .team-cards .card {
  animation: fadeInUpCard 0.6s forwards;
}

/* Адаптив: 2 колонки на планшетах */
@media (max-width: 992px) {
  .team-cards .card {
    width: calc(50% - 15px);
  }
}

/* Адаптив: 1 колонка на мобильных */
@media (max-width: 768px) {
  .team-cards .card {
    width: 100%;
  }
}