:root {
  --night: #07182d;
  --night-deep: #030d1c;
  --blue: #1297f3;
  --lime: #b9ef2e;
  --white: #f7faff;
  --muted: #a8b4c4;
  --ink: #0b1c30;
  --card: #10243c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--night-deep);
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 50%;
  width: min(100% - 64px, 1500px);
  height: 96px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 225px;
  height: 86px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
  font-weight: 600;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-socials a {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.header-socials a:hover,
.header-socials a:focus-visible {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--night);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}

.language-switcher a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.05em;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.language-switcher a:hover,
.language-switcher a:focus-visible,
.language-switcher a.is-active {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--night);
}

.main-nav > a:not(.nav-whatsapp) {
  position: relative;
  padding: 12px 0;
}

.main-nav > a:not(.nav-whatsapp)::after {
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lime);
  content: "";
  transition: width 0.25s ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  width: 100%;
}

.nav-whatsapp {
  padding: 14px 22px;
  border-radius: 8px;
  background: var(--lime);
  color: #07170e;
  font-weight: 800;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 900px;
  height: 100svh;
  max-height: 1020px;
  overflow: hidden;
  background: var(--night);
}

.hero-slides,
.hero-slide,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-position: center top;
  background-size: cover;
  opacity: 0;
  transform-origin: center top;
  transform: scale(1);
  transition: opacity 1.4s ease;
}

.hero-slide.is-active {
  opacity: 1;
  animation: slowZoom 7.2s ease-out both;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.04); }
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 13, 28, 0.99) 0%, rgba(3, 13, 28, 0.95) 31%, rgba(3, 13, 28, 0.47) 56%, rgba(3, 13, 28, 0.16) 100%),
    linear-gradient(0deg, rgba(3, 13, 28, 0.78) 0%, transparent 31%, rgba(3, 13, 28, 0.2) 100%);
}

.music-lines {
  position: absolute;
  z-index: 2;
  top: 135px;
  left: -4%;
  width: 52%;
  height: 230px;
  opacity: 0.16;
  transform: rotate(-8deg);
  background: repeating-linear-gradient(180deg, transparent 0 28px, rgba(255,255,255,0.45) 29px 30px);
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(100% - 96px, 1500px);
  margin: 0 auto;
  padding-top: clamp(185px, 22vh, 230px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--lime);
  font-family: "Roboto Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(55px, 5vw, 82px);
  font-weight: 820;
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.accent-line {
  display: block;
  width: 56px;
  height: 4px;
  margin: 28px 0 24px;
  background: var(--lime);
}

.hero-copy,
.hero-prompt {
  max-width: 570px;
  font-size: 18px;
  line-height: 1.55;
}

.hero-copy {
  margin: 0;
}

.hero-prompt {
  margin: 20px 0 0;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--lime);
  color: #07170e;
}

.button-primary:hover {
  background: #cdff43;
}

.button-secondary {
  border-color: var(--blue);
  background: rgba(7, 24, 45, 0.48);
}

.button-secondary:hover {
  background: var(--blue);
}

.hero-tags {
  margin: 52px 0 0;
  color: #bbc8d7;
  font-family: "Roboto Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-tags b {
  margin: 0 10px;
  color: var(--lime);
}

.slide-controls {
  position: absolute;
  z-index: 8;
  right: 42px;
  bottom: 40px;
  display: flex;
  gap: 8px;
}

.slide-controls button {
  width: 28px;
  height: 4px;
  padding: 0;
  border: 0;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
}

.slide-controls button.is-active {
  background: var(--lime);
}

.section {
  width: min(100% - 96px, 1360px);
  margin: 0 auto;
}

.about-section {
  padding: 120px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 80px;
  align-items: center;
}

h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.about-copy > p,
.video-card > p,
.section-heading > p,
.benefits-intro > p:last-child,
.gallery-heading > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.about-copy > p:first-of-type {
  color: var(--white);
  font-size: 20px;
}

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

.video-card {
  position: relative;
}

.video-placeholder {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(18,151,243,0.4);
  border-radius: 18px;
  box-shadow: 24px 24px 0 rgba(18,151,243,0.1);
}

.video-placeholder > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-placeholder video {
  display: block;
  width: 100%;
  height: 100%;
  background: #020914;
  object-fit: cover;
}

.video-placeholder iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-lite > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-lite::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,13,28,0.08), rgba(3,13,28,0.62));
  content: "";
  pointer-events: none;
}

