/* =============================================
   MEDIAK.RO — Transfer Casete Video Timișoara
   CSS Principal — versiune curată
   ============================================= */

:root {
  --navy:   #0D1B2A;
  --navy2:  #142030;
  --gold:   #F5A623;
  --gold2:  #D9901A;
  --gray:   #7A90A8;
  --text:   #C8D8E8;
  --white:  #ffffff;
  --red:    #E63946;
  --green:  #25D366;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --radius: 8px;
  --tr: 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  background: var(--navy);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
img { -webkit-user-drag: none; pointer-events: none; }
a, button { pointer-events: all; }

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245,166,35,0.18);
  transition: box-shadow var(--tr);
}

.logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 3px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.logo span { color: var(--gold); }

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links li a {
  color: var(--gray);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--tr);
  display: block;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.nav-links li a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.nav-links li a.nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 8px 20px;
  border-radius: var(--radius);
  border-bottom: none;
  font-weight: 800;
}
.nav-links li a.nav-cta:hover { background: var(--gold2); color: var(--navy); }

/* Burger — hidden on desktop */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  padding: 4px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--tr);
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile drawer — always hidden until .open */
.nav-drawer {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: rgba(10,20,32,0.98);
  z-index: 999;
  flex-direction: column;
  padding: 24px 8%;
  overflow-y: auto;
}
.nav-drawer.open { display: flex; }
.nav-drawer li { list-style: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-drawer li a {
  display: block;
  padding: 16px 0;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: color var(--tr);
}
.nav-drawer li a:hover { color: var(--gold); }
.nav-drawer li a.nav-cta {
  display: inline-block;
  margin-top: 20px;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 36px;
  border-radius: var(--radius);
  font-size: 1rem;
  border: none;
}

/* ===== ALERT BAR ===== */
.alert-bar {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 10px 5%;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 68px;
  position: relative;
  z-index: 10;
}
.alert-bar a { color: var(--navy); text-decoration: underline; }

/* ===== HERO ===== */
#acasa {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
  padding: 80px 6%;
}

/* film strip decorativ */
.film-strip-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.film-strip {
  position: absolute;
  top: -40px; right: -80px;
  width: 380px;
  opacity: 0.05;
  transform: rotate(-10deg);
  display: flex; flex-direction: column; gap: 3px;
}
.fh { display: flex; gap: 3px; padding: 4px 0; }
.fh span { width: 20px; height: 14px; border: 2px solid var(--gold); border-radius: 2px; flex-shrink: 0; }
.ff { height: 100px; border: 2px solid var(--gold); background: rgba(245,166,35,0.08); margin: 1px 0; }

/* scroll arrow — absolute, outside grid flow */
.scroll-arrow {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  opacity: 0.5;
  cursor: pointer;
  animation: bounce 2.2s ease-in-out infinite;
  z-index: 5;
}
.scroll-arrow svg { width: 26px; height: 26px; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(9px); }
}

/* Hero stânga */
.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-block;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.35);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 3px;
  margin-bottom: 26px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.hero-title span { color: var(--gold); }

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 400;
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.65;
}

.hero-desc {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--text);
  opacity: 0.85;
  margin-bottom: 42px;
  max-width: 500px;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all var(--tr);
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(245,166,35,0.3); }

.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 32px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all var(--tr);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 38px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.stat-num {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 5px;
  font-weight: 600;
}

/* Hero dreapta */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-visual-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}

.hv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hv-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 18px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--tr);
}
.hv-card:hover {
  border-color: rgba(245,166,35,0.35);
  background: rgba(245,166,35,0.05);
  transform: translateY(-2px);
}
.hv-card-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; }
.hv-card-name {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.hv-card-desc { font-size: 0.72rem; color: var(--gray); line-height: 1.4; }

.hv-cta-banner {
  background: rgba(245,166,35,0.07);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}
.hv-cta-banner .hv-icon { font-size: 2rem; flex-shrink: 0; }
.hv-cta-banner strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 3px;
}
.hv-cta-banner span { font-size: 0.8rem; color: var(--gray); line-height: 1.5; }

/* ===== SECTIONS ===== */
section { padding: 88px 6%; }

.sec-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.sec-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.sec-desc {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--gray);
  max-width: 540px;
  margin-bottom: 48px;
}
.gold-bar {
  width: 50px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 46px;
}

/* ===== SERVICII ===== */
#servicii { background: var(--navy2); }

.formats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}

.format-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px 20px 24px;
  text-align: center;
  transition: all var(--tr);
  position: relative;
  overflow: hidden;
}
.format-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--tr);
}
.format-card:hover { border-color: rgba(245,166,35,0.3); transform: translateY(-5px); background: rgba(255,255,255,0.06); }
.format-card:hover::after { transform: scaleX(1); }
.format-icon { font-size: 2.4rem; margin-bottom: 14px; display: block; }
.format-name {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 7px;
}
.format-desc { font-size: 0.78rem; color: var(--gray); line-height: 1.55; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 26px 22px;
}
.step-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(245,166,35,0.2);
  line-height: 1;
  flex-shrink: 0;
  min-width: 44px;
}
.step-title { font-weight: 700; color: var(--white); margin-bottom: 7px; font-size: 0.95rem; }
.step-text { font-size: 0.85rem; color: var(--gray); line-height: 1.65; }

/* ===== CUM FUNCȚIONEAZĂ ===== */
#cum-functioneaza { background: var(--navy); }

