/* ─────────────────────────────────────────────────────────────
   ONE MEDIA PRODUCTIONS — main.css
   Monochromatic Black / Charcoal / White Design System
   ───────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ─── CSS Variables ─── */
:root {
  --bg-base: #080808;
  --bg-surface: #111111;
  --bg-card: #161616;
  --bg-hover: #1e1e1e;
  --border: rgba(255, 255, 255, 0.07);
  --border-light: rgba(255, 255, 255, 0.13);

  --white: #ffffff;
  --off-white: #e8e8e8;
  --grey-light: #999999;
  --grey-mid: #555555;
  --grey-dark: #2a2a2a;
  --charcoal: #1a1a1a;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.8);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Film grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  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");
  background-size: 180px 180px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
  background: var(--grey-dark);
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--grey-mid);
}

/* ─── Typography ─── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  color: var(--grey-light);
}

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

/* ─── Utility ─── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--grey-mid);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--grey-light);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 60px;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  backdrop-filter: blur(0px);
}

.navbar.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  padding: 16px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-logo span {
  color: var(--grey-mid);
  font-weight: 300;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--grey-light);
  transition: color var(--transition-fast);
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  border: 1px solid var(--grey-dark);
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  color: var(--off-white) !important;
  transition: var(--transition) !important;
}

.nav-cta:hover {
  background: var(--white) !important;
  color: var(--bg-base) !important;
  border-color: var(--white) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  padding-top: 80px;
  background: var(--bg-base);
}

/* Animated dark gradient background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(40, 40, 40, 0.4) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 60%, rgba(25, 25, 25, 0.6) 0%, transparent 60%),
    var(--bg-base);
  animation: heroPulse 12s ease-in-out infinite alternate;
}

@keyframes heroPulse {
  0% {
    opacity: 0.8;
  }

  100% {
    opacity: 1;
  }
}

/* Vignette */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

/* Decorative lines */
.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-lines::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -10%;
  width: 1px;
  height: 120%;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.04) 40%, transparent);
}

.hero-lines::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -5%;
  width: 110%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.04) 50%, transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--grey-mid);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}

.hero-title .line-2 {
  display: block;
  color: var(--grey-mid);
  font-weight: 200;
  letter-spacing: -0.02em;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--grey-light);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
  min-height: 2.4em;
}

.hero-tagline .cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--white);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.9s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  background: var(--white);
  color: var(--bg-base);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 50px;
  border: 1px solid var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  background: transparent;
  color: var(--white);
}

.btn-primary svg {
  transition: transform var(--transition-fast);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  background: transparent;
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 50px;
  border: 1px solid var(--grey-dark);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--grey-light);
  color: var(--white);
}

/* Hero stats */
.hero-stats {
  position: absolute;
  bottom: 60px;
  left: 40px;
  right: 40px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  animation: fadeUp 0.9s ease 1.1s forwards;
}

.hero-stats-items {
  display: flex;
  gap: 48px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.hero-stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--grey-mid);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--grey-dark), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.5;
  }

  50% {
    transform: scaleY(0.6);
    opacity: 1;
  }
}

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

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


/* ═══════════════════════════════════════════════════════════
   SECTION SPACING
   ═══════════════════════════════════════════════════════════ */
section:not(.hero) {
  padding: 120px 0;
}

/* Divider */
.section-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════
   PROJECTS SHOWCASE
   ═══════════════════════════════════════════════════════════ */
.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 20px;
}

.projects-header-left {
  flex: 1;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-light);
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--grey-dark);
  padding-bottom: 2px;
  transition: var(--transition-fast);
  white-space: nowrap;
  margin-bottom: 16px;
}

.view-all-link:hover {
  color: var(--white);
  border-color: var(--grey-light);
}

.view-all-link svg {
  transition: transform var(--transition-fast);
}

.view-all-link:hover svg {
  transform: translateX(4px);
}

/* Filter tabs */
.project-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid var(--grey-dark);
  border-radius: 40px;
  color: var(--grey-light);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--grey-mid);
  color: var(--off-white);
}

.filter-btn.active {
  background: var(--white);
  border-color: var(--white);
  color: var(--bg-base);
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  cursor: pointer;
  border: 1px solid var(--border);
}

