/* ── RESET & VARS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #0e0e10;
  --bg2:     #141416;
  --bg3:     #1a1a1d;
  --accent:  #40c0cb;
  --accent2: #2a8a93;
  --text:    #f2f2f0;
  --muted:   #666;
  --muted2:  #444;
  --border:  rgba(255,255,255,0.07);
  --r:       10px;
  --font:    'Inter', sans-serif;
  --display: 'Bebas Neue', sans-serif;
  --mono:    'Space Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, background .3s, border-color .3s;
  mix-blend-mode: difference;
}
.cursor-dot {
  position: fixed;
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .1s;
}
.cursor.hover {
  width: 64px; height: 64px;
  background: rgba(212,255,0,.1);
  border-color: var(--accent);
}
body a, body button { cursor: none; }

/* ── TYPOGRAPHY ── */
.display { font-family: var(--display); }
.mono    { font-family: var(--mono); }
.small   { font-size: .75rem; letter-spacing: .08em; }
.accent-text { color: var(--accent); }

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.section-num {
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--accent);
  letter-spacing: .1em;
}
.section-label > span:last-child {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--muted);
  font-weight: 600;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1;
  letter-spacing: -.01em;
}
.section-title em {
  font-style: normal;
  color: var(--accent);
}

.dot { color: var(--accent); }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 6%;
  transition: padding .4s, background .4s;
}
.nav.scrolled {
  padding: 16px 6%;
  background: rgba(14,14,16,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav__logo {
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: .05em;
  text-decoration: none;
  color: var(--text);
}
.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .03em;
  position: relative;
  transition: color .2s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .3s;
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  color: var(--accent) !important;
  border: 1px solid rgba(212,255,0,.3);
  padding: 8px 18px;
  border-radius: 50px;
  transition: background .2s !important;
}
.nav__cta:hover { background: rgba(212,255,0,.08); }
.nav__cta::after { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: .3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  padding: 0 6% 8vh;
  overflow: hidden;
}
.hero__video-wrap {
  position: absolute;
  inset: 0;
}
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .45;
}
.hero__video-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(212,255,0,.04), transparent),
    radial-gradient(ellipse 50% 70% at 15% 80%, rgba(255,69,0,.05), transparent),
    linear-gradient(180deg, #0a0a0c 0%, #0e0e10 100%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,14,16,1) 0%, rgba(14,14,16,.2) 60%, transparent 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__line {
  display: block;
  width: 40px; height: 1px;
  background: var(--accent);
}
.hero__title {
  font-family: var(--display);
  font-size: clamp(5rem, 13vw, 14rem);
  line-height: .95;
  letter-spacing: -.02em;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
}
.hero__title-row {
  display: block;
  overflow: hidden;
}
.hero__title-row.accent { color: var(--accent); }
.hero__bottom {
  display: flex;
  align-items: center;
  gap: 48px;
}
.btn-reel {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  letter-spacing: .03em;
  transition: transform .2s, opacity .2s;
}
.btn-reel:hover { transform: translateY(-2px); opacity: .9; }
.btn-reel__icon { font-size: .8rem; }
.hero__scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--mono);
}
.hero__scroll-bar {
  width: 50px; height: 1px;
  background: var(--muted2);
  position: relative;
  overflow: hidden;
}
.hero__scroll-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--accent);
  animation: scrollBar 2s infinite;
}
@keyframes scrollBar {
  to { left: 100%; }
}