.deliverables {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.deliver-card {
  background: rgba(245,166,35,0.05);
  border: 1px solid rgba(245,166,35,0.18);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  transition: border-color var(--tr);
}
.deliver-card:hover { border-color: rgba(245,166,35,0.5); }
.deliver-icon { font-size: 2rem; margin-bottom: 14px; }
.deliver-title {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 9px;
}
.deliver-text { font-size: 0.82rem; color: var(--gray); line-height: 1.65; }

/* ===== PREȚURI ===== */
#preturi { background: var(--navy2); }

.prices-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.price-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px 18px;
  text-align: center;
  transition: all var(--tr);
}
.price-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.price-cat { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gray); margin-bottom: 10px; font-weight: 700; }
.price-icon { font-size: 2rem; margin-bottom: 12px; }
.price-name { font-size: 0.85rem; color: var(--text); margin-bottom: 16px; line-height: 1.5; }
.price-amount {
  font-family: var(--font-head);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.price-unit { font-size: 0.72rem; color: var(--gray); margin-top: 5px; line-height: 1.4; }
.price-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray);
  font-style: italic;
  padding: 16px 24px;
  background: rgba(245,166,35,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(245,166,35,0.14);
}
.price-note strong { color: var(--gold); font-style: normal; }

/* ===== GALERIE ===== */
#galerie { background: var(--navy); }

.gallery-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.gallery-tab {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--tr);
}
.gallery-tab.active, .gallery-tab:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.gallery-panel { display: none; }
.gallery-panel.active { display: block; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-item {
  aspect-ratio: 1;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  transition: all var(--tr);
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  transition: transform var(--tr);
  pointer-events: none;
}
.gallery-item:hover { border-color: rgba(245,166,35,0.5); transform: scale(1.04); box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.gallery-item:hover img { transform: scale(1.06); }
.gal-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(13,27,42,0.9);
  font-size: 0.7rem;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  padding: 8px 6px;
  color: var(--gold);
  transform: translateY(100%);
  transition: transform var(--tr);
}
.gallery-item:hover .gal-label { transform: translateY(0); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 88vw; max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0,0,0,0.8);
  pointer-events: none;
}
.lb-close {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 2rem;
  color: var(--gold);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}
.lb-caption {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ===== CONTACT ===== */
#contact { background: var(--navy2); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.ci-list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.ci-list li { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  width: 44px; height: 44px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.22);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.ci-lbl { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray); margin-bottom: 3px; font-weight: 700; }
.ci-val { font-size: 0.93rem; color: var(--white); font-weight: 600; line-height: 1.5; }
.ci-val a { color: var(--white); text-decoration: none; transition: color var(--tr); }
.ci-val a:hover { color: var(--gold); }

.map-wrap { margin-top: 32px; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
.map-wrap iframe { width: 100%; height: 200px; border: 0; display: block; }

.form-title { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 18px; }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 13px 15px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--white);
  outline: none;
  transition: border-color var(--tr);
  width: 100%;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--gray); }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--gold); }
.contact-form textarea { min-height: 110px; resize: vertical; }
.contact-form select option { background: var(--navy2); }

.btn-submit {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 15px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--tr);
  width: 100%;
}
.btn-submit:hover { background: var(--gold2); transform: translateY(-1px); }

/* ===== FOOTER ===== */
footer {
  background: #070F18;
  padding: 26px 6%;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { font-family: var(--font-head); font-size: 1.15rem; font-weight: 800; color: var(--white); letter-spacing: 3px; }
.footer-logo span { color: var(--gold); }
.footer-copy { font-size: 0.76rem; color: var(--gray); line-height: 1.6; }
.footer-copy a { color: var(--gray); text-decoration: none; }
.footer-fb { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--gray); text-decoration: none; transition: color var(--tr); }
.footer-fb:hover { color: var(--gold); }

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  bottom: 22px; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 18px;
  pointer-events: none;
  z-index: 998;
}
.float-btn {
  pointer-events: all;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 22px rgba(0,0,0,0.4);
  transition: transform 0.2s;
}
.float-btn:hover { transform: scale(1.1); }
.float-call { background: var(--red); animation: vibrate 3s ease-in-out infinite; }
@keyframes vibrate {
  0%,85%,100% { transform: rotate(0); }
  87% { transform: rotate(-10deg); }
  89% { transform: rotate(10deg); }
  91% { transform: rotate(-7deg); }
  93% { transform: rotate(7deg); }
  95% { transform: rotate(-3deg); }
  97% { transform: rotate(3deg); }
}
.float-wa { background: var(--green); animation: pulse-wa 3.5s ease-in-out infinite; }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 22px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 4px 30px rgba(37,211,102,0.75), 0 0 0 9px rgba(37,211,102,0.1); }
}
.float-btn svg { width: 26px; height: 26px; fill: white; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .prices-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  /* Nav: show burger, hide desktop links */
  .nav-links { display: none; }
  .burger { display: flex; }

  /* Hero: single column */
  #acasa { grid-template-columns: 1fr; gap: 40px; padding: 70px 6% 80px; }
  .hero-visual { order: -1; }

  /* Grids */
  .formats-grid { grid-template-columns: repeat(3, 1fr); }
  .deliverables { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .prices-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  footer { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  section { padding: 64px 5%; }
  #acasa { text-align: center; gap: 30px; padding: 60px 5% 70px; }
  .hero-visual { display: none; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; gap: 20px; }
  .stat-item { text-align: center; }
  .film-strip { display: none; }
  .formats-grid { grid-template-columns: repeat(2, 1fr); }
  .deliverables { grid-template-columns: repeat(2, 1fr); }
  .prices-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
