/*
  Алматинское хореографическое училище им. А. Селезнева
  Landing page — Light & Airy Ballet Aesthetic
  Palette: Ivory #F4F1EC | Pearl #D9D6D2 | Powder #B9A2A9 | Graphite #2F2F2F | #C7C4BF
  Fonts: Inter + Playfair Display
*/

:root {
  --ivory: #F4F1EC;
  --pearl: #D9D6D2;
  --powder: #B9A2A9;
  --powder-light: #D4C4CA;
  --powder-dark: #9E8B92;
  --graphite: #2F2F2F;
  --graphite-light: #C7C4BF;
  --white: #FFFFFF;
  --text: #4A4A4A;
  --text-light: #8A8A8A;
  --font-body: "Inter", sans-serif;
  --font-heading: "Cormorant Garamond", serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(185,162,169,0.10);
  --shadow-hover: 0 12px 40px rgba(185,162,169,0.18);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}



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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--graphite);
  font-weight: 500;
  line-height: 1.25;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--powder-light); color: var(--graphite); }

/* ========== PRELOADER ========== */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease;
}
.preloader.done { opacity: 0; pointer-events: none; }
.preloader .dot {
  width: 10px; height: 10px; margin: 0 5px;
  border-radius: 50%; background: var(--powder);
  animation: pulse 1.2s ease-in-out infinite;
}
.preloader .dot:nth-child(2) { animation-delay: 0.2s; }
.preloader .dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes pulse {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* ========== BUTTONS ========== */
.btn-primary-custom {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 34px;
  background: var(--powder); color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 2px solid var(--powder);
  border-radius: 50px; cursor: pointer;
  transition: var(--transition);
}
.btn-primary-custom:hover {
  background: var(--powder-dark); border-color: var(--powder-dark); color: var(--white);
}
.btn-secondary-custom {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 34px;
  background: transparent; color: var(--graphite);
  font-family: var(--font-body);
  font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 2px solid var(--pearl);
  border-radius: 50px; cursor: pointer;
  transition: var(--transition);
}
.btn-secondary-custom:hover {
  border-color: var(--powder); color: var(--powder);
}
.btn-hero {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 40px;
  background: var(--powder); color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: none; border-radius: 50px; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(185,162,169,0.3);
}
.btn-hero:hover {
  background: var(--powder-dark); color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(185,162,169,0.4);
}
.btn-hero-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 40px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 50px; cursor: pointer;
  transition: var(--transition);
}
.btn-hero-outline:hover {
  background: var(--white); color: var(--graphite);
  border-color: var(--white);
}

/* ========== SITE NAV ========== */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.site-nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  padding: 8px 0;
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo img {
  height: 50px; width: auto;
  transition: filter var(--transition);
}
.site-nav.scrolled .nav-logo img {
  filter: brightness(0) saturate(100%) sepia(10%) hue-rotate(300deg);
}

/* Nav links row */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu > li {
  position: relative;
}
.nav-menu > li > a {
  display: block;
  padding: 8px 13px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  transition: color var(--transition);
}
.site-nav.scrolled .nav-menu > li > a {
  color: var(--text);
}
.nav-menu > li > a:hover,
.site-nav.scrolled .nav-menu > li > a:hover {
  color: var(--powder);
}

/* Dropdown caret */
.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  margin-left: 5px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
}

/* Dropdown panel */
.nav-menu li .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0,0,0,0.10);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 100;
  list-style: none;
}
.nav-menu li:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-menu .dropdown a {
  display: block;
  padding: 8px 20px;
  font-size: 0.88rem;
  color: var(--text);
}
.nav-menu .dropdown a:hover {
  color: var(--powder);
  background: var(--ivory);
}

/* Nav language link */
.nav-lang {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.nav-lang:hover {
  color: var(--white);
}
.site-nav.scrolled .nav-lang {
  color: var(--text-light);
}
.site-nav.scrolled .nav-lang:hover {
  color: var(--powder);
}

/* Nav CTA button */
.nav-cta {
  padding: 9px 24px;
  background: var(--powder);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--powder-dark);
  color: var(--white);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  position: absolute;
  left: 0;
  transition: var(--transition);
}
.site-nav.scrolled .nav-toggle span { background: var(--graphite); }
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }

