/* ══════════════════════════════════════════
   LA VENTANA CREATIVA — ESTILOS COMPARTIDOS
══════════════════════════════════════════ */
:root {
  --bg: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.92);
  --violet: #1a1a1a;
  --violet-neon: #333333;
  --green: #E84E0F;
  --green-neon: #FF6B35;
  --white: #0a0a0a;
  --true-white: #ffffff;
  --muted: rgba(0, 0, 0, 0.55);
  --border: rgba(232, 78, 15, 0.2);
  --radius: 20px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100vw;
  max-width: 100%;
}

body {
  background-color: var(--bg);
  color: #0a0a0a;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 0 15px rgba(232, 78, 15, 0.4);
  }

  50% {
    box-shadow: 0 0 30px rgba(232, 78, 15, 0.7);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 48px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 14px;
}

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

.nav-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(232, 78, 15, 0.08);
  border: 1px solid var(--border);
  color: var(--green);
  transition: all 0.3s ease;
}

.nav-social-icon svg {
  display: block;
  width: 32px !important;
  height: 32px !important;
  fill: currentColor;
}

.nav-social-icon:hover {
  background: var(--green);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 78, 15, 0.4);
}

@media (max-width: 768px) {
  .nav-social {
    gap: 8px;
  }

  .nav-social-icon {
    width: 52px;
    height: 52px;
  }

  .nav-social-icon svg {
    width: 26px !important;
    height: 26px !important;
  }
}

.nav-cta {
  background: var(--green);
  color: #0d091a;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(232, 78, 15, 0.4);
  border: 2px solid var(--green);
}

.nav-cta {
  color: #ffffff;
}

.nav-cta:hover {
  background: #ffffff;
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 78, 15, 0.4);
}

/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 90vh;
  padding: 0;
  gap: 40px;
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeUp 1s ease both;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  width: 100%;
  padding: 60px 24px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(232, 78, 15, 0.08);
  border: 1px solid rgba(232, 78, 15, 0.25);
  border-radius: 30px;
  color: var(--green-neon);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green);
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(50px, 6vw, 90px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-title span {
  font-weight: 900;
  background: linear-gradient(to right, var(--green), #ffaa6b);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 20px;
  color: var(--muted);
  max-width: 700px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* ── Slogan Carousel ── */
.carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto 16px auto;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.35);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
  padding: 0;
}

.carousel-btn:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(232, 78, 15, 0.08);
}

.carousel-prev {
  left: 6px;
}

.carousel-next {
  right: 6px;
}

.slogan-carousel {
  width: 100%;
  position: relative;
  min-height: 200px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.slogan-track {
  display: flex;
  align-items: center;
  transition: transform 1.1s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

.slogan-slide {
  box-sizing: border-box;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.slogan-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--violet-neon);
  text-transform: uppercase;
  opacity: 0.75;
  min-height: 16px;
}

.slogan-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(30px, 6vw, 70px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  color: #0a0a0a;
  width: 100%;
  word-wrap: break-word;
  white-space: normal;
  margin: 0;
}

.slogan-headline strong {
  font-weight: 900;
  color: var(--green);
}

.slogan-sub {
  font-size: 17px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.5;
  max-width: 620px;
  text-align: center;
}

.slogan-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}

.slogan-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  transition: all 0.5s ease;
  cursor: pointer;
}

.slogan-dot.active {
  width: 24px;
  border-radius: 3px;
  background: var(--green);
}

