/* ============================================================
   NEVLON STUDIO — style.css
   Black & White theme with a subtle red gradient accent
   Fonts: Inter + Poppins
============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ════════════════════════════════════════════
   DESIGN TOKENS
════════════════════════════════════════════ */
:root {
  /* Accent — used sparingly for gradient touches only */
  --orange: #e50914;
  --orange-bright: #ff1f2d;
  --orange-deep: #8b070d;
  --orange-glow: rgba(229, 9, 20, 0.25);
  --orange-subtle: rgba(229, 9, 20, 0.08);
  --orange-border: rgba(229, 9, 20, 0.25);

  /* Background */
  --bg-0: #000000;

  /* Dark surface */
  --dark: #000000;
  --card-bg: rgba(255, 255, 255, 0.035);
  --card-border: rgba(255, 255, 255, 0.10);

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.62);
  --text-muted: rgba(255, 255, 255, 0.38);
  --white: #ffffff;

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-full: 999px;

  /* Transition */
  --t: 0.32s ease;

  /* Fonts */
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ════════════════════════════════════════════
   RESET
════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg-0);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Skip link for keyboard/screen-reader users */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--white);
  color: #000;
  padding: 12px 20px;
  border-radius: var(--r-md);
  z-index: 2000;
  font-weight: 700;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* Visible keyboard focus across the site */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--orange-bright);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ════════════════════════════════════════════
   UTILITIES
════════════════════════════════════════════ */
.orange-text {
  background: linear-gradient(90deg, var(--orange-deep), var(--orange-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ════════════════════════════════════════════
   SCROLL REVEAL (lightweight AOS)
════════════════════════════════════════════ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-aos][data-aos-delay="60"] { transition-delay: 60ms; }
[data-aos][data-aos-delay="80"] { transition-delay: 80ms; }
[data-aos][data-aos-delay="100"] { transition-delay: 100ms; }
[data-aos][data-aos-delay="120"] { transition-delay: 120ms; }
[data-aos][data-aos-delay="160"] { transition-delay: 160ms; }
[data-aos][data-aos-delay="180"] { transition-delay: 180ms; }
[data-aos][data-aos-delay="200"] { transition-delay: 200ms; }
[data-aos][data-aos-delay="240"] { transition-delay: 240ms; }
[data-aos][data-aos-delay="300"] { transition-delay: 300ms; }
[data-aos][data-aos-delay="360"] { transition-delay: 360ms; }

@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(90deg, var(--orange-deep), var(--orange-bright));
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: filter var(--t), box-shadow var(--t), transform var(--t);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  filter: brightness(1.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--r-full);
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: all var(--t);
}

.btn-ghost:hover {
  border-color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
}

/* ════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  min-height: 72px;
  background: transparent;
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background var(--t), backdrop-filter var(--t), border-color var(--t);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav-brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform var(--t);
}

.nav-brand:hover img {
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--r-full);
  transition: color var(--t), background var(--t);
  letter-spacing: 0.2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.09);
}

.nav-cta {
  background: linear-gradient(90deg, var(--orange-deep), var(--orange-bright));
  color: var(--white) !important;
  font-weight: 600;
  padding: 9px 20px;
  margin-left: 8px;
}

.nav-cta:hover {
  filter: brightness(1.12);
}

.nav-socials {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-socials a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-socials a:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: var(--bg-0);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4;
  filter: grayscale(100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--bg-0));
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-left {
  max-width: 700px;
  padding-top: 72px;
}

.hero-mini {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.01;
  letter-spacing: -1px;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.hero-gradient {
  background: linear-gradient(90deg, var(--orange-deep), var(--orange-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0.6;
}

/* Hero reveal animations */
.reveal-text {
  opacity: 0;
  transform: translateY(22px);
  animation: revealUp 0.75s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ════════════════════════════════════════════
   TRUSTED LOGOS
════════════════════════════════════════════ */
.trusted-section {
  position: relative;
  padding: 60px 0 70px;
  background: var(--bg-0);
  text-align: center;
  overflow: hidden;
}

.trusted-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgb(202, 202, 202);
  margin-bottom: 40px;
}

.logo-slider {
  position: relative;
  overflow: hidden;
}

.logo-slider::before,
.logo-slider::after {
  content: '';
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.logo-slider::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-0), transparent);
}