.video-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 14px;
  padding: 10px 22px 10px 10px;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 999px;
  background: rgba(3, 13, 28, 0.9);
  color: var(--white);
  cursor: pointer;
  font: inherit;
}

.video-play span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--night);
}

.video-play:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.video-instruction {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: calc(100% - 36px);
  padding: 12px 15px;
  border-radius: 8px;
  background: rgba(3, 13, 28, 0.78);
  pointer-events: none;
}

.video-instruction small {
  color: #d2dae5;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 28px;
  background: rgba(3,13,28,0.52);
  text-align: left;
}

.video-overlay strong,
.video-overlay small {
  display: block;
}

.video-overlay strong {
  font-size: 20px;
}

.video-overlay small {
  margin-top: 6px;
  color: #d2dae5;
}

.play-button {
  display: grid;
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--night);
  font-size: 22px;
}

.services-section {
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.section-heading,
.gallery-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 60px;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.15);
  border-left: 1px solid rgba(255,255,255,0.15);
}

.event-grid article {
  min-height: 170px;
  padding: 26px;
  border-right: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  background: rgba(16,36,60,0.34);
  transition: background 0.2s ease, transform 0.2s ease;
}

.event-grid article:hover {
  position: relative;
  background: var(--blue);
  transform: translateY(-4px);
}

.event-grid span {
  color: var(--lime);
  font-family: "Roboto Mono", monospace;
  font-size: 12px;
}

.event-grid h3 {
  margin: 60px 0 0;
  font-size: 19px;
}

.international-event h3 {
  margin-top: 36px;
  font-size: 17px;
  line-height: 1.35;
}

.country-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 14px;
}

.country-flags span {
  color: inherit;
  font-family: inherit;
  font-size: 18px;
  line-height: 1;
}

.benefits-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
  padding: 120px 0;
}

.benefits-intro p:last-child {
  max-width: 500px;
}

.benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.benefits-list div {
  display: flex;
  min-height: 80px;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 10px;
  background: rgba(16,36,60,0.54);
  font-weight: 650;
}

.benefits-list span {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--night);
}

.brand-options-section {
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: #081b31;
}

.brand-options-heading {
  display: grid;
  max-width: 850px;
  margin-bottom: 55px;
}

.brand-options-heading > p:last-child {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.brand-options-grid article {
  min-height: 295px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 12px;
  background: rgba(16,36,60,0.72);
}

.brand-options-grid article:nth-child(2) {
  border-color: rgba(18,151,243,0.55);
}

.brand-options-grid article:nth-child(3) {
  border-color: rgba(185,239,46,0.48);
}

.brand-option-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--lime);
  border-radius: 50%;
  color: var(--lime);
  font-family: "Roboto Mono", monospace;
  font-size: 21px;
  font-weight: 700;
}

.brand-options-grid h3 {
  margin: 55px 0 14px;
  font-size: 25px;
}

.brand-options-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.brand-option-features {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,0.11);
  color: var(--white);
  font-size: 14px;
  line-height: 1.45;
  list-style: none;
}

.brand-option-features li {
  position: relative;
  padding-left: 18px;
}

.brand-option-features li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--lime);
  content: "+";
  font-family: "Roboto Mono", monospace;
  font-weight: 700;
}

.brand-options-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.gallery-section {
  padding: 120px 0 0;
  background: #061426;
}

.seo-entry-section {
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  background: #061426;
}

.seo-entry-heading {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 30px 80px;
  align-items: end;
  margin-bottom: 55px;
}

.seo-entry-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.seo-entry-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.seo-entry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.seo-entry-grid a {
  position: relative;
  display: grid;
  min-height: 210px;
  align-content: end;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 10px;
  background: var(--card);
  transition: transform .2s ease, border-color .2s ease;
}

.seo-entry-grid a:hover {
  transform: translateY(-4px);
  border-color: var(--lime);
}