@media(max-width:768px) {
  .slogan-carousel {
    min-height: 140px;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .carousel-wrapper {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .slogan-dots {
    width: 100%;
    justify-content: center;
  }

  .carousel-btn {
    width: 26px;
    height: 26px;
    font-size: 17px;
  }

  .slogan-slide {
    padding: 0 10px;
    align-items: center;
    text-align: center;
  }

  .slogan-headline {
    font-size: clamp(16px, 6vw, 28px) !important;
    line-height: 1.2;
  }

  .slogan-sub {
    font-size: 13px;
  }

  .hero-phone-cta {
    padding: 12px 20px;
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
  }

  .show-mobile {
    display: block !important;
  }

  .hide-mobile {
    display: none !important;
  }
}

.show-mobile {
  display: none;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-ctas-buttons {
  display: flex;
  gap: 16px;
}

.btn-primary {
  background: var(--green);
  color: #0d091a;
  padding: 20px 40px;
  border: none;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(232, 78, 15, 0.4);
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(232, 78, 15, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--violet-neon);
  padding: 16px 36px;
  border: 2px solid var(--violet);
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background: rgba(26, 26, 26, 0.06);
  border-color: var(--violet-neon);
}

.hero-phone-cta {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 800;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.04);
  padding: 12px 24px;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: all 0.3s;
}

.hero-phone-cta:hover {
  background: rgba(26, 26, 26, 0.08);
  transform: translateY(-2px);
}

/* ── Cinema Video Player ── */
.cinema-stage {
  width: 100%;
  position: relative;
  background: #000;
  overflow: hidden;
  line-height: 0;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
}

.video-hero {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1920 / 750;
  object-fit: contain;
  background: #000;
}

.video-mute-btn {
  position: absolute;
  bottom: 30px;
  right: 40px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.video-mute-btn:hover {
  background: rgba(232, 78, 15, 0.8);
  transform: scale(1.1);
  border-color: rgba(232, 78, 15, 1);
}

@media(max-width:768px) {
  .video-hero {
    aspect-ratio: 1920 / 750;
  }
}

/* ── Stats Ticker ── */
.ticker-wrap {
  background: rgba(26, 26, 26, 0.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
  margin-top: 40px;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
}

.ticker-item {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--muted);
  padding: 0 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}

.ticker-green {
  color: var(--green-neon);
}

.ticker-dot {
  width: 6px;
  height: 6px;
  background: var(--violet);
  border-radius: 50%;
}

/* ── Services ── */
.services {
  padding: 100px 48px;
  text-align: center;
}

.services h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 60px;
}

.services h2 span {
  color: var(--violet-neon);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.svc-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  text-align: left;
  backdrop-filter: blur(12px);
  transition: all 0.4s;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.svc-card:hover {
  transform: translateY(-10px);
  border-color: var(--green);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.svc-card-img-wrap {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.svc-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.svc-card:hover .svc-card-img {
  transform: scale(1.08);
}

.svc-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 12px;
}

.svc-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.svc-card.hidden {
  display: none;
}

.svc-cat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet-neon);
  opacity: 0.7;
  margin-bottom: 12px;
  display: block;
}

.svc-intro {
  max-width: 780px;
  margin: -20px auto 56px auto;
  background: rgba(26, 26, 26, 0.04);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 20px;
  padding: 32px 40px;
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px 24px;
  align-items: start;
}

.svc-intro-icon {
  font-size: 32px;
  line-height: 1;
  padding-top: 2px;
}

.svc-intro-text {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
}

.svc-intro-text strong {
  color: var(--white);
  font-weight: 700;
}

.svc-intro-text em {
  color: var(--green);
  font-style: normal;
  font-weight: 700;
}

@media (max-width: 768px) {
  .svc-intro {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 12px;
    margin-bottom: 40px;
  }
}

/* ── Calculator ── */
.calc-section {
  padding: 100px 48px;
  background: radial-gradient(circle at center, rgba(26, 26, 26, 0.03) 0%, var(--bg) 70%);
}

.calc-head {
  text-align: center;
  margin-bottom: 60px;
}

.calc-head h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 900;
}

.calc-head h2 em {
  color: var(--green);
  font-style: normal;
}

.svc-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.svc-tab {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--muted);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
}

.svc-tab:hover {
  background: rgba(26, 26, 26, 0.08);
  border-color: var(--violet);
  color: var(--white);
}

.svc-tab.active {
  background: var(--green);
  color: #0d091a;
  border-color: var(--green);
  box-shadow: 0 0 15px rgba(232, 78, 15, 0.4);
}

.calc-body {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.sliders-panel {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(12px);
}

.sliders-panel h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  color: var(--green-neon);
  margin-bottom: 30px;
}

.sl-group {
  margin-bottom: 30px;
}

.sl-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.sl-name {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
}

.sl-val {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--green);
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
  box-shadow: 0 0 15px var(--green);
  border: 3px solid #ffffff;
  transition: transform 0.2s;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.results-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.res-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.res-card.saving {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.08), rgba(232, 78, 15, 0.08));
  border-color: var(--green);
  box-shadow: 0 0 30px rgba(232, 78, 15, 0.12);
}

.res-label {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 8px;
}

.res-price {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 900;
}

.trad .res-price {
  color: #ff4757;
  text-decoration: line-through;
  opacity: 0.7;
}

.charria .res-price {
  color: var(--green);
  text-shadow: 0 0 15px rgba(232, 78, 15, 0.25);
}

.saving .res-price {
  color: var(--white);
}

.breakdown-v2 {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.bd-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 13px;
}

.bd-row:last-child {
  border: none;
}

.bd-item {
  color: var(--muted);
}

.bd-trad {
  color: #ff4757;
  opacity: 0.6;
}