.logo-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-0), transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: logoScroll 24s linear infinite;
}

.logo-track img {
  width: 100px;
  height: auto;
  object-fit: contain;
  opacity: 1;
  filter: grayscale(100%);
  transition: opacity 0.35s, filter 0.35s, transform 0.35s;
}

.logo-track img:hover {
  transform: scale(1.1);
}

@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════ */
.about-section {
  position: relative;
  padding: 100px 0 110px;
  background: var(--bg-0);
  overflow: hidden;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-image-wrapper {
  position: relative;
  flex: 0 0 420px;
  height: 480px;
  border-radius: var(--r-xl);
  overflow: visible;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: transform 0.5s ease;
  filter: grayscale(100%);
}

.about-image-wrapper:hover .about-img {
  transform: scale(1.02);
}

.about-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
}

.about-para {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.about-tagline {
  font-size: 14px;
  font-weight: 600;
  font-style: italic;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.about-footer {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.about-rating {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.stars {
  color: #ffffff;
  font-size: 17px;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ════════════════════════════════════════════
   INDUSTRIES WE WORK WITH
════════════════════════════════════════════ */
.industries-section {
  position: relative;
  background-color: #060606;
  padding: 70px 40px 90px;
  overflow: hidden;
}

.industries-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1.5px);
  background-size: 14px 14px;
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 60% 40%, #000 40%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 90% at 60% 40%, #000 40%, transparent 75%);
  z-index: 0;
}

.industries-title {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.industries-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.industry-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 22px 26px;
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease, background 0.3s ease;
}

.industries-section.in-view .industry-card {
  opacity: 1;
  transform: translateY(0);
}

.industries-section.in-view .industry-card:nth-child(1) { transition-delay: 0.05s; }
.industries-section.in-view .industry-card:nth-child(2) { transition-delay: 0.05s; }
.industries-section.in-view .industry-card:nth-child(3) { transition-delay: 0.05s; }
.industries-section.in-view .industry-card:nth-child(4) { transition-delay: 0.05s; }
.industries-section.in-view .industry-card:nth-child(5) { transition-delay: 0.05s; }
.industries-section.in-view .industry-card:nth-child(6) { transition-delay: 0.05s; }

.industry-card:hover {
  border-color: rgba(255, 59, 59, 0.6);
  background: rgba(255, 59, 59, 0.06);
  transform: translateY(-3px);
}

.industry-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #ff3b3b;
  flex-shrink: 0;
}

.industry-icon svg {
  width: 100%;
  height: 100%;
}

.industry-label {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .industries-section { padding: 50px 18px 70px; }
  .industries-grid { grid-template-columns: 1fr; }
  .industries-title { font-size: 22px; }
}

/* ════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════ */
.services-section {
  position: relative;
  padding: 110px 0 120px;
  background: var(--bg-0);
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.service-card {
  position: relative;
  padding: 36px 32px;
  border-radius: var(--r-xl);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  overflow: hidden;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-bright);
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  transition: color var(--t);
}

.service-card:hover h3 {
  color: var(--orange-bright);
}

.service-card > p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 4px;
}

.service-card ul li {
  font-size: 12.5px;
  color: var(--text-secondary);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.section-desc.sectio {
  color: var(--white);
  margin-top: 8px;
}

.service-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-muted);
  font-size: 10px;
  top: 3px;
}

.service-card:hover ul li {
  color: rgba(255, 255, 255, 0.8);
}

.card-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  transition: color var(--t);
}