/* Showreel trigger */
.reel-trigger {
  position: absolute;
  right: 6%; top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--mono);
}
.reel-trigger__ring {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 80px;
  border: 1px solid rgba(212,255,0,.3);
  border-radius: 50%;
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: .5; }
  50%       { transform: translateX(-50%) scale(1.15); opacity: 1; }
}
.reel-trigger__inner {
  width: 64px; height: 64px;
  background: rgba(212,255,0,.1);
  border: 1px solid rgba(212,255,0,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: background .3s, transform .3s;
  margin-bottom: 4px;
}
.reel-trigger:hover .reel-trigger__inner {
  background: rgba(212,255,0,.2);
  transform: scale(1.08);
}
.reel-trigger svg { width: 20px; height: 20px; margin-left: 3px; }

/* ── MARQUEE ── */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  padding: 16px 0;
}
.marquee__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.marquee__track .sep { color: var(--accent); font-size: .6rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── STATS ── */
.stats {
  padding: 80px 6%;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-item {
  padding: 48px 32px;
  border: 1px solid var(--border);
  background: var(--bg2);
  display: flex;
  flex-direction: column;
}
.stat-item:first-child { border-radius: var(--r) 0 0 var(--r); }
.stat-item:last-child  { border-radius: 0 var(--r) var(--r) 0; }
.stat-item__num {
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
  color: var(--text);
}
.stat-item__plus {
  font-family: var(--mono);
  font-size: 1rem;
  color: var(--accent);
  margin-left: 4px;
  align-self: flex-end;
  margin-bottom: 8px;
}
.stat-item p {
  font-size: .8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 12px;
  font-weight: 500;
}

/* ── BRANDS ── */
.brands {
  padding: 60px 6%;
  border-top: 1px solid var(--border);
}
.brands__label {
  font-size: .7rem;
  font-family: var(--mono);
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 32px;
  text-align: center;
}
.brands__row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 40px;
}
.brand-logo {
  font-family: var(--display);
  font-size: 1.3rem;
  letter-spacing: .1em;
  color: var(--muted2);
  transition: color .3s;
}
.brand-logo:hover { color: var(--text); }

/* ── WORK ── */
.work {
  padding: 100px 6%;
}
.work__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 64px;
}
.work__filters {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-self: flex-end;
}
.filter {
  padding: 7px 18px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: none;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: .2s;
}
.filter:hover, .filter.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(212,255,0,.06);
}