.bd-us {
  color: var(--green);
  font-weight: 700;
}

/* ── Contact ── */
.contact-section {
  padding: 100px 48px;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 24px;
  backdrop-filter: blur(15px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-wrap.full {
  grid-column: 1 / -1;
}

.secure-input,
.secure-select,
.secure-textarea {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 16px;
  border-radius: 12px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: all 0.3s;
}

.secure-input:focus,
.secure-select:focus,
.secure-textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 10px rgba(232, 78, 15, 0.18);
}

.secure-select option {
  background: var(--bg);
  color: var(--white);
}

.submit-btn {
  background: var(--green);
  color: #0d091a;
  padding: 18px;
  border-radius: 12px;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.submit-btn:hover {
  background: var(--green-neon);
  box-shadow: 0 0 20px rgba(232, 78, 15, 0.45);
  transform: translateY(-2px);
}

.contact-info-strip {
  max-width: 700px;
  margin: 0 auto 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  text-align: center;
}

.contact-info-strip a {
  color: var(--violet-neon);
  font-weight: 700;
  text-decoration: none;
}

.contact-info-strip a:hover {
  color: var(--green);
}

/* ── Bot Animation ── */
.bot-indicator {
  animation: botFloat 3s ease-in-out infinite;
}

@keyframes botFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.bot-eye {
  animation: botBlink 4s infinite;
}

@keyframes botBlink {

  0%,
  90%,
  100% {
    opacity: 1;
  }

  95% {
    opacity: 0;
  }
}

/* ── Footer ── */
footer {
  border-top: 1px solid rgba(232, 78, 15, 0.6);
  padding: 60px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: #ffffff;
}

.footer-logo {
  font-size: 20px;
  font-weight: 800;
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 12px;
  color: #666666;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 8px;
}

.footer-links a {
  color: var(--violet-neon);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--green);
}

/* ── Service Modal ── */
.s-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(15px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.s-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.s-modal-box {
  background: linear-gradient(135deg, #ffffff 0%, #fff1eb 100%);
  border: 1px solid rgba(232, 78, 15, 0.2);
  box-shadow: 0 0 50px rgba(232, 78, 15, 0.15);
  width: 95%;
  max-width: 1150px;
  min-height: 550px;
  border-radius: 24px;
  overflow: hidden;
  padding: 0;
  position: relative;
  display: flex;
  align-items: stretch;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s ease;
}

.s-modal-overlay.active .s-modal-box {
  transform: translateY(0) scale(1);
}

#mdl-avatar-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 48%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(232, 78, 15, 0.08) 0%, transparent 70%);
  overflow: hidden;
}

#mdl-icon-display {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  mask-image: linear-gradient(to right, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
}

.s-content {
  position: relative;
  min-height: 550px;
  padding: 60px 60px 60px 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  z-index: 2;
}

.s-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #333;
  background: rgba(0, 0, 0, 0.05);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}

.s-close:hover {
  background: var(--green);
  color: #0d091a;
  box-shadow: 0 0 15px var(--green);
}

@keyframes avatarTalk {
  0% {
    transform: scale(1) translateY(0);
    filter: drop-shadow(0 0 20px rgba(232, 78, 15, 0.08));
  }

  50% {
    transform: scale(1.02) translateY(-5px);
    filter: drop-shadow(0 0 35px rgba(232, 78, 15, 0.4));
  }

  100% {
    transform: scale(1) translateY(0);
    filter: drop-shadow(0 0 20px rgba(232, 78, 15, 0.08));
  }
}

.avatar-talking {
  animation: avatarTalk 1.5s infinite ease-in-out;
}

.s-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--violet);
  line-height: 1.1;
}

.s-pitch {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 32px;
}

.s-pitch strong {
  color: #111;
  font-weight: 800;
}

.s-btn-hire {
  background: var(--green);
  color: #0d091a;
  width: 100%;
  padding: 20px;
  border-radius: 12px;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(232, 78, 15, 0.25);
  text-transform: uppercase;
  margin-bottom: 20px;
  text-decoration: none;
  display: block;
  text-align: center;
}

.s-btn-hire:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 30px rgba(232, 78, 15, 0.5);
  background: var(--green-neon);
}

/* ── Legal Modal ── */
.legal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(15px);
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
}

.legal-overlay.open {
  display: flex;
}

.legal-box {
  background: var(--bg);
  border: 1px solid var(--violet);
  box-shadow: 0 0 50px rgba(26, 26, 26, 0.08);
  border-radius: 16px;
  padding: 40px;
  max-width: 800px;
  width: 100%;
  position: relative;
}

