/* ===========================
   HORMIGONES G&P — style.css
   =========================== */

/* Variables */
:root {
  --red:      #DC2626;
  --red-dark: #B91C1C;
  --yellow:   #F59E0B;
  --yellow-dk:#D97706;
  --dark:     #1f2937;
  --dark-2:   #374151;
  --gray:     #6B7280;
  --light:    #F3F4F6;
  --light-2:  #E5E7EB;
  --white:    #ffffff;
  --shadow:   0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:0 8px 40px rgba(0,0,0,0.16);
  --radius:   8px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; color: var(--dark); background: var(--white); overflow-x: hidden; }
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Typography */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.2rem; font-weight: 700; }
p  { line-height: 1.7; color: var(--gray); }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Section base */
.section { padding: 80px 0; }
.section--dark { background: var(--dark); color: var(--white); }
.section--dark p { color: var(--light-2); }
.section--light { background: var(--light); }
.section--red  { background: var(--red); color: var(--white); }

.section__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(220,38,38,0.08);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section--dark .section__tag { color: var(--yellow); background: rgba(245,158,11,0.15); }
.section__title { margin-bottom: 16px; }
.section__sub   { font-size: 1.05rem; max-width: 560px; }

/* Divider */
.divider { width: 48px; height: 4px; background: var(--red); border-radius: 2px; margin: 16px 0 28px; }
.divider--yellow { background: var(--yellow); }

/* ======= BUTTONS ======= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.02em;
  cursor: pointer; border: none; transition: all var(--transition);
  white-space: nowrap;
}
.btn--red    { background: var(--red); color: var(--white); }
.btn--red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(220,38,38,0.35); }
.btn--yellow { background: var(--yellow); color: var(--dark); }
.btn--yellow:hover { background: var(--yellow-dk); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,158,11,0.40); }
.btn--outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn--outline:hover { background: var(--white); color: var(--dark); }
.btn--wsp    { background: #25D366; color: var(--white); }
.btn--wsp:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.40); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ======= HEADER ======= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(31,41,55,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.30); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1200px; margin: 0 auto;
}
.header__logo img { height: 46px; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  color: rgba(255,255,255,0.80); font-size: 0.88rem; font-weight: 600;
  padding: 7px 14px; border-radius: 6px; transition: all var(--transition);
  letter-spacing: 0.03em; text-transform: uppercase;
}
.nav a:hover, .nav a.active { color: var(--white); background: rgba(255,255,255,0.08); }
.nav__cta {
  background: var(--red) !important; color: var(--white) !important;
  padding: 9px 20px !important; border-radius: var(--radius) !important;
  display: flex; align-items: center; gap: 6px;
  box-shadow: 0 0 0 2px rgba(220,38,38,0.28), 0 0 14px rgba(220,38,38,0.18);
}
.nav__cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); box-shadow: 0 0 0 2px rgba(220,38,38,0.40), 0 4px 18px rgba(220,38,38,0.38); }
.nav__cta svg { width: 16px; height: 16px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }

/* ======= HERO ======= */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--dark);
}
.hero__video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero__video-wrap video, .hero__video-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(31,41,55,0.85) 0%, rgba(31,41,55,0.60) 60%, rgba(220,38,38,0.20) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 100px 24px 60px;
  width: 100%;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,0.20); border: 1px solid rgba(245,158,11,0.40);
  color: var(--yellow); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 6px 16px; border-radius: 20px; margin-bottom: 24px;
}
.hero__badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); animation: pulse 2s infinite; }
.hero__title { color: var(--white); margin-bottom: 20px; max-width: 720px; }
.hero__title em { color: var(--yellow); font-style: normal; }
.hero__typing { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 560px; min-height: 2.4em; }
.hero__typing .cursor { display: inline-block; width: 2px; height: 1.1em; background: var(--yellow); margin-left: 2px; vertical-align: middle; animation: blink 0.8s infinite; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.hero__scroll-dot { width: 28px; height: 44px; border: 2px solid rgba(255,255,255,0.3); border-radius: 14px; display: flex; align-items: flex-start; justify-content: center; padding-top: 6px; }
.hero__scroll-dot::after { content:''; width: 4px; height: 8px; background: var(--yellow); border-radius: 2px; animation: scrollDown 1.8s infinite; }

/* ======= WHY SECTION ======= */
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why__checklist { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.why__check { display: flex; align-items: center; gap: 14px; font-size: 0.95rem; color: var(--dark); font-weight: 500; }
.why__check-icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--yellow); display: flex; align-items: center; justify-content: center; }
.why__check-icon svg { width: 14px; height: 14px; color: var(--dark); stroke: var(--dark); }
.why__img-wrap { position: relative; overflow: hidden; border-radius: 12px; }
.why__img-wrap img { border-radius: 12px; width: 100%; object-fit: cover; aspect-ratio: 4/3; }

