/* ═══════════════════════════════════════════════════════════════════════════
   NEXUS AGENCY - MAIN STYLESHEET
   Modern, minimal, premium design system
   ═══════════════════════════════════════════════════════════════════════════*/

/* ═══ ROOT VARIABLES */
:root {
  --black: #000000;
  --white: #ffffff;
  --accent: #c8ff00;
  --accent2: #ff3c3c;
  --accent3: #00d4ff;
  --dark-bg: #0a0a0a;
  --card-bg: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.6);
  --text-tertiary: rgba(255, 255, 255, 0.3);
  --glass: rgba(255, 255, 255, 0.04);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease2: cubic-bezier(0.76, 0, 0.24, 1);
  --spacing: 1rem;
}

/* ═══ GLOBAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--black);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

html.has-custom-cursor body {
  cursor: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  mix-blend-mode: overlay;
}

/* ═══ CUSTOM CURSOR */
#cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.15s, height 0.15s, background 0.15s;
}

#cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(200, 255, 0, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#cursor-label {
  font-family: "Syne", sans-serif;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--accent);
  opacity: 0;
  transition: opacity 0.2s;
  white-space: nowrap;
  text-transform: uppercase;
}

body.hovering #cursor-dot {
  width: 0;
  height: 0;
}

body.hovering #cursor-ring {
  width: 80px;
  height: 80px;
  border-color: var(--accent);
  background: rgba(200, 255, 0, 0.06);
}

body.hovering #cursor-label {
  opacity: 1;
}

/* ═══ NAVBAR */
#site-nav {
  position: sticky;
  top: 0;
  z-index: 5000;
  width: 100%;
  max-width: 100vw;
  overflow-x: clip;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.3s;
}

#site-nav.scrolled {
  background: rgba(0, 0, 0, 0.98);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.mobile-nav-inner {
  display: none;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 34px;
  height: 34px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.nav-logo-icon svg {
  width: 16px;
  height: 16px;
}

.nav-logo-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.15rem, 4vw, 1.5rem);
  letter-spacing: 0.08em;
  color: #fff;
}

.nav-logo-text span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item {
  position: static;
}

.nav-btn {
  font-family: "Syne", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  padding: 0.6rem 1.1rem;
  cursor: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
}

.nav-btn:hover {
  color: var(--text-primary);
}

a.nav-btn {
  text-decoration: none;
}

.nav-btn svg {
  width: 10px;
  height: 10px;
  opacity: 0.5;
  transition: transform 0.2s;
}

.nav-item:hover .nav-btn svg {
  transform: rotate(180deg);
}

/* Mega dropdown */
.mega-drop {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, calc(100vw - 2rem));
  max-width: calc(100vw - 2rem);
  background: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  animation: dropFade 0.18s ease forwards;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
}

.nav-item:hover .mega-drop,
.mega-drop:hover {
  display: block;
}

.nav-item.open .mega-drop {
  display: block;
}