.legal-box h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  color: var(--violet-neon);
  margin-bottom: 8px;
}

.legal-box h2 {
  color: var(--green);
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-box p,
.legal-box li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.legal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.08);
  border: none;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal-close:hover {
  background: var(--green);
  box-shadow: 0 0 15px var(--green);
  color: #0d091a;
}

/* ── RGPD Cookie Banner ── */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  left: auto;
  z-index: 9000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transform: translateY(150%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 320px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

#cookie-banner.show {
  transform: translateY(0);
}

#cookie-banner p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
}

#cookie-banner p a {
  color: var(--violet-neon);
  cursor: pointer;
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: 10px;
  width: 100%;
}

.cookie-accept {
  background: var(--green);
  color: #0d091a;
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s;
}

.cookie-reject {
  background: transparent;
  color: var(--muted);
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.3s;
}

.cookie-accept:hover {
  background: var(--green-neon);
  transform: translateY(-2px);
}

.cookie-reject:hover {
  border-color: var(--violet);
  color: var(--white);
}

/* ── PORTFOLIO CARDS ── */
.portfolio-card {
  display: flex;
  flex-direction: column;
}

.ptf-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ptf-tag {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--violet);
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.ptf-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ptf-body h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: var(--fg);
}

.ptf-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.ptf-tech {
  margin-top: 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--violet);
  opacity: 0.8;
}

/* ── BRANDS GRID ── */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.brand-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.brand-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--green);
}

.brand-item img {
  max-height: 42px;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.45;
  transition: all 0.4s ease;
}

.brand-item:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.12);
}

/* ── Breadcrumbs ── */
.breadcrumbs {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 48px 0;
  font-size: 13px;
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--green);
}

@media (max-width: 992px) {
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .breadcrumbs {
    padding: 12px 20px 0;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .brand-item {
    padding: 16px;
    min-height: 80px;
  }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav {
    padding: 16px 20px;
  }

  .nav-logo img {
    height: 45px !important;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    padding: 10px 20px;
    font-size: 13px;
    border-width: 1px;
  }

  .hero {
    padding: 10px 24px 0;
    gap: 20px;
    min-height: auto;
  }

  .hero-content {
    padding-top: 10px;
  }

  .hero-badge {
    flex-direction: column;
    text-align: center;
    padding: 15px 20px;
    border-radius: 20px;
    gap: 5px;
  }

  .hero-badge-dot {
    display: none;
  }

  .hero-title {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .hero-sub {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .video-mute-btn {
    bottom: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
  }

  .video-mute-btn svg {
    width: 20px;
    height: 20px;
  }

  .cinema-stage {
    width: 100vw;
    margin-top: 0;
  }

  .hero-ctas-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    padding: 16px;
    font-size: 16px;
  }

  .agent-wrap {
    width: 320px;
  }

  .services {
    padding: 80px 24px;
  }

  .services h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .svc-card {
    padding: 24px;
  }

  .calc-section {
    padding: 80px 24px;
  }

  .calc-head h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .svc-tabs {
    gap: 10px;
    margin-bottom: 30px;
  }

  .svc-tab {
    padding: 10px 16px;
    font-size: 13px;
  }

  .calc-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sliders-panel {
    padding: 24px;
  }

  .s-modal-box {
    padding: 0;
    min-height: auto;
    max-height: 94vh;
    width: 94%;
    overflow-y: auto;
    display: block;
  }

  .s-content {
    padding: 40px 24px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #mdl-avatar-container {
    position: relative;
    width: 100%;
    height: 160px;
    order: 2;
    margin: 10px 0 20px 0;
    background: none;
  }

  #mdl-icon-display {
    font-size: 5rem;
  }

  .s-content h3 {
    order: 1;
    text-align: center;
    font-size: 26px;
    margin-bottom: 10px;
  }

  .s-pitch {
    order: 3;
    text-align: center;
    font-size: 16px;
    margin-bottom: 24px;
  }

  .s-btn-hire {
    order: 4;
    width: 100%;
    padding: 18px;
    font-size: 16px;
  }

  .s-close {
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
  }

  .contact-section {
    padding: 80px 24px;
  }

  .contact-form {
    padding: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  footer {
    padding: 30px 20px;
  }

  #cookie-banner {
    padding: 20px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-btns {
    width: 100%;
  }

  .cookie-accept,
  .cookie-reject {
    flex: 1;
    text-align: center;
  }

  .ptf-thumb {
    height: 160px;
  }

  #mdl-icon-display {
    font-size: 5rem;
  }
}
