/* ============================================================
   PELO Rectificadora de Culatas — Hoja de estilos
   Marca: negro #000 · rojo #FF0000 · gris #404040 · blanco #FFF
   ============================================================ */

:root {
  --red: #ff0000;
  --red-dark: #bf0000;
  --red-deep: #400000;
  --black: #000000;
  --gray-dark: #404040;
  --gray: #6b6b6b;
  --gray-light: #f4f4f2;
  --white: #ffffff;

  --font-title: "Barlow Condensed", "Archivo", sans-serif;
  --font-body: "Archivo", system-ui, sans-serif;

  --header-h: 76px;
  --radius: 14px;
  --shadow: 0 18px 40px rgba(0, 0, 0, .14);
  --transition: .25s cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: #1a1a1a;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
figure { margin: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: .2px;
  margin: 0 0 .4em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 900; }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; }

.container { width: min(1180px, 92%); margin-inline: auto; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--red);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  z-index: 200;
}
.skip-link:focus { left: 8px; }

.accent { color: var(--red); }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .3px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }

.btn-primary { background: var(--red); color: #fff; box-shadow: 0 10px 24px rgba(255, 0, 0, .35); }
.btn-primary:hover { background: var(--red-dark); }

.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .5); }
.btn-ghost:hover { border-color: var(--red); color: var(--red); }

