/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* PORTFOLIO STYLESHEET - MULTICONN AGENCY */
/* Premium Dark Luxury Theme */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ─── RESET & ROOT VARIABLES ────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red:       #e53e3e;
  --red-dim:   #9b1c1c;
  --red-glow:  rgba(229, 62, 62, 0.18);
  --bg:        #080808;
  --surface:   #111111;
  --border:    rgba(255, 255, 255, 0.07);
  --muted:     #6b7280;
  --white:     #f5f5f5;
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

/* ─── GRAIN OVERLAY ────────────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
}

/* ─── SCROLLBAR ────────────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: #9b1c1c;
  border-radius: 2px;
}

/* ─── CUSTOM CURSOR ────────────────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
}

.cursor-ring {
  position: fixed;
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(229, 62, 62, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s;
}

body:has(a:hover) .cursor,
body:has(button:hover) .cursor {
  width: 6px;
  height: 6px;
  background: #fff;
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 52px;
  height: 52px;
  border-color: rgba(255, 255, 255, 0.4);
}

/* ─── TOUCH DEVICE OPTIMIZATION ────────────────────────────────── */
@media (hover: none) and (pointer: coarse) {
  .cursor,
  .cursor-ring {
    display: none !important;
  }
  body {
    cursor: auto;
  }
}

 .logo {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: -0.04em;
      color: var(--white);
      text-decoration: none;
    }
    .logo span { color: var(--red); }
    .logo-img {
      height: 40px; /* Adjust based on your navbar height */
      width: auto;
      display: block;
    }

/* ─── TYPOGRAPHY ────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(1.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

/* ─── BUTTONS ────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.35s;
  z-index: -1;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 1.5px solid var(--red);
  box-shadow: 0 0 30px rgba(229, 62, 62, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(229, 62, 62, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: #d63030;
  border-color: #d63030;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(229, 62, 62, 0.1);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.05rem;
  min-height: 52px;
}

/* ─── NAVBAR ────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 16px 48px 12px 48px;
  z-index: 500;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(8, 8, 8, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
  z-index: 501;
}

.logo:hover {
  color: var(--red);
}

.logo span {
  color: var(--red);
}

/* ─── HAMBURGER MENU ────────────────────────────────────────────────────── */
.nav-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 502;
  gap: 6px;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.nav-toggle:checked ~ .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle:checked ~ .hamburger span:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked ~ .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  font-weight: 500;
  padding: 8px 12px;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* ─── HERO SECTION ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 120px 48px 100px;
  overflow: hidden;
  margin-top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: rgba(229, 62, 62, 0.1);
  border: 1px solid rgba(229, 62, 62, 0.3);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 30px;
  animation: fadeInDown 0.8s ease both;
}

.hero-title .accent {
  color: #e53e3e;
}

.hero-title {
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.1s both;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--muted);
  margin-bottom: 30px;
  font-weight: 300;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease 0.25s both;
}

.service-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(229, 62, 62, 0.2);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-pill:hover {
  background: rgba(229, 62, 62, 0.15);
  border-color: rgba(229, 62, 62, 0.5);
  transform: translateY(-3px);
}

@media (hover: none) and (pointer: coarse) {
  .service-pill:hover {
    transform: none;
  }
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease 0.3s both;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 40px;
  position: relative;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 10px;
}

@media (max-width: 640px) {
  .stat-divider {
    display: none;
  }
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--red);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
  margin-bottom: 40px;
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.85rem;
  animation: bounce 2s infinite;
  animation-delay: 1s;
}

.hero-scroll svg {
  color: var(--red);
  width: 20px;
  height: 20px;
  animation: slideDown 2s infinite;
}

@keyframes slideDown {
  0%, 20% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(229, 62, 62, 0.12) 0%, transparent 70%);
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── SECTIONS ────────────────────────────────────────────────────────── */
.section {
  position: relative;
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 60px;
  text-align: center;
  animation: fadeInUp 0.6s ease;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1rem;
  color: var(--muted);
}

/* ─── BRANDING CAROUSEL ────────────────────────────────────────────── */
.branding-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.carousel-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.carousel-track {
  display: flex;
  gap: 12px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: grab;
}