.card-link:hover {
  color: var(--orange-bright);
}

/* ════════════════════════════════════════════
   UGC SHOWCASE
════════════════════════════════════════════ */
.ugc-section {
  position: relative;
  background-color: #060606;
  overflow: hidden;
}

.ugc-header,
.ugc-grid {
  position: relative;
  z-index: 2;
  padding: 0 40px;
}

.ugc-header {
  padding-top: 80px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.ugc-section.in-view .ugc-header {
  opacity: 1;
  transform: translateY(0);
}

.ugc-badge {
  display: inline-block;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.ugc-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.35;
}

.ugc-title .highlight {
  color: #ff3b3b;
}

.ugc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.ugc-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.ugc-section.in-view .ugc-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.ugc-section.in-view .ugc-card:nth-child(1) { transition-delay: 0.05s; }
.ugc-section.in-view .ugc-card:nth-child(2) { transition-delay: 0.15s; }
.ugc-section.in-view .ugc-card:nth-child(3) { transition-delay: 0.25s; }
.ugc-section.in-view .ugc-card:nth-child(4) { transition-delay: 0.35s; }
.ugc-section.in-view .ugc-card:nth-child(5) { transition-delay: 0.45s; }
.ugc-section.in-view .ugc-card:nth-child(6) { transition-delay: 0.55s; }
.ugc-section.in-view .ugc-card:nth-child(7) { transition-delay: 0.65s; }
.ugc-section.in-view .ugc-card:nth-child(8) { transition-delay: 0.75s; }
.ugc-section.in-view .ugc-card:nth-child(9) { transition-delay: 0.85s; }

.ugc-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.play-overlay .play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
}

.play-overlay:hover .play-btn {
  transform: scale(1.08);
}

.play-overlay .play-btn::after {
  content: "";
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #ff3b3b;
  margin-left: 4px;
}

.ugc-card.playing .play-overlay {
  opacity: 0;
  pointer-events: none;
}

.ugc-caption {
  position: absolute;
  left: 10px;
  bottom: 34px;
  right: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ugc-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.time {
  color: #fff;
  font-size: 11px;
  opacity: 0.85;
}

.icons {
  display: flex;
  gap: 8px;
}

.icon {
  color: #fff;
  font-size: 13px;
  opacity: 0.9;
  cursor: pointer;
}

@media (max-width: 900px) {
  .ugc-grid { grid-template-columns: repeat(2, 1fr); }
  .ugc-title { font-size: 26px; }
}

@media (max-width: 560px) {
  .ugc-header,
  .ugc-grid { padding-left: 16px; padding-right: 16px; }
  .ugc-grid { grid-template-columns: 1fr; max-width: 320px; }
  .ugc-title { font-size: 22px; }
}

/* ════════════════════════════════════════════
   PORTFOLIO MARQUEE
════════════════════════════════════════════ */
.portfolio-section {
  padding: 100px 0 110px;
  background: var(--bg-0);
  overflow: hidden;
}

.portfolio-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
  padding: 0 24px;
}

.portfolio-header .section-desc {
  margin-bottom: 28px;
}

.marquee-outer {
  width: min(980px, 94vw);
  margin: 0 auto 20px;
  overflow: hidden;
  border-radius: var(--r-lg);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.marquee-outer:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
  animation: goLeft 30s linear infinite;
}

.marquee-track--reverse {
  animation: goRight 30s linear infinite;
}

@keyframes goLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes goRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .marquee-track--reverse {
    animation: none;
  }
}

.vcard {
  position: relative;
  flex-shrink: 0;
  width: 300px;
  height: 190px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vcard:hover {
  transform: scale(1.04);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.8);
}

.vcard video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vcard-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 18px 14px 12px;
  opacity: 0;
  transition: opacity 0.25s;
}

.vcard:hover .vcard-label {
  opacity: 1;
}