/* Grid layout variations */
.project-card:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
}

.project-card:nth-child(2) {
  grid-column: span 5;
}

.project-card:nth-child(3) {
  grid-column: span 5;
}

.project-card:nth-child(4) {
  grid-column: span 4;
}

.project-card:nth-child(5) {
  grid-column: span 4;
}

.project-card:nth-child(6) {
  grid-column: span 4;
}

.project-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) brightness(0.85);
  transition: filter 0.5s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card:hover .project-thumb {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.04);
}

/* Overlay */
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
  opacity: 0.6;
  transition: opacity var(--transition);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

/* Project info */
.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  transform: translateY(10px);
  transition: transform var(--transition);
}

.project-card:hover .project-info {
  transform: translateY(0);
}

.project-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 8px;
}

.project-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0;
}

.project-card:nth-child(1) .project-title {
  font-size: 1.5rem;
}

.project-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
}

.project-card:hover .project-arrow {
  opacity: 1;
  transform: scale(1);
}

/* Greyscale badge */
.project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(8, 8, 8, 0.35);
  transition: opacity var(--transition);
  pointer-events: none;
}

.project-card:hover::before {
  opacity: 0;
}


/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.testimonials {
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: -40px;
  right: 80px;
  font-family: var(--font-heading);
  font-size: 28rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.015);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
}

.star {
  width: 14px;
  height: 14px;
  background: var(--grey-mid);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--off-white);
  font-weight: 300;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grey-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  border: 1px solid var(--border-light);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-heading);
}

.author-role {
  font-size: 12px;
  color: var(--grey-mid);
  letter-spacing: 0.03em;
}

/* Featured testimonial */
.testimonial-card.featured {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  padding: 44px;
}

.testimonial-card.featured .testimonial-quote {
  font-size: 1.15rem;
}

.featured-divider {
  width: 1px;
  height: 120px;
  background: var(--border);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.faq-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 120px;
}

.faq-sidebar .section-subtitle {
  margin-bottom: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-top: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  gap: 24px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--off-white);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--grey-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-icon svg {
  transition: transform var(--transition);
  color: var(--grey-light);
}

.faq-item.open .faq-icon {
  border-color: var(--grey-mid);
  background: var(--grey-dark);
}

.faq-item.open .faq-icon svg {
  transform: rotate(45deg);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.45s ease;
  padding: 0;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 28px;
}

.faq-answer p {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--grey-light);
}


/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand-logo {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--grey-mid);
  margin-bottom: 28px;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--grey-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-mid);
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition-fast);
}

.social-link:hover {
  border-color: var(--grey-light);
  color: var(--white);
  background: var(--bg-hover);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-size: 14px;
  color: var(--grey-mid);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.footer-copyright {
  font-size: 13px;
  color: var(--grey-mid);
}

.footer-badge {
  font-size: 13px;
  color: var(--grey-mid);
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container {
    padding: 0 28px;
  }

  .projects-grid {
    grid-auto-rows: 240px;
  }

  .project-card:nth-child(1) {
    grid-column: span 12;
    grid-row: span 1;
  }

  .project-card:nth-child(2),
  .project-card:nth-child(3) {
    grid-column: span 6;
  }

  .project-card:nth-child(4),
  .project-card:nth-child(5),
  .project-card:nth-child(6) {
    grid-column: span 4;
  }

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

  .testimonial-card.featured {
    grid-column: span 2;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-sidebar {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

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

  section:not(.hero) {
    padding: 80px 0;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .projects-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .project-card:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

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

  .testimonial-card.featured {
    flex-direction: column;
    grid-column: span 1;
  }

  .featured-divider {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats-items {
    gap: 24px;
  }

  .hero-scroll {
    display: none;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    bottom: 40px;
  }
}

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

  .hero-title {
    letter-spacing: -0.03em;
  }

  .project-filters {
    gap: 6px;
  }

  .filter-btn {
    padding: 7px 14px;
    font-size: 11px;
  }
}

/* ═══════════════════════════════════════════════════════════
   GLOWING CURSOR TRAIL
   ═══════════════════════════════════════════════════════════ */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

/* Hover state for interactive elements */
.cursor-glow.cursor-hover {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  mix-blend-mode: normal;
}