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

:root {
  --bg:     #000000;
  --bg2:    #0d1117;
  --text:   #ffffff;
  --muted:  rgba(255,255,255,0.55);
  --border: rgba(255,255,255,0.1);
  --accent: #ffffff;
  --tr:     0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
}

.nav-logo {
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  transition: color var(--tr);
  flex-shrink: 0;
}
.nav-logo:hover { color: #fff; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.nav-link {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--tr);
  position: relative;
  padding-bottom: 2px;
}
.nav-link:hover,
.nav-link.active { color: #fff; }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 1px;
  background: #fff;
}

.btn-outline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 100px;
  color: #fff;
  transition: background var(--tr), border-color var(--tr);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--bg);
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transform: none;
    left: 0;
    z-index: 199;
  }
  .nav-links.open .nav-link { font-size: 1.1rem; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* Hero image — animated via JS */
.hero-img {
  position: absolute;
  top: -2%;
  left: 28%;
  width: 65%;
  height: 104%;
  object-fit: contain;
  object-position: center center;
  z-index: 1;
  transform-origin: 19% 13%;
  will-change: transform;
  mix-blend-mode: lighten;
}

/* Layer 1 — underwater background (behind fish) */
.hero-ocean {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 0%, rgba(15,70,110,0.7) 0%, transparent 70%),
    radial-gradient(ellipse 35% 45% at 52% 0%, rgba(60,140,190,0.3) 0%, transparent 55%),
    linear-gradient(to bottom, #021828 0%, #010e1a 45%, #000 100%);
}
.hero-ocean::before,
.hero-ocean::after {
  content: '';
  position: absolute;
  top: 0;
  background: linear-gradient(to bottom, rgba(80,170,230,0.09), transparent);
  filter: blur(20px);
  pointer-events: none;
}
.hero-ocean::before {
  left: 46%; width: 130px; height: 70%;
  transform-origin: top center;
  animation: ray1 7s ease-in-out infinite;
}
.hero-ocean::after {
  left: 57%; width: 65px; height: 60%;
  transform-origin: top center;
  animation: ray2 9s ease-in-out infinite;
}
@keyframes ray1 {
  0%, 100% { opacity: 0.7; transform: rotate(-10deg); }
  50%       { opacity: 1;   transform: rotate(-5deg); }
}
@keyframes ray2 {
  0%, 100% { opacity: 0.5; transform: rotate(8deg); }
  50%       { opacity: 0.9; transform: rotate(13deg); }
}

/* Layer 3 — transparent overlay (on top of fish) */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to top,   #000 0%, rgba(0,0,0,0.6) 28%, transparent 55%),
    linear-gradient(to right, #000 0%, rgba(0,0,0,0.8) 18%, transparent 48%),
    linear-gradient(to left,  rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 12%, transparent 28%);
}

/* ===== SOCIAL BALLS ===== */
.socials-float {
  position: absolute !important;
  right: 3.5% !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 175px !important;
  height: 430px !important;
  z-index: 100 !important;
}

.ball {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  background: radial-gradient(circle at 33% 28%,
    rgba(255,255,255,0.55) 0%,
    rgba(255,255,255,0.1) 30%,
    rgba(200,230,255,0.06) 60%,
    rgba(150,200,255,0.12) 100%);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.45),
    0 2px 6px rgba(0,0,0,0.25),
    inset 0 -8px 16px rgba(100,180,255,0.12),
    inset 0 2px 4px rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ball:hover {
  transform: scale(1.1) !important;
}

/* Main specular highlight */
.ball::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 16%;
  width: 38%;
  height: 20%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.2) 55%, transparent 100%);
  border-radius: 50%;
  transform: rotate(-30deg);
  pointer-events: none;
  z-index: 2;
}

/* Small bottom-right glint */
.ball::after {
  content: '';
  position: absolute;
  bottom: 16%;
  right: 16%;
  width: 16%;
  height: 9%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.35) 0%, transparent 100%);
  border-radius: 50%;
  pointer-events: none;
}

.ball svg {
  width: 44%;
  height: 44%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.35));
}

/* Scattered positions + individual sizes */
.ball-ig {
  width: 90px; height: 90px;
  top: 0px; left: 55px;
  border-color: rgba(220,60,100,0.5);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 2px 6px rgba(0,0,0,0.25), inset 0 -8px 16px rgba(220,60,100,0.1), inset 0 2px 4px rgba(255,255,255,0.6);
}
.ball-tt {
  width: 66px; height: 66px;
  top: 90px; left: 0px;
  border-color: rgba(255,255,255,0.45);
}
.ball-yt {
  width: 82px; height: 82px;
  top: 175px; left: 78px;
  border-color: rgba(255,50,50,0.5);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 2px 6px rgba(0,0,0,0.25), inset 0 -8px 16px rgba(255,50,50,0.1), inset 0 2px 4px rgba(255,255,255,0.6);
}
.ball-fb {
  width: 76px; height: 76px;
  top: 278px; left: 6px;
  border-color: rgba(24,119,242,0.5);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 2px 6px rgba(0,0,0,0.25), inset 0 -8px 16px rgba(24,119,242,0.1), inset 0 2px 4px rgba(255,255,255,0.6);
}
.ball-li {
  width: 60px; height: 60px;
  top: 365px; left: 92px;
  border-color: rgba(10,102,194,0.5);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 2px 6px rgba(0,0,0,0.25), inset 0 -8px 16px rgba(10,102,194,0.1), inset 0 2px 4px rgba(255,255,255,0.6);
}