/* ════════════════════════════════════════════
   FEATURED WEBSITE PROJECTS
════════════════════════════════════════════ */
.nvlnCase-section {
  position: relative;
  background-color: #060606;
  padding: 70px 40px 90px;
  overflow: hidden;
}

.nvlnCase-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 45px;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.nvlnCase-section.js-ready .nvlnCase-header {
  opacity: 0;
  transform: translateY(25px);
}

.nvlnCase-section.in-view .nvlnCase-header {
  opacity: 1;
  transform: translateY(0);
}

.nvlnCase-badge {
  display: inline-block;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.nvlnCase-title {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
}

.nvlnCase-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.6;
}

.nvlnCase-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1200px;
  margin: 0 auto;
}

.nvlnCase-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease;
}

.nvlnCase-section.js-ready .nvlnCase-card {
  opacity: 0;
  transform: translateY(30px);
}

.nvlnCase-section.in-view .nvlnCase-card {
  opacity: 1;
  transform: translateY(0);
}

.nvlnCase-section.in-view .nvlnCase-card:nth-child(1) { transition-delay: 0.05s; }
.nvlnCase-section.in-view .nvlnCase-card:nth-child(2) { transition-delay: 0.15s; }
.nvlnCase-section.in-view .nvlnCase-card:nth-child(3) { transition-delay: 0.25s; }

.nvlnCase-card:hover {
  border-color: rgb(253, 253, 253);
}

.nvlnCase-imgWrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.nvlnCase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.05);
  transform: scale(1.02);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.nvlnCase-card:hover .nvlnCase-img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.08);
}

.nvlnCase-imgTitle {
  position: absolute;
  left: 16px;
  bottom: 14px;
  right: 16px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.nvlnCase-imgWrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent 55%);
  z-index: 1;
}

.nvlnCase-info {
  padding: 16px 18px 20px;
}

.nvlnCase-link {
  display: inline-block;
  color: #ff3b3b;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
}

.nvlnCase-link:hover {
  color: #ff6a6a;
}

.nvlnCase-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .nvlnCase-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .nvlnCase-section { padding: 50px 18px 70px; }
  .nvlnCase-grid { grid-template-columns: 1fr; }
  .nvlnCase-title { font-size: 22px; }
}

/* ════════════════════════════════════════════
   SCHEDULE
════════════════════════════════════════════ */
.schedule-section {
  position: relative;
  padding: 110px 0 120px;
  background: var(--bg-0);
  overflow: hidden;
  text-align: center;
}

.schedule-header {
  margin-bottom: 36px;
}

.schedule-header .section-title {
  margin-bottom: 16px;
}

.perks-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 18px;
  border-radius: var(--r-full);
}

.perk-icon {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 15px;
}

.calendly-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* ════════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
.faq-section {
  position: relative;
  padding: 110px 0 120px;
  background: var(--bg-0);
  overflow: hidden;
}

.faq-big-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(56px, 8vw, 84px);
  color: var(--white);
  margin-bottom: 48px;
  line-height: 1;
  letter-spacing: -2px;
  position: relative;
  z-index: 1;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.faq-item {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color var(--t);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-body);
  line-height: 1.4;
  transition: color var(--t);
}

.faq-question:hover {
  color: rgba(255, 255, 255, 0.9);
}