/* Project grid — masonry-like */
.work__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}
.project-card {
  grid-column: span 4;
  grid-row: span 1;
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s;
}
.project-card.large {
  grid-column: span 8;
}
.project-card:hover { transform: translateY(-4px); }
.project-card:hover .project-card__info { background: var(--bg3); }
.project-card__media {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.project-card__num {
  font-family: var(--display);
  font-size: 5rem;
  color: rgba(255,255,255,.05);
  position: absolute;
  top: 12px; left: 16px;
  line-height: 1;
}
.project-card__hover {
  width: 56px; height: 56px;
  background: rgba(212,255,0,.15);
  border: 1px solid rgba(212,255,0,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(.7);
  transition: opacity .3s, transform .3s;
}
.project-card:hover .project-card__hover {
  opacity: 1;
  transform: scale(1);
}
.project-card__play {
  font-size: 1rem;
  color: #fff;
  margin-left: 3px;
}
.project-card__info {
  background: var(--bg2);
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  transition: background .3s;
}
.project-card__cat {
  font-size: .65rem;
  font-family: var(--mono);
  color: var(--accent);
  letter-spacing: .1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.project-card__info h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.project-card__info p {
  font-size: .78rem;
  color: var(--muted);
}
.project-card.hidden { display: none; }

/* ── PARALLAX DIVIDER ── */
.parallax-divider {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-divider__bg {
  position: absolute;
  inset: -30% 0;
  background-image: url('imagens/parallax-bg.jpg');
  background-size: cover;
  background-position: center;
  will-change: transform;
  transition: transform .15s ease-out;
}
.parallax-divider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(14,14,16,.6) 0%,
    rgba(14,14,16,.3) 50%,
    rgba(14,14,16,.6) 100%);
}
.parallax-divider__content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.parallax-divider__label {
  color: var(--accent);
  letter-spacing: .15em;
}
.parallax-divider__title {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 1;
  letter-spacing: -.01em;
  text-shadow: 0 4px 40px rgba(0,0,0,.6);
}
.parallax-divider__title em {
  font-style: normal;
  color: var(--accent);
}

/* ── INSTAGRAM FEED ── */
.insta-section {
  padding: 100px 6%;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.insta-section::before {
  content: '';
  position: absolute;
  inset: -30% 0;
  background-image: url('imagens/insta-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  pointer-events: none;
  will-change: transform;
  transition: transform .15s ease-out;
  transform: translateY(var(--parallax-y, 0px)) translateX(var(--tilt-y, 0px));
}
.insta-section > * {
  position: relative;
  z-index: 1;
}
.insta-section__header {
  margin-bottom: 48px;
}
.insta-section__sub {
  color: var(--muted);
  font-size: .9rem;
  margin-top: 12px;
}
.insta-section__widget {
  border-radius: var(--r);
  overflow: hidden;
}
.insta-section__widget behold-widget {
  --behold-background-color: transparent;
  --behold-border-radius: 8px;
  --behold-gap: 12px;
}
.insta-section__cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* ── SERVICES ── */
.services {
  padding: 100px 6%;
  background: var(--bg2);
}
.services__header {
  margin-bottom: 56px;
}
.services__list {
  display: flex;
  flex-direction: column;
}
.service-row {
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: padding .3s;
}
.service-row:first-child { border-top: 1px solid var(--border); }
.service-row:hover { padding-left: 16px; }
.service-row:hover .service-row__icon { color: var(--accent); transform: translateX(4px); }
.service-row__num {
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--accent);
  letter-spacing: .1em;
}
.service-row__content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
  transition: color .2s;
}
.service-row:hover .service-row__content h3 { color: var(--accent); }
.service-row__content p {
  font-size: .85rem;
  color: var(--muted);
}
.service-row__icon {
  font-size: 1.2rem;
  color: var(--muted2);
  transition: color .2s, transform .2s;
}

/* ── ABOUT ── */
.about {
  padding: 100px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.about__photo-placeholder {
  height: 520px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .9rem;
  font-family: var(--mono);
}
.about__photo-tag {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(14,14,16,.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about__photo-tag .mono { font-size: .8rem; color: var(--accent); }
.about__photo-tag span:last-child { font-size: .72rem; color: var(--muted); }
.about__tools {
  margin-top: 20px;
}
.about__tools .small { color: var(--muted); margin-bottom: 10px; display: block; }
.tool-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tool-list span {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .03em;
}
.about__content .section-label { margin-bottom: 16px; }
.about__text {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 16px;
  line-height: 1.8;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  margin-top: 12px;
  transition: border-color .2s, color .2s, background .2s;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(212,255,0,.04);
}
.btn-outline span { transition: transform .2s; }
.btn-outline:hover span { transform: translateX(4px); }

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 100px 6%;
  background: var(--bg2);
}
.testimonials__header { margin-bottom: 56px; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px;
  transition: border-color .3s;
}
.testi-card:hover { border-color: rgba(212,255,0,.25); }
.testi-card__quote {
  font-family: var(--display);
  font-size: 5rem;
  color: var(--accent);
  line-height: .7;
  margin-bottom: 12px;
  opacity: .6;
}
.testi-card p {
  font-size: .92rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 28px;
  font-style: italic;
}
.testi-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-card__avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.testi-card__author strong { display: block; font-size: .88rem; }
.testi-card__author span  { font-size: .75rem; color: var(--muted); }

/* ── CONTACT ── */
.contact {
  padding: 100px 6%;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  line-height: 1;
  letter-spacing: -.01em;
  margin-bottom: 20px;
}
.contact__title em { font-style: normal; color: var(--accent); }
.contact__sub {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact__links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}
.contact__links a::before {
  content: '→';
  color: var(--accent);
  font-size: .85rem;
}
.contact__links a:hover { color: var(--accent); }

/* Floating-label form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.field {
  position: relative;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 18px 10px;
  color: var(--text);
  font-family: var(--font);
  font-size: .95rem;
  outline: none;
  transition: border-color .2s;
  appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: rgba(212,255,0,.4);
}
.field label {
  position: absolute;
  top: 50%; left: 18px;
  transform: translateY(-50%);
  font-size: .85rem;
  color: var(--muted);
  pointer-events: none;
  transition: .2s;
}
.field textarea ~ label { top: 20px; transform: none; }
.field input:not(:placeholder-shown) ~ label,
.field input:focus ~ label,
.field select:valid ~ label,
.field textarea:not(:placeholder-shown) ~ label,
.field textarea:focus ~ label {
  top: 8px;
  font-size: .68rem;
  color: var(--accent);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.field textarea { resize: vertical; min-height: 120px; }
.field select option { background: var(--bg2); }

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--r);
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .03em;
  transition: opacity .2s, transform .2s;
}
.btn-submit:hover { opacity: .88; transform: translateY(-2px); }
.btn-submit__icon { font-size: 1.1rem; }
.btn-submit.success {
  background: #22c55e;
  justify-content: center;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 36px 6%;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__logo {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: .05em;
}
.footer__copy { color: var(--muted); }
.footer__social { display: flex; gap: 24px; }
.footer__social a {
  color: var(--muted);
  text-decoration: none;
  font-size: .8rem;
  font-weight: 700;
  font-family: var(--mono);
  transition: color .2s;
}
.footer__social a:hover { color: var(--accent); }

/* ── MODAL ── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}
.modal.open { opacity: 1; pointer-events: all; }
.modal__bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.94);
}
.modal__body {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 960px;
}
.modal__close {
  position: absolute;
  top: -48px; right: 0;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: .85rem;
  transition: border-color .2s, color .2s;
}
.modal__close:hover { border-color: var(--accent); color: var(--accent); }
.modal__frame {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── PRELOADER ── */
.preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #0a0a0c;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px;
  text-align: center;
  overflow: hidden;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader__logo {
  font-family: var(--display);
  font-size: clamp(2.5rem, 8vw, 6rem);
  letter-spacing: .1em;
  animation: preloaderPulse 1.5s ease infinite;
}
@keyframes preloaderPulse {
  0%,100% { opacity: .4; } 50% { opacity: 1; }
}
.preloader__bar {
  width: 200px; height: 1px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  overflow: hidden;
}
.preloader__fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width .1s linear;
}
.preloader__num {
  font-size: .75rem;
  color: var(--muted);
  letter-spacing: .15em;
}

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--accent);
  z-index: 600;
  width: 0%;
  transition: width .1s linear;
  box-shadow: 0 0 8px var(--accent);
}

/* ── GRAIN ── */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 1000;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  animation: grain 0.5s steps(2) infinite;
}
@keyframes grain {
  0%   { transform: translate(0,0); }
  25%  { transform: translate(-2%,-1%); }
  50%  { transform: translate(1%,2%); }
  75%  { transform: translate(2%,-2%); }
  100% { transform: translate(-1%,1%); }
}