.carousel-track.grabbing {
  cursor: grabbing;
}

/* Desktop: 4 slides visible */
@media (min-width: 769px) {
  .carousel-slide {
    flex: 0 0 calc(25% - 8px);
    aspect-ratio: 16 / 9;
  }
  
  /* Branding: Keep portrait 9:16 */
  #brandingCarousel .carousel-slide {
    aspect-ratio: 9 / 16;
  }
}

/* Mobile: 2 slides visible */
@media (max-width: 768px) {
  .carousel-slide {
    flex: 0 0 calc(50% - 8px);
    aspect-ratio: 16 / 9;
  }
  
  /* Branding: Keep portrait 9:16 */
  #brandingCarousel .carousel-slide {
    aspect-ratio: 9 / 16;
  }
}

/* Meta Ads Carousels: 16:9 Aspect Ratio (Landscape) */
#adsCarousel .carousel-slide,
#campaignCarousel .carousel-slide {
  aspect-ratio: 16 / 9;
}

/* Product Carousel: 1:1 Aspect Ratio (Square) */
#productCarousel .carousel-slide {
  aspect-ratio: 1 / 1;
}

.carousel-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 8, 0.5);
  position: relative;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.carousel-img:hover {
  transform: scale(1.02);
}

.carousel-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--white);
  padding: 24px 20px 16px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  z-index: 2;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(229, 62, 62, 0.1);
  border: 1.5px solid rgba(229, 62, 62, 0.3);
  color: var(--red);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 10;
}

.carousel-arrow:hover {
  background: rgba(229, 62, 62, 0.2);
  border-color: var(--red);
  transform: scale(1.05);
}

.carousel-arrow:active {
  transform: scale(0.95);
}

.carousel-prev {
  order: -1;
}

/* ─── CAROUSEL REEL CARDS (Advertisement Section) ─── */
.carousel-slide .reel-card {
  padding-bottom: 0 !important;
  width: 100%;
  height: 100%;
  flex: 1;
}

.carousel-slide .reel-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-slide .reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.8) 0%, transparent 40%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 16px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.carousel-slide .reel-tag {
  display: inline-block;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(229, 62, 62, 0.2);
  border: 1px solid rgba(229, 62, 62, 0.4);
  padding: 6px 12px;
  border-radius: 6px;
}

/* ─── ADVERTISEMENT CAROUSEL (Video Support) ─── */
#adCarousel .carousel-slide {
  position: relative;
  aspect-ratio: auto;
}

#adCarousel .carousel-slide[data-orientation="landscape"] {
  flex: 0 0 calc(25% - 8px);
  aspect-ratio: 9 / 16;
}

#adCarousel .carousel-slide[data-orientation="portrait"] {
  flex: 0 0 calc(15% - 8px);
  aspect-ratio: 9 / 16;
}

@media (max-width: 1200px) {
  #adCarousel .carousel-slide[data-orientation="landscape"] {
    flex: 0 0 calc(33.33% - 8px);
    aspect-ratio: 9 / 16;
  }

  #adCarousel .carousel-slide[data-orientation="portrait"] {
    flex: 0 0 calc(20% - 8px);
    aspect-ratio: 9 / 16;
  }
}

@media (max-width: 768px) {
  #adCarousel .carousel-slide[data-orientation="landscape"] {
    flex: 0 0 calc(70% - 8px);
    aspect-ratio: 9 / 16;
  }

  #adCarousel .carousel-slide[data-orientation="portrait"] {
    flex: 0 0 calc(50% - 8px);
    aspect-ratio: 9 / 16;
  }
}

#adCarousel .carousel-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

#adCarousel .carousel-slide .reel-overlay {
  z-index: 3;
}

/* ─── FULLSCREEN MODAL ────────────────────────────────── */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex;
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: var(--white);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10000;
}

.modal-close:hover {
  color: var(--red);
}