.faq-icon {
  font-size: 32px;
  font-weight: 300;
  color: var(--text-primary);
  flex-shrink: 0;
  transition: transform 0.4s ease;
  line-height: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(90deg, var(--orange-deep), var(--orange-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.7;
  padding: 0 24px;
  transition: max-height 0.45s ease, padding 0.45s ease;
}

.faq-item.active .faq-answer {
  max-height: 320px;
  padding: 0 24px 24px;
}

.faq-cta {
  text-align: center;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.faq-cta p {
  font-size: 16px;
  color: var(--text-secondary);
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  position: relative;
  background: var(--bg-0);
  color: var(--text-secondary);
  overflow: hidden;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  padding: 56px 60px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-brand {
  flex: 1 1 240px;
  max-width: 280px;
}

.footer-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  margin-bottom: 20px;
}

.founders-title {
  margin: 4px 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.social-icons {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.2s, background 0.2s;
}

.social-btn:hover {
  transform: scale(1.15);
  background: rgba(255, 255, 255, 0.16);
}

.footer-col {
  flex: 1 1 160px;
}

.footer-heading {
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  transition: color var(--t);
}

.footer-links li a:hover {
  color: var(--white);
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-contact .icon {
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--t);
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-cta-btn {
  display: inline-block;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--orange-deep), var(--orange-bright));
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--r-full);
  transition: filter var(--t);
}

.footer-cta-btn:hover {
  filter: brightness(1.12);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  font-size: 11px;
  color: rgb(255, 255, 255);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}


/* ════════════════════════════════════════════
   VIDEO SHOWCASE (9:16 CAROUSEL)
════════════════════════════════════════════ */
.vshow {
  --vshow-black: #060505;
  --vshow-black-2: #0d0a0a;
  --vshow-red: #ff2b3a;
  --vshow-red-dim: #7a0c14;
  --vshow-ivory: #f2ece9;
 
  position: relative;
  width: 100%;
  background: var(--vshow-black);
  padding: 7rem 1.5rem;
  overflow: hidden;
  isolation: isolate;
}
 
.vshow__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}
 
.vshow__glow--a {
  top: -120px;
  left: 8%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--vshow-red) 0%, transparent 70%);
  animation: vshowFloat 9s ease-in-out infinite;
}
 
.vshow__glow--b {
  bottom: -140px;
  right: 6%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--vshow-red-dim) 0%, transparent 70%);
  animation: vshowFloat 11s ease-in-out infinite reverse;
}
 
@keyframes vshowFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}
 
.vshow__grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1.5px);
  background-size: 16px 16px;
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 40%, #000 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 60% 70% at 50% 40%, #000 30%, transparent 80%);
}
 
.vshow__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
 
.vshow__heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  margin-bottom: 3.5rem;
  text-align: left;
}
 
.vshow__heading-text { max-width: 560px; }
 
.vshow__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--vshow-red);
  font-weight: 600;
}
 
.vshow__title {
  margin: 0 0 0.9rem;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--vshow-ivory);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
 
.vshow__subtitle {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(242, 236, 233, 0.55);
  line-height: 1.6;
  max-width: 420px;
}
 
.vshow__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
  padding-bottom: 4px;
}
 
.vshow__meta-item {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-display);
}
 
.vshow__meta-num {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--vshow-ivory);
  line-height: 1;
}
 
.vshow__meta-divider {
  font-size: 1.1rem;
  color: rgba(242, 236, 233, 0.3);
}
 
.vshow__meta-total {
  font-size: 1.1rem;
  color: rgba(242, 236, 233, 0.3);
}
 
.vshow__meta-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vshow-red);
}
 
.vshow__stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3rem);
  width: 100%;
}
 
.vshow__frame {
  position: relative;
  width: min(320px, 78vw);
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  background: var(--vshow-black-2);
  border: 1px solid rgba(248, 247, 247, 0.7);
  flex-shrink: 0;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
}
 
.vshow__frame-glow {
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, var(--vshow-red), transparent 40%, transparent 60%, var(--vshow-red));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0.55;
  pointer-events: none;
  z-index: 3;
}
 
.vshow__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.15, 1);
  will-change: transform;
}
 
.vshow__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  background: #000;
}
 
.vshow__slide.is-clone {
  pointer-events: none;
}
 
.vshow__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}
 
.vshow__playbtn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 68px;
  height: 68px;
  border: none;
  background: rgba(10, 6, 6, 0.55);
  backdrop-filter: blur(2px);
  color: var(--vshow-ivory);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.25s ease;
  z-index: 2;
}
 