/* ── WHATSAPP BUTTON ── */
.whatsapp-btn {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 400;
  width: 54px; height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .3s, box-shadow .3s;
}
.whatsapp-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,.5);
}
.whatsapp-btn svg { width: 26px; height: 26px; color: #fff; }
.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(37,211,102,.3);
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0%,100% { transform: scale(1); opacity: .5; }
  50%      { transform: scale(1.15); opacity: 0; }
}

/* ── YOUTUBE SECTION ── */
.youtube-section {
  padding: 100px 6%;
  background: var(--bg2);
}
.youtube-section__header { margin-bottom: 48px; }
.youtube-section__sub {
  color: var(--muted);
  font-size: .9rem;
  margin-top: 12px;
}
.youtube-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.yt-card {
  border-radius: var(--r);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform .3s, border-color .3s;
}
.yt-card:hover { transform: translateY(-4px); border-color: rgba(212,255,0,.25); }
.yt-card__thumb {
  position: relative;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.yt-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.yt-card:hover .yt-card__thumb img { transform: scale(1.05); }
.yt-card__play {
  position: relative;
  z-index: 1;
  width: 52px; height: 52px;
  background: rgba(0,0,0,.6);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--accent);
  opacity: 0;
  transform: scale(.7);
  transition: .3s;
  backdrop-filter: blur(4px);
}
.yt-card:hover .yt-card__play { opacity: 1; transform: scale(1); }
.yt-card__badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--accent);
  color: #000;
  font-size: .65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .05em;
  text-transform: uppercase;
  z-index: 1;
}
.yt-card__duration {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(0,0,0,.75);
  color: #fff;
  font-size: .7rem;
  font-family: var(--mono);
  padding: 3px 7px;
  border-radius: 4px;
  z-index: 1;
}
.yt-card__info { padding: 14px 16px; }
.yt-card__info h4 { font-size: .9rem; font-weight: 700; margin-bottom: 4px; }
.yt-card__info span { font-size: .75rem; color: var(--muted); }
.youtube-section__cta { display: flex; justify-content: center; }

