:root {
  --font-primary: Inter, "Open Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Montserrat, Inter, "Open Sans", ui-sans-serif, system-ui, sans-serif;
  --brand-night: #0a0f1c;
  --brand-navy: #0d1b2e;
  --brand-blue: #1565ff;
  --brand-cyan: #00d4ff;
  --brand-mint: #00e6b8;
  --brand-gray: #6b7280;
  --brand-white: #ffffff;
  --bg: var(--brand-night);
  --bg-soft: var(--brand-navy);
  --blue: var(--brand-blue);
  --cyan: var(--brand-cyan);
  --green: var(--brand-mint);
  --gray: var(--brand-gray);
  --white: var(--brand-white);
  --text: #f3f8ff;
  --muted: #b8c7dc;
  --dark-text: #101827;
  --dark-muted: #5f6a7a;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.14);
  --surface-light: #f6f9fd;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(13, 27, 46, 0.12);
  --gradient-primary: linear-gradient(135deg, var(--brand-cyan), var(--brand-mint));
  --gradient-brand: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan) 52%, var(--brand-mint));
  --gradient-dark: linear-gradient(135deg, var(--brand-night), var(--brand-navy));
  --shadow-sm: 0 10px 28px rgba(10, 15, 28, 0.12);
  --shadow-md: 0 18px 48px rgba(10, 15, 28, 0.18);
  --shadow-lg: 0 26px 80px rgba(3, 10, 24, 0.28);
  --shadow-glow: 0 18px 48px rgba(0, 212, 255, 0.18);
  --shadow: var(--shadow-lg);
  --radius-sm: 6px;
  --radius: 8px;
  --radius-lg: 12px;
  --space-section: 96px;
  --space-section-mobile: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.6;
  text-rendering: geometricPrecision;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
  flex: 0 0 auto;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  background: rgba(10, 15, 28, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 30px rgba(10, 15, 28, 0.18);
  backdrop-filter: blur(18px) saturate(140%);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--text);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-header img {
  width: 168px;
  height: 58px;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  color: rgba(238, 247, 255, 0.84);
  font-weight: 700;
}

.nav-links a {
  position: relative;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover {
  color: var(--cyan);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links .nav-catalog-link {
  color: #06111e;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--gradient-primary);
  box-shadow: 0 10px 26px rgba(0, 212, 255, 0.28);
}

.nav-links .nav-catalog-link::after {
  display: none;
}

.nav-links .nav-catalog-link:hover {
  color: #06111e;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--text);
  padding: 122px 0 78px;
  background:
    linear-gradient(135deg, rgba(10, 15, 28, 0.98), rgba(13, 27, 46, 0.94)),
    var(--bg);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 15, 28, 0.98), rgba(13, 27, 46, 0.9) 48%, rgba(10, 15, 28, 0.6)),
    radial-gradient(circle at 76% 24%, rgba(0, 212, 255, 0.24), transparent 31%),
    radial-gradient(circle at 24% 76%, rgba(0, 230, 184, 0.14), transparent 34%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 850;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 850;
  font-size: 1.16rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(238, 247, 255, 0.86);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.catalog-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid rgba(0, 212, 255, 0.35);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.catalog-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 230, 184, 0.72);
  background: rgba(255, 255, 255, 0.16);
}

.catalog-pill-primary {
  color: #06111e;
  border-color: transparent;
  background: var(--gradient-primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  color: #06111e;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-outline {
  color: var(--brand-cyan);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.34);
}

.btn-outline:hover {
  color: #06111e;
  background: var(--gradient-primary);
  border-color: transparent;
}

.section {
  padding: var(--space-section) 0;
}

.promo-section {
  position: relative;
  margin-top: -54px;
  padding: 0 0 40px;
  background: linear-gradient(180deg, transparent 0, #ffffff 54px, #ffffff 100%);
  z-index: 2;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 58px;
  align-items: center;
}

.reverse {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

.section-copy p,
.contact-copy p,
.mv-card p {
  color: var(--dark-muted);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 800;
}

.text-link:hover {
  color: #004ce0;
}

.image-stack,
.wide-image {
  position: relative;
}

.image-stack img,
.wide-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-card {
  position: absolute;
  right: 22px;
  bottom: -26px;
  max-width: 260px;
  padding: 20px;
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(10, 15, 28, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.stat-card strong {
  display: block;
  color: var(--cyan);
  font-size: 2.25rem;
  line-height: 1;
}

.services {
  color: var(--text);
  background:
    linear-gradient(180deg, var(--bg), var(--bg-soft)),
    var(--bg);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.featured-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius-lg);
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(10, 15, 28, 0.96), rgba(13, 27, 46, 0.92)),
    var(--bg);
  border: 1px solid rgba(0, 212, 255, 0.32);
  box-shadow: var(--shadow-lg);
}

.featured-offer-home {
  position: relative;
  overflow: hidden;
}

.featured-offer-home::before {
  content: "PROMOCIÓN";
  position: absolute;
  top: 18px;
  right: -44px;
  width: 190px;
  padding: 8px 0;
  color: #06111e;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  transform: rotate(34deg);
}

.featured-offer-home::after {
  content: "";
  position: absolute;
  inset: auto auto -80px -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.26), transparent 68%);
  pointer-events: none;
}

.featured-offer p {
  margin: 0;
  color: var(--muted);
}

.featured-offer h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.featured-offer h2 {
  margin-bottom: 12px;
}

.offer-price {
  display: grid;
  gap: 12px;
  justify-items: start;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(0, 230, 184, 0.28);
}

.offer-price span {
  color: var(--muted);
  font-weight: 700;
}