@keyframes dropFade {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.drop-header {
  padding: 0.8rem 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.drop-header span {
  font-family: "Syne", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

.drop-inner {
  display: flex;
}

.drop-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  padding: 1px;
}

.drop-featured {
  width: 320px;
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.drop-featured-img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.drop-featured-title {
  font-family: "Syne", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.drop-featured-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.drop-card {
  background: var(--dark-bg);
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  cursor: none;
  position: relative;
  overflow: hidden;
}

.drop-card:hover {
  background: var(--card-bg);
}

.drop-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: background 0.2s;
}

.drop-card:hover .drop-icon {
  background: var(--accent);
}

.drop-card:hover .drop-icon svg {
  stroke: black;
}

.drop-icon svg {
  width: 14px;
  height: 14px;
  stroke: rgba(255, 255, 255, 0.6);
  fill: none;
  stroke-width: 1.8;
  position: relative;
  z-index: 1;
}

.drop-text {
  position: relative;
  z-index: 1;
}

.drop-title {
  font-family: "Syne", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}

.drop-desc {
  font-size: 0.72rem;
  color: var(--text-tertiary);
  line-height: 1.5;
}

.drop-badge {
  display: inline-block;
  font-family: "Syne", sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  background: var(--accent);
  color: black;
  font-weight: 800;
  margin-left: 0.4rem;
  vertical-align: middle;
}

.drop-footer {
  padding: 0.8rem 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: flex-end;
}

.drop-footer a {
  font-family: "Syne", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.drop-footer a svg {
  width: 10px;
  height: 10px;
  stroke: var(--accent);
}

.nav-cta {
  font-family: "Syne", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--accent);
  color: black;
  padding: 0.65rem 1.6rem;
  font-weight: 800;
  border: none;
  cursor: none;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: box-shadow 0.3s, transform 0.2s;
  margin-left: 0.8rem;
}

a.nav-cta {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-cta:hover {
  box-shadow: 0 0 30px rgba(200, 255, 0, 0.4);
  transform: scale(1.03);
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: none;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.7);
  transition: transform 0.25s, opacity 0.25s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--site-nav-height, 68px);
  width: 100%;
  max-width: 100vw;
  background: black;
  z-index: 4999;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  padding: 1.5rem clamp(1rem, 4vw, 1.5rem) 3rem;
}

.mobile-menu::-webkit-scrollbar {
  display: none;
}

.mobile-menu.open {
  display: block;
}

body.mobile-nav-open {
  overflow: hidden;
}

.mob-group-btn {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: none;
  font-family: "Syne", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 700;
}

.mob-group-btn svg {
  width: 12px;
  height: 12px;
  stroke: rgba(255, 255, 255, 0.4);
  transition: transform 0.2s;
}

.mob-group-btn.active svg {
  transform: rotate(180deg);
}

.mob-sub {
  display: none;
  padding: 0.5rem 0 1rem 1rem;
}

.mob-sub.open {
  display: block;
}

.mob-sub a {
  display: block;
  padding: 0.6rem 0;
  font-size: 0.82rem;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: color 0.2s;
}

.mob-sub a:hover {
  color: var(--accent);
}

@media (max-width: 1280px) {
  .nav-btn {
    padding: 0.6rem 0.8rem;
    font-size: 0.72rem;
  }

  .nav-cta {
    padding: 0.65rem 1.2rem;
    margin-left: 0.5rem;
  }

  .nav-logo-text {
    font-size: 1.35rem;
  }
}

@media (max-width: 1100px) {
  .desktop-nav-inner {
    display: none;
  }

  .mobile-nav-inner {
    min-height: 60px;
    padding: 0 clamp(1rem, 4vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-nav-inner .nav-hamburger {
    display: flex;
  }

  .mobile-menu {
    top: 60px;
  }
}

@media (max-width: 480px) {
  .nav-logo-icon {
    width: 30px;
    height: 30px;
  }
}

/* ═══ BUTTONS */
.btn-primary {
  font-family: "Syne", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--accent);
  color: black;
  padding: 1rem 3rem;
  border: none;
  font-weight: 800;
  cursor: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.btn-primary:hover {
  box-shadow: 0 0 50px rgba(200, 255, 0, 0.5);
  transform: scale(1.04);
}

.btn-outline {
  font-family: "Syne", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  color: white;
  padding: 1rem 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: none;
  transition: border-color 0.3s, color 0.3s;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ═══ HEADINGS */
h1, h2, h3, h4 {
  font-family: "Bebas Neue", sans-serif;
  line-height: 1;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

/* ═══ SECTIONS */
section {
  padding: 4rem 2rem;
}

.section-light {
  background: var(--white);
  color: var(--black);
}

.section-light .section-header p,
.section-light .card p,
.section-light .text-secondary {
  color: rgba(0, 0, 0, 0.6);
}

.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4 {
  color: var(--black);
}

.section-light .card {
  background: #f8f8f8;
  border-color: rgba(0, 0, 0, 0.08);
}

.section-light .card:hover {
  background: #f0f0f0;
  border-color: var(--black);
}

.section-light .card-icon {
  background: rgba(0, 0, 0, 0.05);
  color: var(--black);
}

.section-light .card:hover .card-icon {
  background: var(--black);
  color: var(--white);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ═══ CARDS */
.card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  background: rgba(200, 255, 0, 0.02);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 255, 0, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}

.card:hover .card-icon {
  background: var(--accent);
  color: black;
}

.card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.card p {
  color: var(--text-tertiary);
  line-height: 1.8;
}

/* ═══ FOOTER */
#site-footer {
  background: var(--dark-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 2rem 2rem;
  margin-top: 5rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  margin-bottom: 2rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--accent);
}

/* ═══ UTILITIES */
.text-accent {
  color: var(--accent);
}

.text-secondary {
  color: var(--text-secondary);
}

.mt-4 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.my-4 {
  margin: 2rem 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.image-rounded {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-premium {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease);
}

.image-premium:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  section {
    padding: 3rem 1.5rem;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
}

/* ═══ PAGE-SPECIFIC STYLES */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 255, 0, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ═══ ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Loading states */
.loading {
  opacity: 0.5;
  pointer-events: none;
}

/* Scroll animations (require JS) */
[data-scroll] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-scroll].in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none), (pointer: coarse) {
  body {
    cursor: auto;
  }

  #cursor-dot,
  #cursor-ring,
  body::after {
    display: none !important;
  }

  .nav-btn,
  .nav-cta,
  .nav-hamburger,
  .drop-card,
  .mob-group-btn,
  .btn-primary,
  .btn-outline,
  .card {
    cursor: pointer;
  }
}

/* Fallback: if the custom cursor fails to initialize (no `has-custom-cursor`
   class on <html>), never hide the native cursor. */
html:not(.has-custom-cursor) body,
html:not(.has-custom-cursor) .nav-btn,
html:not(.has-custom-cursor) .drop-card,
html:not(.has-custom-cursor) .nav-cta,
html:not(.has-custom-cursor) .nav-hamburger,
html:not(.has-custom-cursor) .mob-group-btn,
html:not(.has-custom-cursor) .btn-primary,
html:not(.has-custom-cursor) .btn-outline {
  cursor: auto;
}

/* ═══ Cookie Consent + Popup + Cute Strip ═══════════════════════════════ */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8000;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  padding: 1.1rem 1.2rem;
  display: none;
}

.cookie-consent-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 1.2rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-consent-title {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

.cookie-consent-lead {
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  font-size: 0.95rem;
}

.cookie-consent-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}

.cookie-consent-links a {
  color: var(--accent);
  text-decoration: none;
  font-family: "Syne", sans-serif;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

.cookie-consent-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.btn-cookie {
  border-radius: 10px;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  cursor: pointer;
  font-family: "Syne", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.75rem;
}

.btn-cookie-reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
}

.btn-cookie-accept {
  background: var(--accent);
  color: #000;
  border-color: rgba(200, 255, 0, 0.3);
}

/* Popup modal */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(8px);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}

.popup-overlay.is-open {
  display: flex;
}

.popup-modal {
  width: 100%;
  max-width: 560px;
  background: rgba(10, 10, 10, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 1.3rem 1.3rem 1.1rem;
  position: relative;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
}

.popup-close {
  position: absolute;
  right: 0.9rem;
  top: 0.9rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
}

.popup-title {
  font-family: "Syne", sans-serif;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1rem;
  margin-top: 0.3rem;
  margin-bottom: 0.8rem;
}

.popup-lead {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.popup-form {
  display: grid;
  gap: 0.7rem;
}

.popup-label {
  font-family: "Syne", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

.popup-form input {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  outline: none;
}

.popup-form input:focus {
  border-color: rgba(200, 255, 0, 0.5);
}

.popup-submit {
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: #000;
  font-family: "Syne", sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.95rem 1.2rem;
}

.popup-footnote {
  color: var(--text-tertiary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.popup-footnote a {
  color: var(--accent);
  text-decoration: none;
}

/* Cute strip */
.cute-strip {
  margin-top: 4rem;
  padding: 2rem 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cute-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cute-strip-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.3rem;
}

.cute-strip-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.03em;
}

.cute-strip-sub {
  color: var(--text-secondary);
}

.cute-strip-cards {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cute-card {
  flex: 1 1 180px;
  min-width: 180px;
  max-width: 240px;
  padding: 0.2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}

.cute-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* ═══ GLOBAL RESPONSIVE OVERRIDES ═══════════════════════════════════════════ */
.container {
  width: 100%;
}

@media (max-width: 1200px) {
  .mega-drop {
    width: min(900px, calc(100vw - 2rem));
  }
}

@media (max-width: 1024px) {
  .nav-inner {
    padding: 0 1.5rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3.5rem 1.25rem;
  }

  .page-hero {
    min-height: 50vh;
  }

  .hero-content {
    padding: 0 1.25rem;
  }

  .btn-primary,
  .btn-outline {
    padding: 0.9rem 2rem;
    font-size: 0.78rem;
    max-width: 100%;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-content .footer-col {
    grid-column: auto !important;
  }

  #site-footer {
    padding: 3rem 1.25rem 1.5rem;
    margin-top: 3rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-consent-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .popup-modal {
    padding: 1.1rem;
  }

  .cute-strip-cards {
    flex-direction: column;
  }

  .cute-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    padding: 0 1rem;
  }

  .mob-group-btn {
    font-size: 0.82rem;
  }

  .whatsapp-tooltip,
  .call-tooltip {
    display: none;
  }

  .popup-form input,
  .popup-submit {
    font-size: 1rem;
  }
}