.btn-wa { background: #1fa855; color: #fff; }
.btn-wa:hover { background: #178a45; }

.btn-lg { padding: 16px 34px; font-size: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: #050505e6;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img { width: 190px; }

.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav ul li a {
  display: block;
  padding: 10px 13px;
  font-size: 14.5px;
  font-weight: 600;
  color: #eee;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.main-nav ul li a:hover { color: var(--red); }
.main-nav ul li a[aria-current] { color: var(--red); }

.btn-nav-desktop { padding: 11px 20px; font-size: 14px; }
.btn-nav-mobile { display: none; margin-top: 18px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 3px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(120deg, rgba(255, 0, 0, .12), transparent 45%),
    radial-gradient(1200px 600px at 110% -10%, rgba(255, 0, 0, .5), transparent 60%),
    #060606;
  color: #fff;
  padding: calc(var(--header-h) + 64px) 0 72px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, .022) 0 2px, transparent 2px 26px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--red);
  margin: 0 0 14px;
  padding-bottom: 8px;
  position: relative;
}
.eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
}
.eyebrow-light { color: #fff; }
.eyebrow-light::after { background: linear-gradient(90deg, var(--red), transparent); }

.hero-sub {
  font-size: 1.08rem;
  color: #cfcfcf;
  max-width: 560px;
  margin: 18px 0 28px;
}
.hero-sub strong { color: #fff; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.hero-tags li {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  color: #ddd;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  padding: 6px 14px;
}

.hero-art { position: relative; display: flex; justify-content: center; min-height: 420px; }
.hero-halo {
  position: absolute;
  width: 84%;
  height: 84%;
  top: 8%;
  background: radial-gradient(circle, rgba(255, 0, 0, .32), transparent 68%);
  filter: blur(6px);
}
.hero-mascot {
  position: relative;
  z-index: 2;
  height: 45em;
  width: auto;
  filter: drop-shadow(0 30px 40px rgba(255, 0, 0, .35));
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.badge-float {
  position: absolute;
  z-index: 3;
  right: 2%;
  top: 4%;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  width: 128px;
  height: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 18px 40px rgba(255, 0, 0, .45);
  animation: float 5s ease-in-out infinite 1s;
}
.badge-num { font-family: var(--font-title); font-weight: 900; font-size: 2.6rem; line-height: .9; }
.badge-txt { font-size: 11px; text-transform: uppercase; letter-spacing: 1.4px; font-weight: 700; margin-top: 4px; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--red);
  color: #fff;
  overflow: hidden;
  padding: 14px 0;
  transform: scale(1);
  margin: -16px 0 0;
}
.marquee-track {
  display: flex;
  gap: 26px;
  white-space: nowrap;
  font-family: var(--font-title);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1rem;
  animation: slide 26s linear infinite;
  width: max-content;
}
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Stats ---------- */
.stats { background: var(--black); padding: 30px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.stat {
  text-align: center;
  padding: 8px;
  position: relative;
}
.stat::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 46px;
  width: 1px;
  background: linear-gradient(transparent, rgba(255, 255, 255, .3), transparent);
}
.stat:last-child::after { display: none; }
.stat-num {
  display: block;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 2.3rem;
  color: var(--red);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 13px;
  color: #bbb;
  margin-top: 6px;
}

/* ---------- Secciones base ---------- */
.section { padding: 92px 0; }
.section-dark { background: #0a0a0a; color: #efefef; }
.section-light { background: var(--gray-light); }
.section-white { background: #fff; }

.section-head { max-width: 780px; margin-bottom: 52px; }
.section-head h2 { margin-bottom: .25em; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-dark .lead, .lead { font-size: 1.06rem; color: #777; margin: 0; }
.section-dark .lead { color: #b8b8b8; }

/* ---------- Cards (problemas) ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: var(--shadow);
}
.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 0, 0, .14);
  color: var(--red);
  margin-bottom: 20px;
}
.card-icon svg { width: 30px; height: 30px; }
.card h3 { font-size: 1.3rem; color: #fff; margin-bottom: 12px; }
.card p { color: #b5b5b5; margin: 0; }

.card-cta { background: linear-gradient(150deg, #2a0000, #000 55%); }
.card-accent h3 { color: var(--red); }
.card-accent p { margin-bottom: 22px; }

/* ---------- Servicios ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service {
  position: relative;
  background: #fff;
  border: 1px solid #e6e4e0;
  border-radius: var(--radius);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--red); }
.service-head {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: #fff;
  margin-bottom: 22px;
}
.service-head svg { width: 32px; height: 32px; }
.service h3 { font-size: 1.35rem; margin-bottom: 12px; }
.service p { color: #666; flex: 1; }
.service-price {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px dashed #ccc;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.price { font-family: var(--font-title); font-weight: 900; font-size: 1.7rem; color: var(--red); }
.price-note { font-size: 12.5px; text-transform: uppercase; letter-spacing: 1px; color: #888; font-weight: 700; }

.service-featured { border: 2px solid var(--red); box-shadow: 0 14px 30px rgba(255, 0, 0, .12); }

.ribbon {
  position: absolute;
  top: 18px;
  right: -38px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-title);
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: .78rem;
  padding: 7px 44px;
  transform: rotate(40deg);
  box-shadow: 0 6px 14px rgba(255, 0, 0, .4);
}

/* ---------- Banner ---------- */
.banner { position: relative; overflow: hidden; min-height: 460px; display: grid; place-items: center; }
.banner-bg { position: absolute; inset: 0; }
.banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0,0,0,.88) 22%, rgba(64,0,0,.72) 55%, rgba(255,0,0,.28));
}
.banner-content { position: relative; z-index: 2; color: #fff; }
.banner-content h2 { max-width: 760px; margin-bottom: 28px; font-size: clamp(2rem, 5vw, 3.4rem); }

/* ---------- Nosotros ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.about-media { position: relative; padding: 0 0 70px 50px; }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.about-media:hover .about-img img { transform: scale(1.04); }
.about-img.wrap { aspect-ratio: 4/4.6; }
.about-img.small {
  position: absolute;
  right: -8px;
  bottom: 0;
  width: 46%;
  border: 6px solid #fff;
  box-shadow: 0 22px 44px rgba(0, 0, 0, .28);
}
.about-chip {
  position: absolute;
  left: 0;
  top: 12px;
  background: var(--red);
  color: #fff;
  border-radius: 16px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 34px rgba(255, 0, 0, .4);
}
.chip-num { font-family: var(--font-title); font-weight: 900; font-size: 2.4rem; line-height: 1; }
.chip-txt { font-size: 13px; text-transform: uppercase; letter-spacing: 1.2px; font-weight: 700; line-height: 1.3; }

.about-copy p { color: #555; }
.about-copy strong { color: var(--red); }

.values { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.values li {
  background: var(--black);
  color: #fff;
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
}

/* ---------- Por qué PELO ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.checks li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.checks li svg {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  padding: 5px;
  margin-top: 3px;
}
.checks li div { color: #c6c6c6; }
.checks li strong { color: #fff; }

.why-media { position: relative; }
.why-img {
  background: linear-gradient(180deg, #1d1d1d, #000);
  border-radius: var(--radius);
  padding: 10px;
  display: flex;
  justify-content: center;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .5);
}
.why-img img { height: 500px; width: auto; }
.why-quote {
  position: relative;
  margin-top: 26px;
  background: linear-gradient(135deg, var(--red-deep), var(--red-dark));
  color: #fff;
  border-radius: var(--radius);
  padding: 26px 28px;
}

.why-quote blockquote { margin: 0; font-family: var(--font-title); font-size: 1.4rem; line-height: 1.2; font-weight: 700; }
.why-quote-by { display: block; margin-top: 14px; font-size: 13px; opacity: .85; }

/* ---------- Precios ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 34px;
}
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid #e6e4e0;
  border-radius: var(--radius);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--red); }
.price-card h3 { font-size: 1.2rem; margin-bottom: 6px; min-height: 2.4em; }
.price-big { font-family: var(--font-title); font-weight: 900; font-size: 2.5rem; color: var(--red); margin: 6px 0 16px; line-height: 1; }
.price-card ul li {
  padding: 7px 0 7px 24px;
  position: relative;
  color: #555;
  font-size: 14.5px;
  border-top: 1px dashed #ddd;
}
.price-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 800;
}
.price-highlight { border: 2px solid var(--red); box-shadow: 0 16px 34px rgba(255, 0, 0, .14); }
.pricing-note {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  color: #666;
  font-size: 14.5px;
  background: #fff;
  border: 1px dashed var(--red);
  border-radius: 12px;
  padding: 16px 22px;
}

/* ---------- Galería ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 18px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .1);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 18px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .85));
  color: #fff;
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .95rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}
.gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }

/* ---------- CTA ---------- */
.cta {
  background:
    repeating-linear-gradient(-45deg, rgba(255, 0, 0, .06) 0 2px, transparent 2px 30px),
    var(--red-deep);
  color: #fff;
  padding: 78px 0;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}
.cta-actions { display: flex; flex-direction: column; gap: 16px; }
.cta-muted { color: #e2c4c4; font-size: 14px; margin: 0; max-width: 480px; }

/* ---------- Contacto ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: start;
}
.contact-list { margin: 26px 0 30px; display: grid; gap: 22px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  flex: none;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--black);
  color: var(--red);
  display: grid;
  place-items: center;
}
.contact-icon svg { width: 26px; height: 26px; }
.contact-list strong { display: block; font-family: var(--font-title); text-transform: uppercase; letter-spacing: .6px; font-size: 1.05rem; margin-bottom: 2px; }
.contact-list a { color: var(--red-dark); font-weight: 600; }
.contact-list a:hover { text-decoration: underline; }
.contact-list small { color: #888; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid #fff;
  aspect-ratio: 4/3;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

.contact-visit {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: center;
  background: #fff;
  border: 1px solid #e6e4e0;
  border-radius: var(--radius);
  padding: 14px;
}
.contact-visit img { border-radius: 10px; }
.visit-caption { margin: 0; font-size: 14px; color: #555; }

/* ---------- Footer ---------- */
.site-footer {
  background: #050505;
  color: #9a9a9a;
  padding-top: 70px;
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .9fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand img { width: 170px; margin-bottom: 18px; }
.footer-brand p { max-width: 300px; }

.social { display: flex; gap: 10px; margin-top: 18px; }
.social a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  display: grid;
  place-items: center;
  color: #ccc;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.social a:hover { background: var(--red); color: #fff; transform: translateY(-3px); }
.social svg { width: 20px; height: 20px; }

.footer-col h3 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #9a9a9a; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
}
.footer-bottom .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom p { margin: 0; font-size: 13px; }
.foot-slogan { color: #666; }

/* ---------- WhatsApp flotante ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(37, 211, 102, .45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float svg { width: 34px; height: 34px; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 18px 40px rgba(37, 211, 102, .6); }
.wa-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .6);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(.9); opacity: 1; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); row-gap: 28px; }
  .stats-grid .stat:nth-child(3)::after { display: none; }
  .cards-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid, .about-grid, .why-grid, .contact-grid, .cta-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; min-height: 360px; }
  .hero-mascot { height: 360px; }
  .why-media { max-width: 460px; margin-inline: auto; }
}

@media (max-width: 780px) {
  :root { --header-h: 66px; }
  .section { padding: 68px 0; }

  .btn-nav-desktop { display: none; }

  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #060606f2;
    backdrop-filter: blur(12px);
    padding: 10px 22px 30px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .main-nav.open { opacity: 1; transform: none; visibility: visible; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav ul li a { padding: 15px 8px; border-bottom: 1px solid rgba(255, 255, 255, .07); font-size: 1.05rem; }
  .btn-nav-mobile { display: inline-flex; width: 100%; }

  .hero { padding-top: calc(var(--header-h) + 36px); }
  .hero-actions .btn { width: 100%; }
  .badge-float { width: 104px; height: 104px; }
  .badge-num { font-size: 2rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat::after { display: none; }

  .cards-grid, .services-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item { height: 240px; }
  .pricing-grid { grid-template-columns: 1fr; }

  .about-media { padding: 0 0 56px 0; }
  .about-img.small { right: 0; }
  .about-chip { position: static; width: max-content; margin-bottom: -48px; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .why-img img { height: 400px; }
  .marquee { font-size: .85rem; }
}

@media (max-width: 460px) {
  .brand img { width: 150px; }
  .cta-inner { gap: 20px; }
}