:root {
  --color-primary: #b11426;
  --color-primary-dark: #86101d;
  --color-black: #0b0b0b;
  --color-black-soft: #121212;
  --color-black-card: #161616;
  --color-white: #f5f5f5;
  --color-white-soft: #d7d7d7;
  --color-border: rgba(255, 255, 255, 0.09);
  --color-beige: #ccb89a;
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.25);
  --shadow-red: 0 20px 60px rgba(177, 20, 38, 0.18);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1200px;
  --transition: 0.3s ease;
}

/* =========================
   RESET / BASE
========================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--color-black);
  color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

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

/* =========================
   HEADER
========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(11, 11, 11, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  position: relative;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-logo {
  height: 87px;
  width: auto;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1300;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: white;
  border-radius: 2px;
  transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  right: 20px;
  width: 220px;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  display: none;
  flex-direction: column;
  padding: 12px;
  z-index: 1200;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--color-white-soft);
  transition: 0.2s ease;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

/* =========================
   BOTONES
========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.96rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #cf2037 100%);
  color: white;
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

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

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
}

/* =========================
   HERO / BANNER
========================== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: #0b0b0b;
}

.hero-banner-mode {
  position: relative;
}

.hero-slider-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.hero-banner-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-banner-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-banner-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.74) 0%, rgba(11, 11, 11, 0.56) 34%, rgba(11, 11, 11, 0.26) 58%, rgba(11, 11, 11, 0.52) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.34) 100%);
  z-index: 1;
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 0 90px;
}

.hero-content-overlay {
  max-width: 680px;
  padding-left: 70px;
}

.eyebrow,
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-beige);
}

.hero h1 {
  margin: 18px 0;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  max-width: 760px;
}

.hero h1 span {
  display: block;
  color: var(--color-white);
}

.hero-text {
  max-width: 660px;
  font-size: 1.16rem;
  color: rgba(245, 245, 245, 0.92);
  margin-bottom: 30px;
}

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

.hero-banner-dots-overlay {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: rgba(245, 245, 245, 0.38);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
  background: var(--color-white);
  transform: scale(1.08);
}

.hero-dot:hover {
  background: rgba(245, 245, 245, 0.82);
}

/* =========================
   SECCIONES BASE
========================== */
.section {
  padding: 110px 0;
}