/* ======= FEATURED VIDEO ======= */
.video-feature { background: var(--dark); padding: 80px 0; }
.video-feature__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.video-feature__player {
  position: relative; border-radius: 14px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  aspect-ratio: 16/9; background: #000; cursor: pointer;
}
.video-feature__player video { width: 100%; height: 100%; object-fit: cover; }
.video-feature__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.30);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.video-feature__player:hover .video-feature__overlay { background: rgba(0,0,0,0.10); }
.video-feature__play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--red); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 12px rgba(220,38,38,0.25);
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-feature__player:hover .video-feature__play-btn { transform: scale(1.10); box-shadow: 0 0 0 18px rgba(220,38,38,0.20); }
.video-feature__play-btn svg { width: 30px; height: 30px; color: var(--white); margin-left: 4px; }
.video-feature__text .section__tag { color: var(--yellow); background: rgba(245,158,11,0.15); }
.video-feature__text h2 { color: var(--white); }
.video-feature__text p  { color: rgba(255,255,255,0.70); margin-bottom: 12px; }

/* ======= STATS ======= */
.stats { background: var(--red); padding: 48px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.stat { text-align: center; padding: 16px; border-right: 1px solid rgba(255,255,255,0.20); }
.stat:last-child { border-right: none; }
.stat__number { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: var(--white); line-height: 1; }
.stat__number span { color: var(--yellow); }
.stat__label { font-size: 0.85rem; color: rgba(255,255,255,0.80); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }

/* ======= SERVICIOS ======= */
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.services__grid .service-card:nth-child(5):last-child { grid-column: 2 / 4; }
.service-card {
  background: var(--white); border-radius: 12px; padding: 32px 24px;
  border: 1px solid var(--light-2); transition: all var(--transition);
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--red); }
.service-card__icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(220,38,38,0.08); display: flex; align-items: center; justify-content: center;
}
.service-card__icon svg { width: 28px; height: 28px; color: var(--red); stroke: var(--red); }
.service-card h3 { font-size: 1.05rem; color: var(--dark); }
.service-card p { font-size: 0.9rem; }