.modal-image {
  max-width: 90%;
  max-height: 80%;
  object-fit: contain;
  animation: zoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-label {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ─── TABS ────────────────────────────────────────────────────────────── */
.tabs-wrapper {
  margin-bottom: 50px;
}

.tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

.tab-btn {
  padding: 12px 24px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border-bottom: 2px solid transparent;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.tab-btn:hover {
  color: var(--white);
  border-bottom-color: rgba(229, 62, 62, 0.3);
}

.tab-btn.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ─── FILTER TAGS ────────────────────────────────────────────────────────── */
.filter-tags {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
  padding-bottom: 20px;
}

.filter-btn {
  padding: 10px 20px;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.filter-btn:hover {
  border-color: var(--red);
  color: var(--white);
}

.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ─── GRIDS ────────────────────────────────────────────────────────────── */
.grid {
  display: grid;
  gap: 20px;
  animation: fadeIn 0.4s ease;
}

.grid-6 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.grid-5 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

@media (max-width: 1024px) {
  .grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-6,
  .grid-5,
  .grid-4,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ─── CARD IMAGE ────────────────────────────────────────────────────────── */
.card-image {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  background: #0a0a0a;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  cursor: pointer;
}

.card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-image.hover-zoom:hover {
  border-color: rgba(229, 62, 62, 0.3);
}

.card-image.hover-zoom:hover img {
  transform: scale(1.08);
}

@media (hover: none) and (pointer: coarse) {
  .card-image.hover-zoom:hover img {
    transform: scale(1.02);
  }
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red) 0%, rgba(155, 28, 28, 0.45) 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

@media (hover: none) and (pointer: coarse) {
  .card-overlay {
    opacity: 1;
    background: linear-gradient(135deg, var(--red) 0%, rgba(155, 28, 28, 0.55) 100%);
  }
}

.card-image:hover .card-overlay {
  opacity: 1;
}

.card-overlay h3 {
  color: var(--white);
  font-size: 1rem;
  text-align: right;
  line-height: 1.3;
}

/* ─── REELS GRID ────────────────────────────────────────────────────────── */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  animation: fadeIn 0.4s ease;
  transition: all 0.3s ease;
}

/* Tablet: 2-column grid */
@media (max-width: 1024px) {
  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* Mobile: Horizontal scroll */
@media (max-width: 768px) {
  .reels-grid {
    display: flex;
    grid-template-columns: unset;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;       /* Firefox */
  }
  
  .reels-grid::-webkit-scrollbar {
    display: none;  /* Chrome, Safari, Opera */
  }
}

/* Small mobile: Adjust sizing */
@media (max-width: 640px) {
  .reels-grid {
    gap: 8px;
    padding-bottom: 4px;
  }
}

/* ─── REEL CARD ────────────────────────────────────────────────────────── */
.reel-card {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #0a0a0a;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.4s ease, opacity 0.3s ease;
  cursor: pointer;
}

/* Hidden state for filtered items */
.reel-card.hidden {
  display: none;
}

/* Media fill card */
.reel-card video,
.reel-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-card video {
  transition: transform 0.4s ease;
}

.reel-card:hover {
  border-color: rgba(229, 62, 62, 0.3);
}

.reel-card:hover video {
  transform: scale(1.05);
}

@media (hover: none) and (pointer: coarse) {
  .reel-card:hover video {
    transform: scale(1.01);
  }
}

/* Mobile: Horizontal scroll card sizing */
@media (max-width: 768px) {
  .reel-card {
    flex: 0 0 160px;
    min-width: 160px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

/* Small mobile: Slightly smaller cards */
@media (max-width: 640px) {
  .reel-card {
    flex: 0 0 140px;
    min-width: 140px;
  }
}

.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.8) 0%, transparent 40%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.reel-card:hover .reel-overlay {
  opacity: 1;
}

.reel-text {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.reel-category {
  display: inline-block;
  background: rgba(229, 62, 62, 0.2);
  color: var(--red);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ─── VIDEO LAZY LOADING: THUMBNAIL & PLACEHOLDERS ────────────────────── */
.video-thumbnail {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(229, 62, 62, 0.15) 0%, rgba(17, 17, 17, 0.8) 100%);
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 10;
  pointer-events: none;
}

.video-thumbnail svg {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  stroke-width: 1.5;
  animation: fadeInScale 0.4s ease;
}

.video-thumbnail .loading-text {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

/* Mobile click-to-play overlay */
.mobile-play-overlay {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 8, 0.5);
  backdrop-filter: blur(2px);
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
}

.mobile-play-overlay:hover {
  background: rgba(8, 8, 8, 0.7);
}

.mobile-play-overlay svg {
  width: 64px;
  height: 64px;
  opacity: 0.9;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.mobile-play-overlay:hover svg {
  opacity: 1;
  transform: scale(1.1);
}

/* Show mobile overlay only on touch devices */
@media (hover: none) and (pointer: coarse) {
  .mobile-play-overlay {
    display: flex;
  }
}

/* ─── ADS SECTION ────────────────────────────────────────────────────────── */
.ads-section {
  background: linear-gradient(180deg, rgba(229, 62, 62, 0.04) 0%, rgba(8, 8, 8, 0) 100%);
}

/* ─── METRIC GRID ────────────────────────────────────────────────────────── */
.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  animation: fadeIn 0.4s ease;
}

@media (max-width: 1024px) {
  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .metric-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── METRIC CARD ────────────────────────────────────────────────────────── */
.metric-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.metric-card:hover {
  border-color: rgba(229, 62, 62, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px var(--red-glow);
}

@media (hover: none) and (pointer: coarse) {
  .metric-card:hover {
    transform: none;
  }
}

.metric-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.metric-card:hover img {
  transform: scale(1.05);
}

@media (hover: none) and (pointer: coarse) {
  .metric-card:hover img {
    transform: scale(1.02);
  }
}

.metric-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.metric-big {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.metric-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.metric-desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 8px;
}

/* ─── CTA SECTION ────────────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 120px 48px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(229, 62, 62, 0.05) 0%, transparent 100%);
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-container h2 {
  margin-bottom: 16px;
  animation: fadeInUp 0.6s ease;
  background: linear-gradient(135deg, var(--white) 0%, rgba(245, 245, 245, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-container p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.cta-container .btn {
  animation: fadeInUp 0.6s ease 0.2s both;
}

.cta-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(229, 62, 62, 0.12) 0%, transparent 70%);
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

/* ─── FOOTER ────────────────────────────────────────────────────────────── */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  background: rgba(8, 8, 8, 0.5);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-container p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--white);
}

/* ─── RESPONSIVE DESIGN ────────────────────────────────────────── */

/* Tablet & Medium Devices (768px and below) */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 15px;
  }

  .navbar {
    padding: 14px 24px 10px 24px;
  }

  .navbar-container {
    gap: 20px;
    justify-content: flex-start;
  }

  .logo {
    flex-shrink: 0;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    left: 0;
    top: 60px;
    width: 100%;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, visibility 0.3s ease;
    align-items: stretch;
    z-index: 99;
    pointer-events: none;
    visibility: hidden;
  }

  .nav-toggle:checked ~ .nav-links {
    max-height: 400px;
    pointer-events: auto;
    visibility: visible;
  }

  .nav-link {
    font-size: 0.9rem;
    padding: 14px 20px;
    min-height: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover {
    background: rgba(229, 62, 62, 0.1);
  }

  .logo {
    font-size: 1.3rem;
  }

  .logo-img {
    height: 36px;
  }

  .hero {
    padding: 100px 28px 80px;
    min-height: auto;
  }

  .hero-badge {
    margin-bottom: 24px;
    font-size: 0.8rem;
  }

  .hero-title {
    margin-bottom: 16px;
    font-size: 2.5rem;
  }

  .hero-subtitle {
    margin-bottom: 24px;
  }

  .hero-scroll {
    font-size: 0.8rem;
  }

  .hero-glow {
    width: 450px;
    height: 270px;
  }

  .section {
    padding: 70px 28px;
  }

  .section-header {
    margin-bottom: 45px;
  }

  .tabs {
    gap: 10px;
    padding-bottom: 14px;
  }

  .tab-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .filter-tags {
    margin-bottom: 45px;
    gap: 10px;
  }

  .filter-btn {
    padding: 9px 16px;
    font-size: 0.85rem;
  }

  .card-overlay {
    padding: 16px;
  }

  .card-overlay h3 {
    font-size: 0.95rem;
  }

  .metric-card {
    border-radius: 12px;
  }

  .metric-card img {
    height: 160px;
  }

  .metric-content {
    padding: 20px;
  }

  .metric-big {
    font-size: 1.8rem;
  }

  .cta-section {
    padding: 80px 28px;
  }

  .cta-container h2 {
    font-size: 2rem;
  }

  .cta-container p {
    font-size: 1.05rem;
    margin-bottom: 32px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-container p,
  .footer-links a {
    font-size: 0.95rem;
  }
}

/* Medium Phones (640px and below) */
@media (max-width: 640px) {
  html {
    font-size: 14px;
  }

  body {
    font-size: 14px;
  }

  .navbar {
    padding: 12px 18px 8px 18px;
  }

  .navbar-container {
    gap: 16px;
    justify-content: flex-start;
  }

  .logo {
    font-size: 1.2rem;
    flex-shrink: 0;
  }

  .logo-img {
    height: 32px;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    left: 0;
    top: 60px;
    width: 100%;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, visibility 0.3s ease;
    align-items: stretch;
    z-index: 99;
    pointer-events: none;
    visibility: hidden;
  }

  .nav-toggle:checked ~ .nav-links {
    max-height: 500px;
    pointer-events: auto;
    visibility: visible;
  }

  .nav-link {
    font-size: 0.9rem;
    padding: 14px 20px;
    min-height: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover {
    background: rgba(229, 62, 62, 0.1);
  }

  .hero {
    padding: 90px 20px 60px;
    min-height: auto;
  }

  .hero-badge {
    margin-bottom: 20px;
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  .hero-title {
    margin-bottom: 14px;
    font-size: 1.6rem;
  }

  .hero-subtitle {
    margin-bottom: 20px;
    font-size: 0.95rem;
  }

  .stat-divider {
    display: none;
  }

  .hero-scroll {
    font-size: 0.75rem;
  }

  .hero-scroll svg {
    width: 18px;
    height: 18px;
  }

  .hero-glow {
    width: 300px;
    height: 200px;
    top: 20px;
  }

  .section {
    padding: 55px 20px;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .section-header h2 {
    margin-bottom: 10px;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .tabs {
    gap: 8px;
    padding-bottom: 12px;
    overflow-x: auto;
    margin-bottom: 35px;
  }

  .tab-btn {
    padding: 9px 16px;
    font-size: 0.8rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .filter-tags {
    margin-bottom: 35px;
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 14px;
    font-size: 0.75rem;
  }

  .grid {
    gap: 16px;
  }

  .card-image {
    border-radius: 10px;
  }

  .card-overlay {
    padding: 14px;
  }

  .card-overlay h3 {
    font-size: 0.9rem;
  }

  .reels-grid {
    gap: 10px;
  }

  .reel-card {
    flex: 0 0 150px;
    border-radius: 10px;
  }

  .reel-overlay {
    padding: 12px;
  }

  .reel-text {
    font-size: 0.85rem;
    margin-bottom: 4px;
  }

  .reel-category {
    font-size: 0.7rem;
    padding: 3px 8px;
  }

  .metric-grid {
    gap: 16px;
  }

  .metric-card {
    border-radius: 12px;
  }

  .metric-card img {
    height: 140px;
  }

  .metric-content {
    padding: 16px;
  }

  .metric-big {
    font-size: 1.5rem;
  }

  .metric-label {
    font-size: 0.7rem;
  }

  .metric-desc {
    font-size: 0.85rem;
  }

  .cta-section {
    padding: 60px 20px;
  }

  .cta-container h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .cta-container p {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  .btn-large {
    padding: 14px 32px;
    font-size: 0.95rem;
  }

  .cta-container .btn {
    width: auto;
  }

  .footer {
    padding: 32px 20px;
  }

  .footer-container {
    gap: 16px;
  }

  .footer-container p,
  .footer-links a {
    font-size: 0.85rem;
  }

  .footer-links {
    gap: 20px;
  }

  /* Carousel Mobile Styles */
  .carousel-container {
    gap: 0;
    margin-bottom: 40px;
  }

  .carousel-arrow {
    display: none;
  }

  .carousel-wrapper {
    border-radius: 12px;
  }

  .carousel-slide {
    aspect-ratio: 1 / 1;
  }

  .carousel-label {
    font-size: 0.9rem;
    padding: 16px 12px 12px;
  }

  .modal-image {
    max-width: 95%;
    max-height: 85%;
  }

  .modal-close {
    top: 20px;
    right: 20px;
    font-size: 32px;
  }
}

/* Small Phones (425px and below) */
@media (max-width: 425px) {
  html {
    font-size: 13px;
  }

  body {
    font-size: 13px;
  }

  .navbar {
    padding: 12px 16px;
  }

  .navbar-container {
    gap: 12px;
  }

  .logo {
    font-size: 1.1rem;
  }

  .logo-img {
    height: 28px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    left: 0;
    top: 54px;
    width: 100%;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    align-items: stretch;
  }

  .nav-toggle:checked ~ .nav-links {
    max-height: 350px;
  }

  .nav-link {
    font-size: 0.85rem;
    padding: 12px 18px;
    min-height: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover {
    background: rgba(229, 62, 62, 0.1);
  }

  .hero {
    padding: 80px 16px 50px;
    min-height: auto;
  }

  .hero-badge {
    margin-bottom: 18px;
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .hero-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }

  .hero-services {
    margin-bottom: 28px;
    gap: 8px;
  }

  .service-pill {
    font-size: 0.7rem;
    padding: 5px 12px;
  }

  .hero-stats {
    margin-bottom: 28px;
  }

  .stat-item {
    padding: 12px 18px;
  }

  .stat-divider {
    height: 35px;
    margin: 0 6px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .hero-buttons {
    margin-bottom: 20px;
  }

  .hero-scroll {
    font-size: 0.7rem;
  }

  .hero-scroll svg {
    width: 16px;
    height: 16px;
  }

  .hero-glow {
    width: 250px;
    height: 160px;
    top: 40px;
  }

  .hero-buttons {
    gap: 8px;
  }

  .hero-buttons .btn,
  .hero-buttons a {
    padding: 12px 18px;
    font-size: 0.85rem;
  }

  .hero-glow {
    width: 280px;
    height: 200px;
  }

  .section {
    padding: 45px 16px;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .tabs {
    gap: 6px;
    padding-bottom: 10px;
  }

  .tab-btn {
    padding: 8px 14px;
    font-size: 0.75rem;
    min-height: 40px;
  }

  .filter-tags {
    margin-bottom: 30px;
    gap: 6px;
  }

  .filter-btn {
    padding: 7px 12px;
    font-size: 0.7rem;
    min-height: 40px;
  }

  .grid {
    gap: 12px;
  }

  .card-image {
    border-radius: 8px;
    border: 0.5px solid var(--border);
  }

  .card-overlay {
    padding: 12px;
  }

  .card-overlay h3 {
    font-size: 0.8rem;
  }

  .reels-grid {
    gap: 8px;
  }

  .reel-card {
    flex: 0 0 140px;
    border-radius: 8px;
  }

  .reel-overlay {
    padding: 10px;
  }

  .reel-text {
    font-size: 0.75rem;
    margin-bottom: 3px;
  }

  .reel-category {
    font-size: 0.65rem;
    padding: 2px 6px;
  }

  .metric-grid {
    gap: 12px;
  }

  .metric-card {
    border-radius: 10px;
  }

  .metric-card img {
    height: 120px;
  }

  .metric-content {
    padding: 14px;
    gap: 6px;
  }

  .metric-big {
    font-size: 1.3rem;
  }

  .metric-label {
    font-size: 0.65rem;
    letter-spacing: 0.3px;
  }

  .metric-desc {
    font-size: 0.8rem;
  }

  .cta-section {
    padding: 50px 16px;
  }

  .cta-container h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .cta-container p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .btn {
    padding: 11px 24px;
    font-size: 0.85rem;
    min-height: 44px;
  }

  .btn-large {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  .footer {
    padding: 28px 16px;
  }

  .footer-container p,
  .footer-links a {
    font-size: 0.8rem;
  }

  .footer-links {
    gap: 16px;
  }
}

/* Extra Small Phones (375px and below) */
@media (max-width: 375px) {
  html {
    font-size: 12px;
  }

  body {
    font-size: 12px;
  }

  .navbar {
    padding: 10px 14px;
  }

  .logo {
    font-size: 1rem;
  }

  .logo-img {
    height: 24px;
  }

  .hamburger {
    display: flex;
  }

  .hamburger span {
    width: 24px;
  }

  .nav-links {
    position: fixed;
    left: 0;
    top: 50px;
    width: 100%;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 14px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    align-items: stretch;
  }

  .nav-toggle:checked ~ .nav-links {
    max-height: 300px;
  }

  .nav-link {
    font-size: 0.8rem;
    padding: 10px 16px;
    min-height: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover {
    background: rgba(229, 62, 62, 0.1);
  }

  .hero {
    padding: 70px 14px 40px;
    min-height: auto;
  }

  .hero-badge {
    margin-bottom: 16px;
    font-size: 0.7rem;
    padding: 5px 12px;
  }

  .hero-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }

  .hero-services {
    margin-bottom: 24px;
    gap: 6px;
  }

  .service-pill {
    font-size: 0.65rem;
    padding: 4px 10px;
  }

  .hero-stats {
    margin-bottom: 24px;
  }

  .stat-item {
    padding: 10px 14px;
  }

  .stat-divider {
    display: none;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .hero-buttons {
    margin-bottom: 18px;
    gap: 6px;
  }

  .hero-scroll {
    font-size: 0.65rem;
  }

  .hero-scroll svg {
    width: 16px;
    height: 16px;
  }

  .hero-glow {
    width: 220px;
    height: 140px;
    top: 50px;
  }

  .hero-buttons .btn,
  .hero-buttons a {
    padding: 9px 14px;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .hero-glow {
    width: 240px;
    height: 160px;
  }

  .section {
    padding: 40px 14px;
  }

  .section-header {
    margin-bottom: 25px;
  }

  .section-header h2 {
    font-size: 1.3rem;
  }

  .section-header p {
    font-size: 0.85rem;
  }

  .tab-btn {
    padding: 7px 12px;
    font-size: 0.7rem;
    min-height: 40px;
  }

  .filter-btn {
    padding: 6px 10px;
    font-size: 0.65rem;
    min-height: 40px;
  }

  .grid {
    gap: 10px;
  }

  .card-overlay {
    padding: 10px;
  }

  .card-overlay h3 {
    font-size: 0.75rem;
  }

  .reel-card {
    flex: 0 0 130px;
  }

  .reel-overlay {
    padding: 8px;
  }

  .reel-text {
    font-size: 0.7rem;
  }

  .reel-category {
    font-size: 0.6rem;
    padding: 2px 5px;
  }

  .metric-card img {
    height: 100px;
  }

  .metric-content {
    padding: 12px;
  }

  .metric-big {
    font-size: 1.2rem;
  }

  .metric-label {
    font-size: 0.6rem;
  }

  .metric-desc {
    font-size: 0.75rem;
  }

  .cta-section {
    padding: 45px 14px;
  }

  .cta-container h2 {
    font-size: 1.2rem;
  }

  .cta-container p {
    font-size: 0.85rem;
    margin-bottom: 18px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .btn-large {
    padding: 11px 24px;
    font-size: 0.85rem;
  }

  .footer {
    padding: 24px 14px;
  }

  .footer-container p,
  .footer-links a {
    font-size: 0.75rem;
  }

  .footer-links {
    gap: 14px;
  }
}

/* ─── UTILITIES ────────────────────────────────────────────────────────── */
.hidden {
  display: none !important;
}

/* ─── ANIMATIONS ────────────────────────────────────────────────────────── */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 30px rgba(229, 62, 62, 0.2);
  }
  50% {
    box-shadow: 0 0 50px rgba(229, 62, 62, 0.35);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}