/* ========== HERO SLIDER ========== */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slider .swiper { height: 100%; }
.hero-slide {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-slide video,
.hero-slide .slide-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-slide .slide-bg {
  background-size: cover;
  background-position: center;
}
.hero-slide .overlay-dark {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(47,47,47,0.2) 0%, rgba(47,47,47,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-content .tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 18px;
}
.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Swiper pagination */
.hero-slider .swiper-pagination {
  bottom: 40px !important;
}
.hero-slider .swiper-pagination-bullet {
  width: 32px; height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.35);
  opacity: 1;
  transition: var(--transition);
}
.hero-slider .swiper-pagination-bullet-active {
  width: 48px;
  background: var(--white);
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-scroll .mouse {
  width: 22px; height: 34px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 11px;
  position: relative;
  margin-top: 8px;
}
.hero-scroll .mouse::after {
  content: '';
  width: 3px; height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  animation: scrollMouse 1.6s ease infinite;
}
@keyframes scrollMouse {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 18px; }
}

/* ========== SECTION COMMON ========== */
.section { padding: 100px 0; overflow-x: hidden; }
.section-ivory { background: var(--ivory); }
.section-white { background: var(--white); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--powder);
  margin-bottom: 12px;
}
.section-label::before,
.section-label::after {
  content: '';
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--powder-light);
  vertical-align: middle;
  margin: 0 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ========== ABOUT ========== */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
  margin-bottom: 30px;
}
.about-img-wrap > img {
  border-radius: var(--radius);
  overflow: hidden;
}
.about-img-wrap .placeholder-img {
  width: 100%; height: 420px;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--pearl) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--graphite-light);
  font-family: var(--font-heading);
  font-size: 1rem;
}
.about-badge {
  position: absolute;
  bottom: -20px; right: 30px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 28px;
  box-shadow: var(--shadow);
  text-align: center;
}
.about-badge .number {
  font-family: var(--font-heading);
  font-size: 2.4rem; font-weight: 600;
  color: var(--powder); line-height: 1;
}
.about-badge .label {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 2px;
}
.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 20px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-feature .check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--ivory);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--powder);
  font-size: 0.85rem;
  margin-top: 2px;
}
.about-feature span {
  font-size: 0.95rem;
  color: var(--text);
}

/* ========== LEADERSHIP ========== */
.leader-card {
  text-align: center;
  padding: 24px 16px;
  transition: var(--transition);
}
.leader-card:hover {
  transform: translateY(-4px);
}
.leader-card .photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--ivory);
  box-shadow: 0 4px 16px rgba(185,162,169,0.12);
  transition: var(--transition);
}
.leader-card:hover .photo {
  border-color: var(--powder-light);
  box-shadow: 0 6px 24px rgba(185,162,169,0.2);
}
.leader-card h5 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.3;
}
.leader-card .role {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
}
.leader-main .photo {
  width: 170px;
  height: 170px;
}
.leader-main h5 {
  font-size: 1.1rem;
}

/* ========== SPECIALTIES CTA CARD ========== */
.spec-cta-card {
  background: linear-gradient(135deg, var(--powder) 0%, var(--powder-dark) 100%);
  border: none;
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: var(--transition);
}
.spec-cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(185,162,169,0.3);
}
.spec-cta-card h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.spec-cta-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
}
.spec-cta-card .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--white);
  color: var(--powder-dark);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  transition: var(--transition);
}
.spec-cta-card .btn-cta:hover {
  background: var(--ivory);
  transform: scale(1.03);
}