/* ===== HOOK VISUAL ===== */
.hook-visual {
  position: absolute;
  top: 0;
  left: 31%;
  z-index: 10;
  opacity: 1;
  animation: hookSwing 4s ease-in-out infinite;
  transform-origin: top center;
}
.hook-visual svg {
  width: 60px;
  height: 38vh;
}

@keyframes hookSwing {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(4deg); }
}

/* ===== HERO TEXT ===== */
.hero-text {
  position: relative;
  z-index: 10;
  padding: 0 2.5rem 3.5rem;
  max-width: 860px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 0.92;
  margin-bottom: 1.5rem;
}

.hero-line1 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -1px;
  color: rgba(255,255,255,0.9);
}

.hero-line1b {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -1px;
  color: rgba(255,255,255,0.9);
}

.hero-line2 {
  font-size: clamp(5rem, 13vw, 11rem);
  font-weight: 900;
  letter-spacing: -4px;
  color: #fff;
  text-transform: lowercase;
  /* Distressed texture via text-shadow */
  text-shadow:
    2px 2px 0 rgba(255,255,255,0.04),
    -1px -1px 0 rgba(0,0,0,0.2);
  -webkit-text-stroke: 0px;
}

.hero-line3 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -1px;
  color: rgba(255,255,255,0.9);
}

.hero-sub {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.scroll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.7);
  transition: border-color var(--tr), color var(--tr);
  animation: bounce 2.5s ease-in-out infinite;
}
.scroll-btn:hover { border-color: #fff; color: #fff; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===== SECTIONS ===== */
.section { padding: 6rem 2.5rem; }
.container { max-width: 1100px; margin: 0 auto; }

.tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 2rem;
}

/* ===== VIDEOS ===== */
.videos-section { border-top: 1px solid var(--border); padding-bottom: 6rem; }

.videos-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}
.videos-header .section-title { margin-bottom: 0; }

.carousel-arrows { display: flex; gap: 0.75rem; }

.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: none;
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color var(--tr), color var(--tr), background var(--tr);
}
.carousel-btn:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.videos-track-wrap {
  overflow: hidden;
  padding: 0 2.5rem;
}

.videos-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.video-wrap {
  flex: 0 0 calc((100vw - 5rem) / 3.2);
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg2);
  border: 1px solid var(--border);
  position: relative;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .video-wrap { flex: 0 0 80vw; }
}

/* ===== UGC STRIP ===== */
.ugc-section {
  border-top: 1px solid var(--border);
  padding: 3.5rem 0;
  overflow: hidden;
}

.ugc-header {
  margin-bottom: 1.5rem;
}

.ugc-track-wrap {
  overflow: hidden;
  width: 100%;
}

.ugc-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: ugc-scroll 28s linear infinite;
}
.ugc-track:hover { animation-play-state: paused; }

@keyframes ugc-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ugc-item {
  flex: 0 0 185px;
  height: 330px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg2);
  border: 1px solid var(--border);
  position: relative;
}

.ugc-item iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
}

/* click-to-play thumbnail */
.ugc-thumb {
  cursor: pointer;
}
.ugc-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}
.ugc-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  transition: background 0.2s;
  border-radius: 14px;
}
.ugc-thumb:hover .ugc-play {
  background: rgba(0,0,0,0.45);
}
.ugc-play svg {
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.6));
  transition: transform 0.18s;
}
.ugc-thumb:hover .ugc-play svg {
  transform: scale(1.1);
}
/* once clicked, iframe takes over */
.ugc-item.playing iframe {
  pointer-events: auto;
}

.ugc-ph {
  background: linear-gradient(160deg, #111827 0%, #0a0f1a 100%);
}

/* ===== AI TOOLS ===== */
.ai-tools-section { border-top: 1px solid var(--border); background: var(--bg2); }

.ai-tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 768px) { .ai-tools-grid { grid-template-columns: 1fr; gap: 3rem; } }

.ai-tools-intro {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.ai-claims {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.ai-claims p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}
.ai-claims strong {
  color: #fff;
  font-weight: 700;
}

.ai-pills-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.ai-pill-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  transition: background var(--tr);
}
.ai-pill-item:last-child { border-bottom: none; }
.ai-pill-item:hover { background: rgba(255,255,255,0.04); }

.ai-pill-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}
.ai-pill-desc {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: right;
}