.vshow__playbtn svg {
  width: 34px;
  height: 34px;
}
 
.vshow__playbtn:hover {
  background: rgba(255, 43, 58, 0.5);
  transform: scale(1.06);
}
 
.vshow__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
 
.vshow__slide.is-playing::before {
  opacity: 0;
}
 
.vshow__slide.is-playing .vshow__playbtn {
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
}
 
.vshow__nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 60, 60, 0.3);
  background: rgba(15, 8, 8, 0.6);
  color: var(--vshow-ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
 
.vshow__nav svg {
  width: 20px;
  height: 20px;
}
 
.vshow__nav:hover {
  background: rgba(255, 43, 58, 0.22);
  border-color: rgba(255, 60, 60, 0.6);
  box-shadow: 0 0 24px -4px rgba(255, 43, 58, 0.6);
}
 
.vshow__nav:active {
  transform: scale(0.92);
}
 
.vshow__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
 
.vshow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
}
 
.vshow__dot.is-active {
  background: var(--vshow-red);
  width: 18px;
  border-radius: 3px;
}
 
.vshow__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 3rem;
}
 
.vshow__tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(242, 236, 233, 0.7);
  padding: 8px 16px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}
 
.vshow__tag:hover {
  border-color: rgba(255, 43, 58, 0.5);
  color: var(--vshow-ivory);
  background: rgba(255, 43, 58, 0.08);
}
 
@media (max-width: 700px) {
  .vshow__heading-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .vshow__meta { align-items: flex-start; }
}
 
@media (max-width: 560px) {
  .vshow { padding: 4.5rem 1rem; }
  .vshow__stage { gap: 0.6rem; }
  .vshow__nav { width: 40px; height: 40px; }
  .vshow__nav svg { width: 16px; height: 16px; }
  .vshow__tags { gap: 8px; }
  .vshow__tag { font-size: 0.65rem; padding: 6px 12px; }
}
 
@media (prefers-reduced-motion: reduce) {
  .vshow__glow--a,
  .vshow__glow--b { animation: none; }
  .vshow__track { transition: none; }
  .vshow__playbtn,
  .vshow__nav,
  .vshow__dot { transition: none; }
}
 
/* ════════════════════════════════════════════
   RESPONSIVE — TABLET (≤1100px)
════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-container { gap: 48px; }
  .about-image-wrapper { flex: 0 0 340px; height: 400px; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
════════════════════════════════════════════ */
@media (max-width: 768px) {
  .navbar { padding: 12px 20px; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    max-width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 32px;
    gap: 4px;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 999;
  }

  .nav-links.open { right: 0; }

  .nav-link {
    font-size: 16px;
    padding: 12px 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 12px;
    border-radius: var(--r-full);
    padding: 12px 24px;
  }

  .nav-socials { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: clamp(50px, 14vw, 76px); }
  .hero-desc { font-size: 16px; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }

  .about-container { flex-direction: column; gap: 48px; }
  .about-image-wrapper { flex: none; width: 100%; height: 300px; }

  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .nvlnCase-grid { grid-template-columns: 1fr; }

  .faq-big-title { font-size: 60px; letter-spacing: -1px; }
  .faq-question { font-size: 14px; padding: 18px 16px; }
  .faq-icon { font-size: 26px; }

  .footer-main { padding: 40px 24px; flex-direction: column; }
  .footer-brand { max-width: 100%; }
  .footer-bottom { padding: 16px 24px; flex-direction: column; text-align: center; }

  .perks-row { flex-direction: column; align-items: flex-start; padding: 0 24px; }

  .vcard { width: 230px; height: 146px; }
  .marquee-outer { width: 94vw; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — SMALL (≤480px)
════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-title { font-size: 50px; }
  .ugc-grid { grid-template-columns: 1fr; }
}