/* ── PROCESS ── */
.process {
  padding: 100px 6%;
}
.process__header { margin-bottom: 64px; }
.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}
.process-step__num {
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--accent);
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.process-step__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  width: 72px; height: 72px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s, background .3s;
}
.process-step:hover .process-step__icon {
  border-color: var(--accent);
  background: rgba(64,192,203,.08);
}
.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.process-step p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6;
}
.process-step__line {
  flex-shrink: 0;
  width: 60px; height: 1px;
  background: var(--border);
  margin-top: 52px;
  position: relative;
  overflow: hidden;
}
.process-step__line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--accent);
  transition: left .6s ease;
}
.process-step__line.visible::after { left: 0; }

/* ── PRICING ── */
.pricing {
  padding: 100px 6%;
  background: var(--bg2);
}
.pricing__header { margin-bottom: 56px; }
.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(64,192,203,.08);
  border: 1px solid rgba(64,192,203,.25);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .85rem;
  color: var(--text);
  margin-top: 20px;
}
.availability-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: availPulse 2s infinite;
}
@keyframes availPulse {
  0%,100% { opacity: 1; } 50% { opacity: .4; }
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  transition: border-color .3s, transform .3s;
}
.price-card:hover { transform: translateY(-6px); border-color: rgba(64,192,203,.3); }
.price-card.featured {
  border-color: var(--accent);
  background: rgba(64,192,203,.04);
  transform: scale(1.03);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.price-card__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: .7rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-card__tag {
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--accent);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.price-card__price {
  font-family: var(--display);
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.price-card__desc {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
  min-height: 52px;
}
.price-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.price-card__list li {
  font-size: .85rem;
  color: var(--text);
}
.price-card__list li.off { color: var(--muted2); }
.price-card .btn-primary,
.price-card .btn-outline {
  width: 100%;
  text-align: center;
  justify-content: center;
  border-radius: var(--r);
  padding: 13px 20px;
}

/* ── FAQ ── */
.faq {
  padding: 100px 6%;
}
.faq__header { margin-bottom: 56px; }
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-of-type { border-top: 1px solid var(--border); }
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  gap: 20px;
  transition: color .2s;
}
.faq-item__q:hover { color: var(--accent); }
.faq-item__icon {
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .3s;
  font-weight: 300;
  line-height: 1;
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-item.open .faq-item__a { max-height: 200px; padding-bottom: 20px; }
.faq-item__a p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:first-child { border-radius: var(--r) 0 0 0; }
  .stat-item:last-child  { border-radius: 0 0 var(--r) 0; }
  .stat-item:nth-child(2) { border-radius: 0 var(--r) 0 0; }
  .stat-item:nth-child(3) { border-radius: 0 0 0 var(--r); }
  .work__grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 240px; }
  .project-card { grid-column: span 3; }
  .project-card.large { grid-column: span 6; }
  .about { grid-template-columns: 1fr; gap: 48px; }
  .about__photo-placeholder { height: 340px; }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__inner { grid-template-columns: 1fr; gap: 56px; }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .hamburger { display: flex; }
  .hero__title { font-size: clamp(4rem, 14vw, 7rem); }
  .reel-trigger { display: none; }
  .work__header { grid-template-columns: 1fr; }
  .work__filters { justify-content: flex-start; }
  .work__grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .project-card, .project-card.large { grid-column: span 1; }
  .project-card__media { height: 200px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; }
}