.seo-entry-grid span {
  margin-bottom: 12px;
  color: var(--lime);
  font: 700 11px "Roboto Mono", monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.seo-entry-grid strong {
  font-size: 20px;
  line-height: 1.3;
}

.seo-entry-grid b {
  position: absolute;
  top: 25px;
  right: 25px;
  color: var(--lime);
  font-size: 22px;
}

@media (max-width: 900px) {
  .seo-entry-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .seo-entry-section { padding: 84px 0; }
  .seo-entry-heading { grid-template-columns: 1fr; gap: 25px; }
  .seo-entry-heading .section-kicker { grid-column: auto; }
  .seo-entry-grid { grid-template-columns: 1fr; }
  .seo-entry-grid a { min-height: 170px; }
}

.gallery-grid {
  display: grid;
  width: min(100% - 96px, 1360px);
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 auto;
  padding-bottom: 120px;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 10px;
  aspect-ratio: 4 / 3;
  background: var(--card);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-item:nth-child(3n) img { object-position: 70% center; }
.gallery-item:nth-child(3n + 1) img { object-position: 25% center; }
.gallery-item:nth-child(3n + 2) img { object-position: 50% center; }

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(3,13,28,0.55));
  content: "";
  pointer-events: none;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.1);
}

.lightbox-open {
  overflow: hidden;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 32px;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(1, 7, 16, 0.93);
  cursor: zoom-out;
}

.lightbox-content {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: min(1180px, 92vw);
  max-height: 88vh;
  place-items: center;
}

.lightbox-content img {
  display: block;
  max-width: 100%;
  max-height: 88vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--lime);
  color: var(--night);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 135px 0;
  background: var(--blue);
  color: #fff;
  text-align: center;
}

.contact-glow {
  position: absolute;
  top: -210px;
  left: 50%;
  width: 620px;
  height: 620px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(185,239,46,0.22);
  filter: blur(80px);
}

.contact-inner {
  position: relative;
}

.contact-section .section-kicker {
  color: var(--lime);
}

.contact-section h2 {
  max-width: 850px;
  margin: 0 auto;
}

.contact-lead {
  max-width: 680px;
  margin: 25px auto 44px;
  font-size: 18px;
  line-height: 1.65;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.contact-cards a {
  display: flex;
  min-height: 118px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  background: rgba(3,13,28,0.18);
  text-align: left;
  transition: background 0.2s ease;
}

.contact-cards a:hover {
  background: rgba(3,13,28,0.35);
}

.contact-cards span {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-cards strong {
  font-size: clamp(17px, 1.5vw, 22px);
}

.contact-button {
  margin-top: 30px;
}

.social-section {
  display: flex;
  width: min(100% - 96px, 1360px);
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 54px 0;
}

.social-section p {
  margin: 0;
  font-size: 19px;
  font-weight: 750;
}

.social-section div {
  display: flex;
  gap: 30px;
}

.social-section a {
  color: var(--lime);
  font-weight: 700;
}

footer {
  display: grid;
  grid-template-columns: 250px 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 44px max(48px, calc((100vw - 1360px) / 2));
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--muted);
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: min(460px, calc(100% - 44px));
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  background: #07182d;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: #d4deea;
  font-size: 14px;
  line-height: 1.55;
}

.cookie-banner p a {
  color: var(--lime);
  text-decoration: underline;
}

.cookie-banner div {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-banner button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font: 700 13px "Montserrat", Arial, sans-serif;
}

.cookie-banner .cookie-accept {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--night);
}

.legal-page {
  min-height: 100vh;
  background: #f6f8fb;
  color: var(--ink);
}

.legal-content {
  width: min(100% - 40px, 850px);
  margin: 0 auto;
  padding: 70px 0 100px;
}

.legal-content .section-kicker {
  margin-top: 60px;
  color: #087dc8;
}

.legal-content h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 7vw, 70px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.legal-content h2 {
  margin: 42px 0 12px;
  font-size: 25px;
  letter-spacing: -0.025em;
}

.legal-content p {
  margin: 0 0 16px;
  color: #3d4d60;
  font-size: 16px;
  line-height: 1.75;
}

.legal-content a {
  color: #087dc8;
  text-decoration: underline;
}

.legal-back {
  display: inline-block;
  font-weight: 700;
}

footer img {
  width: 210px;
  height: 80px;
  object-fit: contain;
}