/* ========== NEWS ========== */
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.news-card .card-img {
  height: 210px;
  overflow: hidden;
  position: relative;
}
.news-card .card-img .placeholder-img {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--pearl) 0%, var(--ivory) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--graphite-light);
  font-size: 0.9rem;
  transition: transform 0.6s ease;
}
.news-card:hover .card-img .placeholder-img {
  transform: scale(1.05);
}
.news-card .date {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 14px;
  background: var(--white);
  color: var(--graphite);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.news-card .card-body { padding: 24px; }
.news-card h4 {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.news-card:hover h4 { color: var(--powder); }
.news-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ========== SPECIALTIES ========== */
.spec-card {
  background: var(--white);
  border: 1px solid rgba(217,214,210,0.5);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.spec-card:hover {
  border-color: var(--powder-light);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.spec-card .icon-wrap {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  background: var(--ivory);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--powder);
  transition: var(--transition);
}
.spec-card:hover .icon-wrap {
  background: var(--powder);
  color: var(--white);
}
.spec-card h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.spec-card .duration {
  font-size: 0.82rem;
  color: var(--powder);
  margin-bottom: 12px;
}
.spec-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ========== GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(47,47,47,0);
  transition: background var(--transition);
}
.gallery-item:hover::after {
  background: rgba(47,47,47,0.15);
}
.gallery-item.tall {
  grid-row: span 2;
}
.gallery-item.tall img {
  height: 100%;
}
@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .gallery-item img {
    height: 160px;
  }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.tall img { height: 160px; }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--ivory);
  padding: 70px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--pearl);
}
.footer-brand img {
  height: 40px; width: auto;
  filter: brightness(0) saturate(100%) sepia(10%) hue-rotate(300deg);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--pearl);
  border-radius: 50%;
  font-size: 1rem;
  color: var(--text-light);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--powder);
  border-color: var(--powder);
  color: var(--white);
}
.footer h6 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-light);
}
.footer-links a:hover { color: var(--powder); }
.footer-bottom {
  padding: 20px 0;
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ========== MOBILE MENU (hidden on desktop) ========== */
.mobile-menu {
  display: none;
}

/* ========== SCROLL REVEAL ========== */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1199px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-menu > li > a { padding: 8px 10px; font-size: 0.75rem; }
}

@media (max-width: 991px) {
  .nav-menu, .nav-cta { display: none !important; }
  .nav-toggle { display: block; }

  .site-nav.menu-open {
    background: var(--white);
    padding: 8px 0;
  }
  .site-nav.menu-open .nav-logo img {
    filter: brightness(0) saturate(100%) sepia(10%) hue-rotate(300deg);
  }
  .site-nav.menu-open .nav-toggle span { background: var(--graphite); }
  .site-nav.menu-open .nav-toggle span:nth-child(1) {
    top: 50%; transform: rotate(45deg);
  }
  .site-nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-nav.menu-open .nav-toggle span:nth-child(3) {
    bottom: auto; top: 50%; transform: rotate(-45deg);
  }

  .mobile-menu {
    display: block;
    position: fixed; inset: 0; z-index: 999;
    background: var(--white);
    padding: 90px 24px 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu ul { list-style: none; padding: 0; margin: 0; }
  .mobile-menu > ul > li {
    border-bottom: 1px solid var(--pearl);
    position: relative;
  }
  .mobile-menu > ul > li > a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--graphite);
  }
  .mobile-menu .sub-toggle {
    position: absolute; right: 0; top: 0;
    background: none; border: none;
    font-size: 1.4rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 12px 0;
    line-height: 1;
  }
  .mobile-menu .dropdown {
    display: none;
    padding-left: 16px;
    padding-bottom: 10px;
  }
  .mobile-menu .dropdown.open { display: block; }
  .mobile-menu .dropdown li { margin: 0; }
  .mobile-menu .dropdown a {
    display: block;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-light);
  }

  .hero-content h1 { font-size: 2.2rem; }
  .about-features { grid-template-columns: 1fr; }
  .about-img-wrap img { height: 280px !important; }
  .about-badge { right: 16px; bottom: -16px; padding: 14px 20px; }
  .about-badge .number { font-size: 1.8rem; }
  .section { padding: 70px 0; }
}

@media (max-width: 575px) {
  .section-label::before,
  .section-label::after { width: 16px; margin: 0 8px; }
}

@media (max-width: 767px) {
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons a { text-align: center; }
}
