  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --yellow: #FFC107;
    --orange: #FF8C00;
    --purple: #8B7BB5;
    --purple-light: #B8A9D9;
    --purple-bg: #9B8DC0;
    --pink: #E8A0C0;
    --green: #7CB9A0;
    --teal: #5BBFB5;
    --text: #333333;
    --text-light: #666666;
    --bg-cream: #FFF9EE;
    --bg-yellow-light: #FFF3D0;
    --white: #ffffff;
    --icon-bg-yellow: #FFF3D0;
    --icon-bg-purple: #EDE9F5;
    --radius: 16px;
    --radius-sm: 10px;
  }

  body {
    font-family: 'Nunito Sans', 'Nunito', sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
  }

  a { text-decoration: none; color: inherit; }
  ul { list-style: none; }
  img { max-width: 100%; display: block; }

  .topbar {
    background: #fff;
    padding: 6px 60px;
    display: flex;
    justify-content: flex-end;
    gap: 32px;
    font-size: 13px;
    color: var(--text-light);
  }
  .topbar a { color: var(--text-light); }
  .topbar a:hover { color: var(--purple); }
  .topbar strong { color: var(--orange); font-weight: 700; }

  header {
    background: #fff;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #FF8C00;
  }
  .logo img { height: 48px; }

  nav {
    display: flex;
    align-items: center;
    gap: 28px;
  }

  .nav-item {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s, color 0.2s;
  }
  .nav-item:hover, .nav-item.active { color: var(--orange); border-bottom-color: var(--orange); }
  .nav-item .arrow { font-size: 10px; margin-top: 1px; color: var(--text-light); }
  .nav-item.active .arrow { color: var(--text-light); }
  a.nav-item { text-decoration: none; color: inherit; }

  .header-right {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .phone-block { text-align: center; }
  .phone-block .phone {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    white-space: nowrap;
  }
  .phone-block .callback {
    font-size: 12px;
    color: var(--orange);
    cursor: pointer;
    text-decoration: underline;
  }
  .social-icons { display: flex; gap: 8px; align-items: center; }
  .social-icons a {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: #f3f3f3;
    color: #555;
    font-size: 16px;
    transition: background 0.2s;
  }
  .social-icons a:hover { background: var(--purple-light); color: #fff; }

  .btn-excursion {
    background: var(--purple-bg);
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
    border: none;
    cursor: pointer;
  }
  .btn-excursion:hover { background: #7a6ba8; transform: translateY(-1px); }

  .hero {
    background: var(--bg-cream);
    padding: 0 60px;
    display: flex;
    align-items: stretch;
    min-height: 420px;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    flex: 1;
    padding: 60px 40px 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
  }

  .hero-left h1 {
    font-family: 'Nunito', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 12px;
  }
  .hero-left h1 span { color: var(--orange); }

  .hero-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 28px;
  }

  .slider-controls {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  .slider-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 2px solid var(--purple-light);
    background: #fff;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--purple);
    font-size: 18px;
    transition: all 0.2s;
  }
  .slider-btn:hover { background: var(--purple-bg); color: #fff; border-color: var(--purple-bg); }

  .hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
  }
  .shape-yellow { width: 180px; height: 180px; background: var(--yellow); top: -40px; left: 280px; border-radius: 40% 60% 60% 40%; }
  .shape-pink { width: 100px; height: 100px; background: #F4A0B8; bottom: 40px; left: 220px; border-radius: 50%; }
  .shape-green { width: 80px; height: 80px; background: #7CB9A0; top: 20px; right: 420px; border-radius: 50%; }
  .shape-triangle {
    position: absolute;
    width: 0; height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 80px solid #F4D03F;
    bottom: 60px; right: 380px;
    opacity: 0.6;
  }

.hero-img {
    width: 340px;
    display: flex;
    align-items: center; /* ← */
    justify-content: center; /* ← добавить */
    z-index: 2;
    position: relative;
}
    .hero-img img {
        width: 100%;
        height: auto;
        object-fit: contain; /* ← cover → contain */
        object-position: center; /* ← добавить */
    }

  .hero-form {
    width: 300px;
    background: var(--purple-bg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    color: #fff;
  }
  .hero-form h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
  }
  .hero-form p { font-size: 13px; opacity: 0.85; line-height: 1.5; }
  .form-group input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    outline: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
  }
  .form-group input::placeholder { color: rgba(255,255,255,0.6); }
  .btn-submit {
    background: var(--yellow);
    color: var(--text);
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
  }
  .btn-submit:hover { background: #e6ad00; }

  .info-row {
    background: var(--bg-yellow-light);
    padding: 28px 60px;
  }
  .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
  }
  .info-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
  }
  .icon-yellow { background: var(--icon-bg-yellow); }
  .icon-purple { background: var(--icon-bg-purple); }
  .info-item-text { font-size: 13px; line-height: 1.4; }
  .info-item-text strong { font-weight: 700; color: var(--text); }
  .info-item-text span { color: var(--text-light); }

  section { padding: 60px; }
  .section-title {
    font-family: 'Nunito', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--purple);
    margin-bottom: 8px;
  }
  .section-subtitle {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 32px;
  }

  .cta-banner {
    margin: 0 60px;
    background: var(--purple-bg);
    border-radius: var(--radius);
    padding: 48px 52px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
    color: #fff;
  }
  .cta-banner-text { flex: 1; z-index: 2; }
  .cta-banner-text h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  .cta-banner-text p { font-size: 15px; opacity: 0.9; margin-bottom: 20px; }
  .cta-form { display: flex; gap: 12px; align-items: center; }
  .cta-form input {
    padding: 12px 16px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    outline: none;
    min-width: 220px;
    background: rgba(255,255,255,0.15);
    color: #fff;
  }
  .cta-form input::placeholder { color: rgba(255,255,255,0.6); }
.cta-banner-img {
    width: 260px;
    flex-shrink: 0;
    z-index: 2;
    display: flex; /* ← добавить */
    align-items: center; /* ← добавить */
    justify-content: center; /* ← добавить */
}
  .cta-banner-img img { width: 100%; border-radius: 8px; }

  .cta-shape-1 { position: absolute; width: 120px; height: 120px; background: #E8A0B8; border-radius: 50%; right: 280px; top: -30px; opacity: 0.7; }
  .cta-shape-2 { position: absolute; width: 80px; height: 80px; background: #7CB9A0; border-radius: 50%; right: 300px; bottom: 20px; opacity: 0.7; }
  .cta-shape-3 { position: absolute; width: 60px; height: 60px; background: #F4D03F; border-radius: 50%; right: 200px; top: 40px; opacity: 0.7; }
  .cta-triangle {
    position: absolute;
    width: 0; height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid #E8968C;
    right: 240px; bottom: 30px;
    opacity: 0.6;
  }

  .privacy-note { font-size: 11px; opacity: 0.7; margin-top: 8px; }
  .privacy-note a { text-decoration: underline; }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .service-card {
    background: var(--icon-bg-yellow);
    border-radius: var(--radius-sm);
    padding: 18px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
  }
  .service-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
  .service-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
  }
  .service-card span {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text);
  }

  .gallery-section { background: var(--bg-cream); }
  .video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .video-thumb {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
  }
  .video-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
  }
  .video-thumb:hover img { transform: scale(1.05); }
  .play-btn {
    position: absolute;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .play-btn-circle {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: var(--purple);
    transition: transform 0.2s;
  }
  .video-thumb:hover .play-btn-circle { transform: scale(1.1); }

  .dots { display: flex; gap: 8px; justify-content: center; margin-top: 20px; }
  .dot { width: 10px; height: 10px; border-radius: 50%; background: #ddd; cursor: pointer; }
  .dot.active { background: var(--purple); }

  .advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .adv-card {
    background: var(--icon-bg-yellow);
    border-radius: var(--radius-sm);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform 0.15s;
  }
  .adv-card:hover { transform: translateY(-2px); }
  .adv-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--icon-bg-purple);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
  }
  .adv-card span { font-size: 15px; font-weight: 600; }

  .team-slider {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    position: relative;
  }
  .team-card {
    flex: 0 0 calc(25% - 18px);
    text-align: center;
  }
  .team-photo {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 12px;
  }
  .team-photo img { width: 100%; height: 100%; object-fit: cover; }
  .team-name { font-size: 12px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.5px; }
  .team-fullname { font-size: 15px; font-weight: 700; margin: 2px 0; }
  .team-role { font-size: 13px; color: var(--text-light); }
  .team-exp { font-size: 13px; color: var(--text-light); }

  .slider-arrow {
    position: absolute;
    top: 40%;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #eee;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    color: var(--text-light);
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s;
  }
  .slider-arrow:hover { border-color: var(--purple); color: var(--purple); }
  .slider-arrow.left { left: -20px; }
  .slider-arrow.right { right: -20px; }

  .about-section { background: #f9f6ff; }
  .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .about-text h2 { font-family: 'Nunito', sans-serif; font-size: 28px; font-weight: 800; margin-bottom: 16px; color: var(--text); }
  .about-text .mission { color: var(--orange); font-weight: 700; margin-bottom: 16px; font-size: 15px; }
  .about-text ul { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
  .about-text ul li { font-size: 14px; color: var(--text-light); padding-left: 16px; position: relative; line-height: 1.5; }
  .about-text ul li::before { content: '•'; position: absolute; left: 0; color: var(--orange); }

  .reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    position: relative;
  }
  .review-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  }
  .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
  .reviewer-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--purple-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: #fff;
    overflow: hidden;
  }
  .reviewer-avatar img { width: 100%; height: 100%; object-fit: cover; }
  .reviewer-name { font-weight: 700; font-size: 15px; }
  .reviewer-city { font-size: 12px; color: var(--text-light); }
  .review-text { font-size: 14px; color: var(--text-light); line-height: 1.6; }
  .review-link { display: inline-block; margin-top: 12px; font-size: 13px; color: var(--purple); font-weight: 600; }

  .map-section { padding: 0; }
  .map-placeholder {
    width: 100%;
    height: 320px;
    background: #e8ece8;
    position: relative;
    overflow: hidden;
  }
  .map-placeholder img { width: 100%; height: 100%; object-fit: cover; }
  .map-pin {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -100%);
    font-size: 40px;
    color: var(--purple);
  }

  footer {
    background: #fff;
    padding: 48px 60px 24px;
    border-top: 1px solid #f0f0f0;
  }
  .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
  .footer-logo { font-family: 'Nunito', sans-serif; font-size: 26px; font-weight: 900; color: var(--orange); margin-bottom: 12px; }
  .footer-contact { font-size: 13px; color: var(--text-light); line-height: 1.7; }
  .footer-contact .big-phone { font-size: 22px; font-weight: 800; color: var(--text); display: flex; align-items: center; gap: 6px; }
  .footer-contact .big-phone::before { content: '📞'; font-size: 16px; }
  .footer-contact a { color: var(--orange); }
  .footer-social { display: flex; gap: 10px; margin-top: 12px; }
  .footer-social a {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: #f3f3f3;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
    color: #555;
    transition: background 0.2s;
  }
  .footer-social a:hover { background: var(--purple-light); color: #fff; }
  .footer-col h4 { font-weight: 700; font-size: 14px; margin-bottom: 12px; }
  .footer-col ul li { font-size: 13px; color: var(--text-light); margin-bottom: 6px; }
  .footer-col ul li a:hover { color: var(--orange); }
  .footer-bottom { border-top: 1px solid #f0f0f0; padding-top: 16px; display: flex; justify-content: space-between; align-items: center; }
  .footer-bottom p { font-size: 12px; color: #bbb; }
  .footer-bottom a { font-size: 12px; color: var(--orange); }

  .wave-divider { position: relative; height: 60px; overflow: hidden; }
  .wave-divider svg { position: absolute; bottom: 0; }

  .breadcrumb { padding: 14px 60px; font-size: 13px; color: var(--text-light); }
  .breadcrumb a { color: var(--text-light); }
  .breadcrumb a:hover { color: var(--orange); }
  .breadcrumb .sep { margin: 0 6px; color: var(--text-light); font-weight: 400; }
  .breadcrumb .current { color: var(--orange); font-weight: 600; }

  .page-title {
    padding: 0 60px 24px;
    font-family: 'Nunito', sans-serif;
    font-size: 38px;
    font-weight: 900;
    color: var(--purple);
  }
  .page-intro {
    padding: 0 60px 28px;
    max-width: 900px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
  }
  .schedule-section { padding: 0 60px 48px; }
  .schedule-block-title {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 14px;
    margin-top: 8px;
  }
  .schedule-block-title:first-child { margin-top: 0; }
  .schedule-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 36px;
  }
  .schedule-table {
    width: 100%;
    min-width: 480px;
    border-collapse: collapse;
    background: #fff;
  }
  .schedule-table th,
  .schedule-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    vertical-align: top;
  }
  .schedule-table thead th {
    background: var(--icon-bg-purple);
    color: var(--text);
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
  }
  .schedule-table tbody tr:last-child td { border-bottom: none; }
  .schedule-table .col-time {
    color: var(--orange);
    font-weight: 800;
    white-space: nowrap;
    width: 1%;
    font-family: 'Nunito', sans-serif;
  }
  .schedule-table .muted { color: var(--text-light); font-size: 13px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent;
  z-index: 201;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--purple-bg);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 40px 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
}
.mobile-menu a {
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}
.mobile-menu .mob-btn {
  margin-top: 8px;
  background: #fff;
  color: var(--purple-bg);
  padding: 13px 32px;
  border-radius: 30px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  border: none;
  cursor: pointer;
}
.mobile-menu .mob-phone {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

@media (max-width: 768px) {

  .topbar { display: none; }

  header {
    height: 60px;
    padding: 0 16px;
  }
  .logo img { height: 38px; }
  nav { display: none; }
  .header-right { display: none; }
  .hamburger { display: flex; }

  .hero {
    flex-direction: column;
    padding: 0;
    min-height: unset;
  }
  .hero-left {
    padding: 28px 20px 20px;
    order: 1;
  }
  .hero-left h1 { font-size: 36px; }
  .hero-subtitle { font-size: 16px; margin-bottom: 18px; }
  .hero-shape, .shape-triangle { display: none; }
    .hero-img {
        width: 100%;
        height: 220px;
        max-height: 220px;
        overflow: hidden;
        order: 2;
        display: flex;
        align-items: center; /* ← */
        justify-content: center;
        background: var(--bg-cream);
    }

        .hero-img img {
            width: auto;
            height: 220px;
            max-width: 100%;
            object-fit: contain;
            object-position: top center;
        }
  .hero-form {
    width: 100%;
    order: 3;
    padding: 28px 20px;
    border-radius: 0;
  }

  .info-row { padding: 20px 16px; }
  .info-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .info-item { padding: 10px 12px; gap: 10px; }
  .info-icon { width: 36px; height: 36px; }
  .info-item-text { font-size: 12px; }

  .cta-banner {
    flex-direction: column;
    padding: 28px 20px;
    gap: 20px;
  }
  .cta-banner-img {
    width: 160px;
    align-self: flex-end;
    margin-top: -40px;
  }
  .cta-banner-text h2 { font-size: 22px; }
  .cta-banner-text p  { font-size: 14px; }
  .cta-form { flex-direction: column; gap: 10px; }
  .cta-form input { min-width: 0; width: 100%; }
  .cta-shape-1, .cta-shape-2, .cta-shape-3, .cta-triangle { display: none; }
  div[style*="padding: 48px 60px"] {
    padding: 24px 16px !important;
  }

  section { padding: 36px 16px; }
  .section-title { font-size: 24px; }

  .services-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .service-card { padding: 12px; gap: 10px; }
  .service-icon { width: 36px; height: 36px; font-size: 16px; }
  .service-card span { font-size: 12px; }

  .video-grid { grid-template-columns: 1fr; gap: 14px; }

  .advantages-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .adv-card { padding: 14px; }
  .adv-card span { font-size: 13px; }

  .team-slider {
    overflow-x: auto;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .team-slider::-webkit-scrollbar { display: none; }
  .team-card { flex: 0 0 200px; }
  .slider-arrow { display: none; }

  .about-content { grid-template-columns: 1fr; gap: 24px; }

  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }

  .map-placeholder { height: 220px; }

  footer {
    padding: 32px 16px 20px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-top > div:first-child {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .breadcrumb { padding: 10px 16px; }
  .page-title { padding: 0 16px 18px; font-size: 28px; }
  .page-intro { padding: 0 16px 20px; font-size: 14px; }

  .schedule-section { padding: 0 16px 36px; }
  .schedule-table th,
  .schedule-table td { padding: 10px 12px; font-size: 13px; }
}

@media (max-width: 480px) {

  .hero-left h1 { font-size: 30px; }
  .hero-form h3 { font-size: 18px; }

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

  .services-grid { grid-template-columns: 1fr; }
  .service-card span { font-size: 13px; }

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

  .footer-top { grid-template-columns: 1fr; }
  .footer-top > div:first-child { grid-column: 1; }

  .section-title { font-size: 22px; }
  .cta-banner-text h2 { font-size: 20px; }
}

@media (max-width: 768px) {
  .cta-wrap-outer { padding: 20px 16px !important; }
}