.ai-video-wrap {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #060d14;
}
.ai-video-wrap video,
.ai-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.ai-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 50% 30%, rgba(30,80,140,0.4) 0%, transparent 70%);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ===== ABOUT ===== */
.about-section { background: var(--bg2); border-top: 1px solid var(--border); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.about-right p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.stat-n {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -1px;
}
.stat span { font-size: 1.5rem; font-weight: 700; }
.stat p { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.2rem; }

/* ===== SERVICES ===== */
.services-section { border-top: 1px solid var(--border); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 1rem;
}
@media (max-width: 700px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--tr);
}
.service-card:nth-child(even) { border-right: none; }
.service-card:nth-child(3),
.service-card:nth-child(4) { border-bottom: none; }
.service-card:hover { background: rgba(255,255,255,0.03); }

.service-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.25);
  display: block;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== SCIENCE OF HOOKS ===== */
.science-section { background: var(--bg2); border-top: 1px solid var(--border); }

.science-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 1rem;
}
@media (max-width: 700px) { .science-grid { grid-template-columns: 1fr; } }

.science-card {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--tr);
}
.science-card:nth-child(even) { border-right: none; }
.science-card:nth-child(3),
.science-card:nth-child(4) { border-bottom: none; }
.science-card:hover { background: rgba(255,255,255,0.03); }

.science-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.25);
  display: block;
  margin-bottom: 1rem;
}
.science-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.75rem; }
.science-card p  { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

/* ===== AI AUTOMATISATION ===== */
.automation-section { border-top: 1px solid var(--border); }

.automation-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 768px) { .automation-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.automation-left p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.auto-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}
.pill {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: rgba(255,255,255,0.6);
}

.automation-right {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.auto-n {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -2px;
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.auto-stat p { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* ===== STATIC ADS ===== */
.static-ads-section { background: var(--bg2); border-top: 1px solid var(--border); }

.static-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
@media (max-width: 900px) { .static-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .static-grid { grid-template-columns: 1fr; } }

.static-card {
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}
.static-card:hover { transform: scale(1.02); }
.static-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== WORK ===== */
.work-section { background: var(--bg2); border-top: 1px solid var(--border); }

.work-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}
.work-header .section-title { margin-bottom: 0; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 768px) { .work-grid { grid-template-columns: 1fr; } }

.work-card { cursor: pointer; }
.work-card:hover .work-thumb { transform: scale(1.02); }

.work-thumb {
  aspect-ratio: 9/14;
  border-radius: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.wt-1 { background: linear-gradient(160deg, #1a3040 0%, #0d1f2d 100%); }
.wt-2 { background: linear-gradient(160deg, #2a1a30 0%, #1a0d20 100%); }
.wt-3 { background: linear-gradient(160deg, #1a2a10 0%, #0d1a0a 100%); }

.work-platform {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  color: rgba(255,255,255,0.8);
}

.play-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--tr);
  position: relative; z-index: 1;
}
.play-btn svg { margin-left: 2px; }
.play-btn:hover { background: rgba(255,255,255,0.25); }

.work-niche  { font-size: 0.72rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.3rem; }
.work-title  { font-size: 0.92rem; font-weight: 600; margin-bottom: 0.5rem; line-height: 1.4; }
.work-result { font-size: 0.75rem; color: rgba(255,255,255,0.45); }

/* ===== CONTACT ===== */
.contact-section { border-top: 1px solid var(--border); }

.contact-inner { max-width: 680px; }

.contact-sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: -1rem;
  margin-bottom: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.85rem 1.1rem;
  color: #fff;
  font-family: inherit;
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--tr);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: rgba(255,255,255,0.4); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.25); }

.btn-submit {
  background: #fff;
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 0.9rem 2rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: background var(--tr), transform var(--tr);
  align-self: flex-start;
}
.btn-submit:hover { background: #e8e8e8; transform: translateY(-1px); }

/* ===== FOOTER ===== */
.footer {
  border-top: none;
  padding: 4rem 2.5rem;
  background: url('footer.jpg') center 30% / cover no-repeat;
  position: relative;
  min-height: 160px;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  pointer-events: none;
}
.footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.footer-socials {
  display: flex;
  gap: 1.25rem;
}
.footer-socials a {
  color: rgba(255,255,255,0.4);
  transition: color var(--tr);
  display: flex;
}
.footer-socials a:hover { color: #fff; }
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.25s ease;
  padding: 2rem;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay.visible { opacity: 1; }
.lightbox-overlay img {
  max-width: min(90vw, 520px);
  max-height: 90vh;
  border-radius: 12px;
  object-fit: contain;
  cursor: default;
  transform: scale(0.92);
  transition: transform 0.25s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox-overlay.visible img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  background: none;
  border: none;
  padding: 0.2rem 0.5rem;
}
.lightbox-close:hover { color: #fff; }
.static-card { cursor: zoom-in; }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== LANGUAGE SWITCH ===== */
.lang-btn {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 0.28rem 0.65rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.6);
  background: transparent;
  margin-left: 0.4rem;
  flex-shrink: 0;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.lang-btn:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.07);
}

@media (max-width: 900px) {
  .socials-float { display: none !important; }
}