/* ======= NOSOTROS ======= */
.about { overflow: hidden; }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about__img-wrap { position: relative; }
.about__img-wrap img { border-radius: 12px; width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.about__badge-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--red); color: var(--white);
  padding: 20px 24px; border-radius: 12px; text-align: center;
  box-shadow: var(--shadow-lg);
}
.about__badge-float .num { font-size: 2.4rem; font-weight: 800; line-height: 1; }
.about__badge-float .lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.90; }
.about__list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.about__item { display: flex; align-items: flex-start; gap: 14px; }
.about__item-icon { flex-shrink: 0; width: 36px; height: 36px; border-radius: 8px; background: rgba(220,38,38,0.08); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.about__item-icon svg { width: 18px; height: 18px; color: var(--red); stroke: var(--red); }
.about__item strong { display: block; font-size: 0.95rem; color: var(--dark); margin-bottom: 2px; }
.about__item p { font-size: 0.88rem; margin: 0; }

/* ======= EQUIPO ======= */
.team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.team-card { background: var(--white); border-radius: 12px; overflow: hidden; border: 1px solid var(--light-2); transition: all var(--transition); box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-card__img { aspect-ratio: 1; overflow: hidden; background: var(--light); }
.team-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .team-card__img img { transform: scale(1.05); }
.team-card__body { padding: 20px; }
.team-card__body h3 { font-size: 1rem; color: var(--dark); }
.team-card__body p  { font-size: 0.85rem; color: var(--red); font-weight: 600; margin-top: 4px; }

/* ======= GALERÍA ======= */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
  margin-top: 40px;
}
.gallery-item {
  border-radius: 10px; overflow: hidden; position: relative;
  background: var(--dark); cursor: pointer;
}
.gallery-item--wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/9; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item video { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/9; }
.gallery-item__play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.30); transition: background var(--transition);
}
.gallery-item:hover .gallery-item__play { background: rgba(0,0,0,0.15); }
.gallery-item__play svg { width: 52px; height: 52px; color: var(--white); filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }

/* ======= COBERTURA ======= */
.coverage { overflow: hidden; }
.coverage__grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: start; }
.coverage__map { border-radius: 12px; overflow: hidden; height: 420px; box-shadow: var(--shadow-lg); }
.coverage__map iframe { width: 100%; height: 100%; border: none; }
.coverage__zones { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.coverage__zone {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 8px; background: var(--white);
  border: 1px solid var(--light-2); font-size: 0.9rem; font-weight: 600; color: var(--dark);
  transition: all var(--transition);
}
.coverage__zone:hover { border-color: var(--red); background: rgba(220,38,38,0.04); }
.coverage__zone svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; }
.coverage__note { margin-top: 16px; font-size: 0.85rem; color: var(--gray); display: flex; align-items: center; gap: 8px; }
.coverage__note svg { width: 16px; height: 16px; color: var(--yellow); flex-shrink: 0; }

/* ======= HORARIO ======= */
.schedule { border-top: 3px solid var(--red); background: var(--dark); padding: 48px 0; }
.schedule__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.schedule-item { text-align: center; }
.schedule-item svg { width: 36px; height: 36px; color: var(--yellow); margin: 0 auto 12px; stroke: var(--yellow); }
.schedule-item h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.55); margin-bottom: 6px; }
.schedule-item p  { font-size: 1.05rem; font-weight: 700; color: var(--white); }

/* ======= CTA BAND ======= */
.cta-band { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); padding: 72px 0; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p  { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-band__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ======= FOOTER ======= */
.footer { background: #111827; padding: 64px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__logo { height: 50px; margin-bottom: 16px; }
.footer__brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; transition: all var(--transition);
  color: rgba(255,255,255,0.70);
}
.footer__social a:hover { background: var(--red); color: var(--white); }
.footer__social svg { width: 18px; height: 18px; }
.footer__col h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--yellow); margin-bottom: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col li { font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.footer__col li a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer__col li a:hover { color: var(--white); }
.footer__col li svg { width: 14px; height: 14px; display: inline; vertical-align: middle; margin-right: 6px; color: var(--red); }
.footer__bottom { padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer__bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer__credit { border-top: 1px solid rgba(255,255,255,0.07); margin-top: 16px; padding: 12px 0 4px; text-align: center; }
.footer__credit p { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer__credit a { color: rgba(255,255,255,0.40); text-decoration: none; transition: color var(--transition); }
.footer__credit a:hover { color: rgba(255,255,255,0.70); }

/* ======= FLOATING WSP ======= */
.wsp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.50);
  transition: all var(--transition);
  animation: wspPop 0.4s cubic-bezier(0.34,1.56,0.64,1) 1s both;
}
.wsp-float:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,0.65); }
.wsp-float svg { width: 30px; height: 30px; }
.wsp-float__tooltip {
  position: absolute; right: 68px; background: var(--dark); color: var(--white);
  font-size: 0.8rem; font-weight: 600; white-space: nowrap;
  padding: 6px 14px; border-radius: 6px; pointer-events: none;
  opacity: 0; transform: translateX(8px); transition: all var(--transition);
}
.wsp-float:hover .wsp-float__tooltip { opacity: 1; transform: translateX(0); }