.section-dark {
  background:
    radial-gradient(circle at top left, rgba(177, 20, 38, 0.08), transparent 25%),
    linear-gradient(180deg, #101010 0%, #0d0d0d 100%);
}

.section-head {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-head h2,
.section-copy h2 {
  margin: 14px 0 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-head p,
.section-copy p {
  color: #d2d2d2;
  font-size: 1.05rem;
}

.section-copy p + p {
  margin-top: 18px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.section-visual {
  display: flex;
  justify-content: flex-end;
}

.section-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

/* =========================
   NOSOTROS
========================== */
.about-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.about-copy {
  max-width: 720px;
}

.about-hook {
  margin-top: 28px;
  padding: 20px 22px;
  border-left: 3px solid var(--color-primary);
  border-radius: 0 18px 18px 0;
  background: rgba(255, 255, 255, 0.03);
}

.about-hook strong {
  display: block;
  font-size: 1.08rem;
  color: var(--color-white);
}

.about-visual {
  justify-content: flex-end;
}

.about-image-wrap {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   GALERÍA 12 ELEMENTOS
========================== */
.gallery-grid-12 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 18px;
}

.gallery-grid-12 .gallery-card {
  aspect-ratio: auto;
  height: 100%;
}

.gallery-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card-wide {
  grid-column: span 2;
}

.gallery-card-tall {
  grid-row: span 2;
}

/* =========================
   ALCANCE CON IMAGEN
========================== */
.regional-grid-image {
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.regional-visual {
  display: flex;
  justify-content: center;
}

.regional-image-wrap {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #111;
  box-shadow: var(--shadow-soft);
}

.regional-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}



/* =========================
   ESPECIALIDADES / PROCESO
========================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.specialties-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-card {
  padding: 26px 22px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.process-step {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--color-beige);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-card h3 {
  margin: 0;
  font-size: 1.12rem;
}

.specialty-card p {
  margin: 12px 0 0;
  color: #d0d0d0;
}

/* =========================
   ALTA PRESTACIÓN
========================== */
.quality-grid {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.quality-visuals {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.quality-video-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #111;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.quality-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.video-audio-toggle {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(11, 11, 11, 0.72);
  color: var(--color-white);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.video-audio-toggle:hover {
  background: rgba(177, 20, 38, 0.9);
  border-color: rgba(255, 255, 255, 0.18);
}

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

.quality-highlight-card {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.quality-highlight-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.quality-highlight-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #d2d2d2;
}

.provider-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 22px;
}

.provider-logo-box {
  width: 150px;
  height: 90px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.provider-logo-image {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* =========================
   GALERÍA / LIGHTBOX
========================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #111;
  cursor: pointer;
  box-shadow: none;
  line-height: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(255, 255, 255, 0.16);
}

.gallery-card:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.gallery-image {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #111;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
}

.gallery-modal.active {
  display: block;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.84);
}

.gallery-modal-content {
  position: relative;
  z-index: 2;
  width: min(92vw, 1100px);
  max-height: 88vh;
  margin: 4vh auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-modal-image {
  max-width: 100%;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.gallery-modal-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(11, 11, 11, 0.88);
  color: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

/* =========================
   ALCANCE REGIONAL
========================== */
.regional-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.regional-map-placeholder {
  min-height: 320px;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(177, 20, 38, 0.08), rgba(255, 255, 255, 0.02)),
    #141414;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white-soft);
  text-align: center;
  padding: 24px;
}

/* =========================
   MAPA ABSTRACTO NEA
========================== */
.regional-map-card {
  min-height: 320px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 20% 20%, rgba(177, 20, 38, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(177, 20, 38, 0.06), rgba(255, 255, 255, 0.015)),
    #141414;
  box-shadow: var(--shadow-soft);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nea-map-abstract {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
}

.region-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-white-soft);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.region-chip.active {
  background: linear-gradient(135deg, var(--color-primary) 0%, #cf2037 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 32px rgba(177, 20, 38, 0.28);
}

.region-misiones {
  top: 14%;
  right: 10%;
}

.region-corrientes {
  top: 44%;
  right: 6%;
}

.region-chaco {
  top: 34%;
  left: 16%;
}

.region-santafe {
  bottom: 12%;
  left: 8%;
}

.region-origin {
  position: absolute;
  top: 49%;
  left: 44%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.origin-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    0 0 0 8px rgba(177, 20, 38, 0.18),
    0 0 24px rgba(177, 20, 38, 0.42);
}

.origin-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #ffffff;
}

@media (max-width: 640px) {
  .regional-map-card {
    min-height: 280px;
    padding: 20px;
  }

  .region-chip {
    min-width: 96px;
    min-height: 40px;
    font-size: 0.76rem;
    padding: 8px 10px;
  }

  .origin-label {
    font-size: 0.76rem;
  }
}


/* =========================
   CONTACTO
========================== */
.cta-section {
  padding: 0 0 110px;
}

.cta-box {
  padding: 40px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(177, 20, 38, 0.16), rgba(255, 255, 255, 0.03)),
    #151515;
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-soft);
}

.cta-box h2 {
  margin: 12px 0 10px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.02;
}

.cta-box p {
  max-width: 720px;
  color: #d7d7d7;
}

.cta-form-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.contact-form {
  width: 100%;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(177, 20, 38, 0.04)),
    rgba(12, 12, 12, 0.9);
  box-shadow: var(--shadow-soft);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group + .form-group {
  margin-top: 18px;
}

.form-group label {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--color-white);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-white);
  border-radius: 18px;
  padding: 16px 18px;
  outline: none;
  transition: var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(245, 245, 245, 0.55);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(177, 20, 38, 0.8);
  box-shadow: 0 0 0 4px rgba(177, 20, 38, 0.12);
  background: rgba(255, 255, 255, 0.045);
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.form-submit-btn {
  width: 100%;
  margin-top: 22px;
  min-height: 56px;
  font-size: 1rem;
}

/* =========================
   FOOTER
========================== */
.site-footer {
  padding: 28px 0 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #090909;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-logo {
  height: 92px;
  width: auto;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: var(--color-white);
  transition: var(--transition);
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
}

.social-link i {
  font-size: 1.05rem;
  line-height: 1;
}

.social-link span {
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-text p {
  margin: 0;
  color: #c9c9c9;
  font-size: 0.95rem;
  text-align: right;
}

.footer-text p + p {
  margin-top: 4px;
}

/* =========================
   WHATSAPP
========================== */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25d366 0%, #1ebe5d 100%);
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.34);
  filter: brightness(1.03);
}

.whatsapp-float.icon-only {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  padding: 0;
}

.whatsapp-float i {
  font-size: 32px;
  line-height: 1;
  display: block;
  color: #ffffff;
}

/* =========================
   RESPONSIVE
========================== */
@media (max-width: 1120px) {
  .about-grid,
  .regional-grid-image {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-visual,
  .regional-visual {
    justify-content: center;
  }

  .gallery-grid-12 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .gallery-card-large,
  .gallery-card-wide,
  .gallery-card-tall {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .gallery-grid-12 {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .about-hook {
    padding: 18px;
  }

  .regional-image-wrap,
  .about-image-wrap {
    max-width: 100%;
  }
}

@media (max-width: 1120px) {
  .quality-grid,
  .cta-form-box,
  .regional-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .section-visual,
  .quality-visuals {
    justify-content: center;
  }

  .contact-form {
    max-width: 760px;
    margin-inline: auto;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-logo {
    height: 64px;
  }

  .mobile-menu {
    right: 16px;
    width: min(220px, calc(100vw - 32px));
  }

  .hero {
    min-height: 76vh;
  }

  .hero-content-wrap {
    padding: 96px 0 70px;
  }

  .hero-content,
  .hero-content-overlay,
  .section-copy,
  .section-head,
  .cta-copy {
    text-align: center;
    max-width: 100%;
  }

  .hero-content-overlay {
    padding-left: 0;
    margin-inline: auto;
  }

  .eyebrow,
  .section-tag {
    display: block;
    text-align: center;
    margin-inline: auto;
  }

  .hero h1,
  .section-copy h2,
  .section-head h2,
  .cta-box h2 {
    font-size: clamp(2.4rem, 9vw, 4rem);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-text,
  .section-copy p,
  .section-head p,
  .cta-box p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 360px;
  }

  .quality-highlight-grid {
    grid-template-columns: 1fr;
  }

  .provider-logos {
    justify-content: center;
  }

  .process-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 24px;
    border-radius: 24px;
  }

  .contact-form {
    padding: 22px;
    border-radius: 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 18px;
  }

  .footer-social {
    width: 100%;
    justify-content: center;
  }

  .footer-text p {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-logo {
    height: 56px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 72vh;
  }

  .hero-content-wrap {
    padding: 84px 0 64px;
  }

  .hero h1,
  .section-copy h2,
  .section-head h2,
  .cta-box h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .hero-banner-bg-image {
    object-position: center center;
  }

  .hero-banner-dots-overlay {
    bottom: 16px;
  }

  .quality-video-wrap {
    max-width: 320px;
  }

  .provider-logos {
    flex-direction: column;
    align-items: stretch;
  }

  .provider-logo-box {
    width: 100%;
    min-width: 0;
  }

  .cta-box {
    padding: 20px;
    border-radius: 22px;
  }

  .contact-form {
    padding: 18px;
    border-radius: 22px;
  }

  .footer-social {
    flex-direction: column;
  }

  .social-link {
    width: 100%;
    justify-content: center;
    max-width: 320px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float.icon-only {
    width: 58px;
    height: 58px;
  }

  .whatsapp-float i {
    font-size: 30px;
  }
}