.offer-price strong {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.mv-card,
.why-panel,
.contact-form {
  border-radius: var(--radius-lg);
}

.service-card {
  min-height: 260px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, 0.45);
  background: linear-gradient(180deg, rgba(21, 101, 255, 0.18), rgba(255, 255, 255, 0.05));
  box-shadow: 0 24px 70px rgba(0, 212, 255, 0.12);
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  color: #05111e;
  background: var(--gradient-primary);
  box-shadow: 0 12px 30px rgba(0, 212, 255, 0.2);
}

.service-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.visual-band {
  position: relative;
  min-height: 390px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--text);
}

.visual-band img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.visual-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 15, 28, 0.92), rgba(13, 27, 46, 0.5));
}

.visual-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.catalog-section {
  color: var(--text);
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 212, 255, 0.14), transparent 30%),
    var(--gradient-dark);
}

.catalog-section-featured {
  position: relative;
  padding-top: 64px;
  padding-bottom: 64px;
}

.catalog-section-featured::before {
  content: "Nuevo";
  position: absolute;
  top: 28px;
  left: max(18px, calc((100vw - 1180px) / 2));
  padding: 8px 14px;
  border-radius: 999px;
  color: #06111e;
  background: var(--gradient-primary);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 28px rgba(0, 212, 255, 0.22);
}

.catalog-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.5fr);
  gap: 32px;
  align-items: center;
  padding: 38px;
  border: 1px solid rgba(0, 212, 255, 0.24);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-lg);
}

.catalog-copy p {
  color: var(--muted);
}

.catalog-actions {
  display: grid;
  gap: 14px;
}

.gallery {
  background: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--bg);
}

.gallery-card img {
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 15, 28, 0.04), rgba(10, 15, 28, 0.86));
}

.gallery-card h3 {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  margin: 0;
  color: var(--text);
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.mv-card {
  padding: 34px;
  background: var(--surface-light);
  border: 1px solid #dce5ef;
  box-shadow: var(--shadow-sm);
}

.why {
  background: #f5f8fb;
}

.why-panel {
  padding: 38px;
  color: var(--text);
  background: var(--gradient-dark);
  box-shadow: var(--shadow-lg);
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.why-list span {
  position: relative;
  padding: 14px 14px 14px 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(238, 247, 255, 0.9);
  font-weight: 700;
}

.why-list span::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
  box-shadow: 0 0 0 5px rgba(0, 230, 184, 0.14);
}

.clients {
  background:
    linear-gradient(180deg, #ffffff, #f5f8fc 42%, #eef4fb);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.client-card {
  position: relative;
  display: grid;
  grid-template-rows: 96px auto;
  align-items: center;
  justify-items: center;
  min-height: 174px;
  padding: 22px 16px 18px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(0, 212, 255, 0.28), rgba(21, 101, 255, 0.12), rgba(0, 230, 184, 0.24)) border-box;
  border: 1px solid var(--dark-line);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.client-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.08), transparent 34%),
    radial-gradient(circle at 78% 18%, rgba(0, 230, 184, 0.12), transparent 28%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.client-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 20px 52px rgba(13, 27, 46, 0.14);
}

.client-card:hover::before {
  opacity: 1;
}

.client-card img {
  position: relative;
  z-index: 1;
  max-width: 132px;
  max-height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(13, 27, 46, 0.12));
}

.client-card span:last-child {
  position: relative;
  z-index: 1;
  color: var(--dark-text);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.25;
}

.client-placeholder {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: var(--radius);
  color: var(--text);
  background: var(--gradient-brand);
  font-weight: 900;
  letter-spacing: 0.06em;
}

.seo-faq {
  background: #ffffff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.faq-card {
  padding: 24px;
  border: 1px solid rgba(13, 27, 46, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(0, 212, 255, 0.06), transparent 42%),
    #ffffff;
  box-shadow: var(--shadow-sm);
}

.faq-card h3 {
  margin: 0 0 12px;
  color: var(--dark-text);
  font-size: 1.05rem;
}

.faq-card p {
  margin: 0;
  color: var(--body-text);
}

.contact {
  color: var(--text);
  background:
    radial-gradient(circle at 85% 10%, rgba(0, 212, 255, 0.12), transparent 28%),
    var(--gradient-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-copy p {
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(238, 247, 255, 0.84);
  font-weight: 700;
}

.contact-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

select option {
  color: #101827;
}

textarea {
  resize: vertical;
  min-height: 132px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.15);
}

.footer {
  padding: 28px 0;
  color: rgba(238, 247, 255, 0.72);
  background:
    linear-gradient(180deg, #050914, #030711),
    #050914;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-logo img {
  width: 210px;
  max-height: 122px;
  object-fit: contain;
}

.footer p {
  margin: 0;
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #25d366, var(--brand-mint));
  box-shadow: 0 16px 42px rgba(0, 230, 184, 0.35);
  transition: transform 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
}

.floating-whatsapp svg {
  width: 1.8rem;
  height: 1.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .services-grid,
  .clients-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .brand-header img {
    width: 138px;
    height: 52px;
    max-height: 52px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(10, 15, 28, 0.98);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-grid,
  .split,
  .reverse,
  .contact-grid,
  .catalog-panel,
  .featured-offer {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .gallery-grid,
  .mv-grid,
  .faq-grid,
  .clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reverse .wide-image {
    order: -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: var(--space-section-mobile) 0;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 56px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(10, 15, 28, 0.94), rgba(13, 27, 46, 0.76));
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .services-grid,
  .gallery-grid,
  .mv-grid,
  .why-list,
  .contact-form,
  .faq-grid,
  .clients-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .stat-card {
    position: static;
    margin: 14px 0 0;
    max-width: none;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer p {
    text-align: left;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