footer p:last-child {
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  z-index: 45;
  right: 24px;
  bottom: 24px;
  padding: 15px 20px;
  border-radius: 999px;
  background: var(--lime);
  color: #07170e;
  font-weight: 850;
  box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

@media (max-width: 1050px) {
  .site-header {
    width: calc(100% - 40px);
  }

  .main-nav {
    gap: 16px;
    font-size: 14px;
  }

  .header-socials {
    display: none;
  }

  .hero-content,
  .section,
  .social-section {
    width: calc(100% - 56px);
  }

  .about-grid,
  .benefits-section {
    gap: 48px;
  }

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

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

  .contact-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 72px;
  }

  .site-header {
    position: absolute;
    width: calc(100% - 30px);
    height: 74px;
  }

  .brand img {
    width: 158px;
    height: 64px;
  }

  .menu-toggle {
    z-index: 52;
    display: flex;
    width: 46px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 0;
    border-radius: 6px;
    background: var(--lime);
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--night);
  }

  .main-nav {
    position: absolute;
    top: 68px;
    right: 0;
    display: none;
    width: min(330px, calc(100vw - 30px));
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    background: rgba(3,13,28,0.98);
    box-shadow: 0 22px 45px rgba(0,0,0,0.35);
  }

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

  .main-nav > a {
    padding: 13px 12px !important;
  }

  .main-nav > a::after {
    display: none;
  }

  .language-switcher {
    justify-content: flex-start;
    padding: 10px 12px 4px;
  }

  .nav-whatsapp {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    min-height: 780px;
    height: 100svh;
    max-height: 900px;
  }

  .hero-slide {
    background-position: center top;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(3,13,28,0.2) 0%, rgba(3,13,28,0.38) 26%, rgba(3,13,28,0.96) 63%, #030d1c 100%),
      linear-gradient(90deg, rgba(3,13,28,0.7), transparent);
  }

  .music-lines {
    display: none;
  }

  .hero-content {
    position: absolute;
    bottom: 58px;
    left: 24px;
    width: calc(100% - 48px);
    padding: 0;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
  }

  .hero h1 {
    max-width: 560px;
    font-size: clamp(40px, 12vw, 58px);
    line-height: 1;
  }

  .accent-line {
    margin: 18px 0 16px;
  }

  .hero-copy {
    font-size: 15px;
    line-height: 1.45;
  }

  .hero-prompt {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .hero-tags {
    display: none;
  }

  .slide-controls {
    right: 20px;
    bottom: 20px;
  }

  .section,
  .social-section {
    width: calc(100% - 40px);
  }

  .about-section,
  .services-section,
  .benefits-section {
    padding: 84px 0;
  }

  .about-grid,
  .section-heading,
  .benefits-section,
  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  h2 {
    font-size: 39px;
  }

  .video-overlay {
    align-items: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .video-overlay small {
    font-size: 11px;
  }

  .play-button {
    width: 54px;
    height: 54px;
  }

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

  .event-grid article {
    min-height: 130px;
    padding: 18px;
  }

  .event-grid h3 {
    margin-top: 38px;
    font-size: 15px;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }

  .brand-options-section {
    padding: 84px 0;
  }

  .brand-options-grid {
    grid-template-columns: 1fr;
  }

  .brand-options-grid article {
    min-height: auto;
  }

  .gallery-section {
    padding-top: 84px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    width: calc(100% - 40px);
    gap: 10px;
    padding-bottom: 84px;
  }

  .contact-section {
    padding: 90px 0;
  }

  .contact-cards strong {
    overflow-wrap: anywhere;
  }

  .social-section {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    padding: 45px 0;
  }

  .social-section div {
    flex-wrap: wrap;
    gap: 16px 25px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 35px 20px 100px;
    text-align: center;
  }

  footer img {
    margin: 0 auto;
  }

  footer p:last-child {
    text-align: center;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    padding: 13px 17px;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox-close {
    top: -14px;
    right: -8px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Commercial SEO pages */
.service-page {
  background: var(--night-deep);
}

.service-header {
  position: absolute;
  z-index: 40;
  top: 0;
  left: 50%;
  display: flex;
  width: min(100% - 64px, 1500px);
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
}

.service-brand img {
  width: 215px;
  height: 78px;
  object-fit: contain;
}

.service-header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 650;
}

.service-language {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
}

.service-hero {
  position: relative;
  display: grid;
  min-height: 760px;
  align-items: end;
  overflow: hidden;
}

.service-hero-image,
.service-hero-shade {
  position: absolute;
  inset: 0;
}

.service-hero-image {
  background-position: center top;
  background-size: cover;
}

.service-hero-shade {
  background: linear-gradient(90deg, rgba(3,13,28,.98) 0%, rgba(3,13,28,.87) 42%, rgba(3,13,28,.28) 78%), linear-gradient(0deg, #030d1c 0%, transparent 42%);
}

.service-hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 96px, 1360px);
  margin: 0 auto;
  padding: 180px 0 92px;
}

.breadcrumbs {
  display: flex;
  gap: 9px;
  margin-bottom: 38px;
  color: #bdc8d6;
  font-size: 12px;
}

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

.service-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(52px, 6vw, 88px);
  line-height: .98;
  letter-spacing: -.055em;
}

.service-hero-content > p:not(.eyebrow) {
  max-width: 760px;
  margin: 30px 0;
  color: #d1dbe7;
  font-size: 19px;
  line-height: 1.65;
}

.service-hero .button {
  width: auto;
}

.service-content {
  padding: 125px 0;
}

.service-content > .section-kicker {
  margin-bottom: 65px;
}

.service-detail {
  display: grid;
  grid-template-columns: 120px minmax(0, 760px);
  gap: 55px;
  padding: 70px 0;
  border-top: 1px solid rgba(255,255,255,.13);
}

.service-detail.is-reversed {
  margin-left: min(14vw, 190px);
}

.service-detail-number {
  color: var(--lime);
  font: 700 16px "Roboto Mono", monospace;
}

.service-detail h2 {
  font-size: clamp(38px, 4vw, 58px);
}

.service-detail p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.service-detail ul {
  display: grid;
  gap: 11px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.service-detail li {
  position: relative;
  padding: 13px 16px 13px 42px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: rgba(16,36,60,.52);
}

.service-detail li::before {
  position: absolute;
  left: 16px;
  color: var(--lime);
  content: "+";
  font-weight: 800;
}

.service-faq {
  padding: 120px 0;
  background: #081b31;
}

.faq-grid {
  display: grid;
  gap: 12px;
  margin-top: 50px;
}

.faq-grid details {
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 10px;
  background: rgba(16,36,60,.58);
}

.faq-grid summary {
  padding: 24px 28px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 750;
}

.faq-grid p {
  max-width: 850px;
  margin: 0;
  padding: 0 28px 28px;
  color: var(--muted);
  line-height: 1.7;
}

.related-services {
  padding: 120px 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.related-grid a {
  position: relative;
  display: grid;
  min-height: 190px;
  align-content: end;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  background: var(--card);
}

.related-grid span {
  margin-bottom: 12px;
  color: var(--lime);
  font: 700 11px "Roboto Mono", monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.related-grid strong {
  max-width: 480px;
  font-size: 21px;
  line-height: 1.3;
}

.related-grid b {
  position: absolute;
  top: 26px;
  right: 26px;
  color: var(--lime);
  font-size: 24px;
}

.service-cta {
  padding: 125px 0;
  background: var(--blue);
  text-align: center;
}

.service-cta h2 {
  max-width: 900px;
  margin: 0 auto;
}

.service-cta .section > p:not(.section-kicker) {
  max-width: 720px;
  margin: 26px auto 38px;
  font-size: 18px;
  line-height: 1.65;
}

.service-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.service-cta-actions > a:not(.button) {
  font-weight: 700;
  text-decoration: underline;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px max(48px, calc((100vw - 1360px) / 2));
}

.service-footer img {
  width: 210px;
  height: 70px;
  object-fit: contain;
}

.service-footer p {
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

@media (max-width: 1050px) {
  .service-header nav > a:not(.nav-whatsapp):not(.service-language) { display: none; }
  .service-detail.is-reversed { margin-left: 0; }
}

@media (max-width: 700px) {
  .service-header { width: calc(100% - 32px); min-height: 78px; }
  .service-brand img { width: 150px; height: 60px; }
  .service-header nav { gap: 8px; }
  .service-header .nav-whatsapp { padding: 10px 12px; font-size: 11px; }
  .service-language { padding: 7px 9px; font-size: 11px; }
  .service-hero { min-height: 720px; }
  .service-hero-shade { background: linear-gradient(180deg, rgba(3,13,28,.2), rgba(3,13,28,.96) 58%, #030d1c); }
  .service-hero-content { width: calc(100% - 40px); padding: 150px 0 62px; }
  .service-hero h1 { font-size: clamp(43px, 12vw, 59px); }
  .service-hero-content > p:not(.eyebrow) { font-size: 16px; }
  .service-hero .button { width: 100%; }
  .service-content, .related-services, .service-faq, .service-cta { padding: 84px 0; }
  .service-detail { grid-template-columns: 1fr; gap: 18px; padding: 50px 0; }
  .service-detail h2 { font-size: 37px; }
  .related-grid { grid-template-columns: 1fr; }
  .service-cta-actions { flex-direction: column; }
  .service-footer { flex-direction: column; padding: 36px 20px 100px; text-align: center; }
  .service-footer p { text-align: center; }
}