/* ======= ANIMATIONS (IWIS style — keyframe) ======= */
.fade-in, .slide-up, .slide-left, .slide-right, .zoom-in { opacity: 0; }

.fade-in.visible     { animation: fadeIn       0.85s cubic-bezier(0.25,0.46,0.45,0.94) both; }
.slide-up.visible    { animation: slideInUp    0.85s cubic-bezier(0.25,0.46,0.45,0.94) both; }
.slide-left.visible  { animation: slideInLeft  0.85s cubic-bezier(0.25,0.46,0.45,0.94) both; }
.slide-right.visible { animation: slideInRight 0.85s cubic-bezier(0.25,0.46,0.45,0.94) both; }
.zoom-in.visible     { animation: zoomIn       0.85s cubic-bezier(0.25,0.46,0.45,0.94) both; }

.delay-1 { animation-delay: 0.15s !important; }
.delay-2 { animation-delay: 0.30s !important; }
.delay-3 { animation-delay: 0.45s !important; }
.delay-4 { animation-delay: 0.60s !important; }
.delay-5 { animation-delay: 0.75s !important; }

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.82); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.3); }
}
@keyframes blink {
  0%,50% { opacity: 1; } 51%,100% { opacity: 0; }
}
@keyframes scrollDown {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
@keyframes wspPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ======= COUNTER ======= */
.counter-up { display: inline-block; }

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
  .services__grid    { grid-template-columns: repeat(2, 1fr); }
  .services__grid .service-card:nth-child(5):last-child { grid-column: auto; }
  .stats__grid       { grid-template-columns: repeat(3, 1fr); }
  .coverage__grid    { grid-template-columns: 1fr; }
  .coverage__map     { height: 320px; }
  .footer__grid      { grid-template-columns: 1fr 1fr; gap: 32px; }
  .schedule__grid    { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 900px) {
  .about__grid  { grid-template-columns: 1fr; gap: 40px; }
  .about__img-wrap { order: -1; }
  .about__badge-float { right: 16px; bottom: 16px; }
  .why__grid    { grid-template-columns: 1fr; gap: 36px; }
  .why__img-wrap { order: 1; }
  .video-feature__inner { grid-template-columns: 1fr; gap: 36px; }
  .video-feature__player { order: -1; }
  .team__grid   { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid{ grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 1; }
  .schedule__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .nav { display: none; flex-direction: column; position: fixed; top: 74px; left: 0; right: 0; background: #1f2937; padding: 20px 24px 28px; gap: 4px; box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
  .nav.open { display: flex; }
  .nav a { padding: 12px 16px; border-radius: 8px; font-size: 0.95rem; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .services__grid { grid-template-columns: 1fr; }
  .services__grid .service-card:nth-child(5):last-child { grid-column: auto; }
  .stats__grid    { grid-template-columns: repeat(3, 1fr); }
  .stat__number   { font-size: 1.5rem; }
  .stat__label    { font-size: 0.68rem; }
  .team__grid     { grid-template-columns: 1fr; }
  .gallery__grid  { grid-template-columns: 1fr; }
  .hero__actions  { flex-direction: column; width: 100%; }
  .hero__actions .btn { justify-content: center; }
  .footer__grid   { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .cta-band__actions { flex-direction: column; align-items: center; }
  .schedule__grid { grid-template-columns: 1fr; }
  .about__badge-float { right: 12px; bottom: 12px; padding: 14px 18px; }
  .about__badge-float .num { font-size: 1.8rem; }
  body { overflow-x: hidden; }
}
