/* ============================================================
   ZAVENTRA MUSIC GROUP - Premium Design System
   Inspired by WMG & Believe.com
   ============================================================ */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 62.5%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg); color: var(--fg);
  line-height: 1.6; font-size: 1.6rem;
  transition: background-color 0.5s cubic-bezier(0.64,0.04,0.35,1), color 0.5s cubic-bezier(0.64,0.04,0.35,1);
  overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--accent); color: #fff; }

/* --- Light Theme --- */
:root, [data-theme="light"] {
  --bg: #FFFFFF;
  --bg-subtle: #F5F5F7;
  --bg-card: #FFFFFF;
  --fg: #0A0A0B;
  --fg-secondary: #6E6E73;
  --accent: #155EEF;
  --accent-hover: #124FD0;
  --accent-secondary: #FF4AC3;
  --accent-tertiary: #FFBE1D;
  --accent-teal: #45FFED;
  --border: #E8E8ED;
  --border-light: rgba(0,0,0,0.06);
  --glass-bg: rgba(255,255,255,0.72);
  --glass-border: rgba(0,0,0,0.08);
  --header-bg: rgba(255,255,255,0.72);
  --mist-blue: #ECF2FF;
  --signal-red: #C41E24;
  --text-muted: #6E6E73;
  --white: #FFFFFF;
  --black: #0A0A0B;
  --gradient-hero: linear-gradient(135deg, #155EEF 0%, #8040E1 50%, #FF4AC3 100%);
  --gradient-section: linear-gradient(180deg, #F5F5F7 0%, #FFFFFF 100%);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-elevated: 0 8px 32px rgba(0,0,0,0.08);
}

/* --- Dark Theme --- */
[data-theme="dark"] {
  --bg: #0A0A0B;
  --bg-subtle: #111113;
  --bg-card: #161619;
  --fg: #F5F5F7;
  --fg-secondary: #86868B;
  --accent: #6B9FFF;
  --accent-hover: #8FB8FF;
  --accent-secondary: #FF6DD5;
  --accent-tertiary: #FFD666;
  --accent-teal: #7AFFED;
  --border: #2C2C2E;
  --border-light: rgba(255,255,255,0.06);
  --glass-bg: rgba(10,10,11,0.72);
  --glass-border: rgba(255,255,255,0.08);
  --header-bg: rgba(10,10,11,0.72);
  --mist-blue: #12141C;
  --signal-red: #FF5A5F;
  --text-muted: #86868B;
  --white: #0A0A0B;
  --black: #F5F5F7;
  --gradient-hero: linear-gradient(135deg, #6B9FFF 0%, #B380FF 50%, #FF6DD5 100%);
  --gradient-section: linear-gradient(180deg, #111113 0%, #0A0A0B 100%);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.2);
  --shadow-elevated: 0 8px 32px rgba(0,0,0,0.3);
}

/* --- Typography System --- */
.display { font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.04em; font-weight: 700; }
.eyebrow {
  font-size: 1.1rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; color: var(--fg-secondary); line-height: 1.5;
}
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.text-gradient {
  background: var(--gradient-hero); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.container { width: min(100% - 60px, 1400px); margin-inline: auto; }
.container-narrow { width: min(100% - 60px, 900px); margin-inline: auto; }
.container-wide { width: min(100% - 60px, 1600px); margin-inline: auto; }
.bg-subtle { background: var(--bg-subtle); }
.bg-dark { background: var(--fg); color: var(--bg); }

/* --- Full-Bleed Breakout (WMG pattern) --- */
.full-bleed {
  width: 100vw; position: relative;
  left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw;
}

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 1.3rem; font-weight: 600; padding: 16px 32px;
  letter-spacing: 0.02em;
  transition: all 0.4s cubic-bezier(0.64,0.04,0.35,1); white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--accent); color: #fff;
  clip-path: polygon(-12px 0, calc(100% - 16px) 0, 100% 100%, 0 100%);
  padding: 16px 44px 16px 32px;
}
[data-theme="dark"] .btn-primary { color: #0A0A0B; }
.btn-primary:hover {
  background: var(--accent-hover); transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(21,94,239,0.25);
}
.btn-outline {
  border: 1.5px solid var(--border); color: var(--fg);
  clip-path: polygon(-12px 0, calc(100% - 16px) 0, 100% 100%, 0 100%);
  padding: 16px 44px 16px 32px;
}
.btn-outline:hover { border-color: var(--fg); background: var(--border-light); }
.btn-lg { padding: 20px 48px; font-size: 1.4rem; }
.btn-sm { padding: 12px 24px; font-size: 1.2rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-ghost { color: var(--fg); padding: 12px 0; }
.btn-ghost:hover { color: var(--accent); }
.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 1.3rem; font-weight: 600;
  border-bottom: 1.5px solid var(--fg); padding-bottom: 3px;
  transition: all 0.4s cubic-bezier(0.64,0.04,0.35,1);
}
.link-arrow:hover { gap: 14px; color: var(--accent); border-color: var(--accent); }
.link-arrow-light { border-color: rgba(255,255,255,0.3); color: #fff; }

/* ============================================================
   HEADER - Premium Glassmorphism (WMG-style)
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  pointer-events: none;
}
.site-header > * { pointer-events: auto; }
.header-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
  background: var(--header-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: background-color 0.5s cubic-bezier(0.64,0.04,0.35,1);
  opacity: 0; transition: opacity 0.5s cubic-bezier(0.64,0.04,0.35,1);
}
.site-header.scrolled .header-bg { opacity: 1; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px; position: relative; z-index: 2;
  max-width: 1600px; margin: 0 auto;
}
.site-header.scrolled .header-inner { padding: 14px 40px; }
.logo { display: flex; align-items: center; }
.logo-img { height: 48px; width: auto; object-fit: contain; }
.logo-dark-img { display: none; }
[data-theme="dark"] .logo-light-img { display: none; }
[data-theme="dark"] .logo-dark-img { display: block; }
.main-nav { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-size: 1.4rem; font-weight: 500; color: var(--fg-secondary);
  transition: color 0.4s cubic-bezier(0.64,0.04,0.35,1); position: relative; padding: 6px 0;
  letter-spacing: 0.01em;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--accent);
  transition: width 0.4s cubic-bezier(0.64,0.04,0.35,1);
}
.nav-link:hover, .nav-link.active { color: var(--fg); }
.nav-link.active::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.theme-toggle {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background 0.4s;
}
.theme-toggle:hover { background: var(--border-light); }
.icon-moon { display: none; }
[data-theme="dark"] .icon-sun { display: none; }
[data-theme="dark"] .icon-moon { display: block; }
.mobile-toggle {
  display: none; width: 40px; height: 40px;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.hamburger-line {
  display: block; width: 22px; height: 1.5px; background: var(--bg-card);
  transition: all 0.4s cubic-bezier(0.64,0.04,0.35,1);
}
.mobile-toggle.open .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-toggle.open .hamburger-line:nth-child(2) { opacity: 0; }
.mobile-toggle.open .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu {
  display: none; padding: 24px 40px;
  border-top: 1px solid var(--border);
  background: var(--header-bg); backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}
.mobile-menu.open { display: block; }
.mobile-nav { display: flex; flex-direction: column; gap: 0; }
.mobile-nav-link {
  font-size: 2rem; font-weight: 600; padding: 16px 0;
  color: var(--fg-secondary); transition: color 0.4s;
  letter-spacing: -0.02em;
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--fg); }
.mobile-social {
  display: flex; gap: 16px; margin-top: 20px;
  padding-top: 20px; border-top: 1px solid var(--border);
}
.mobile-social a { font-size: 1.3rem; color: var(--fg-secondary); }

/* ============================================================
   HERO - Premium Full-Viewport (WMG-inspired)
   ============================================================ */
.hero {
  min-height: 100vh; display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
  padding-bottom: 80px; padding-top: 120px;
  background: var(--bg);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-gradient-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4;
  animation: orbFloat 12s ease-in-out infinite;
}
.hero-gradient-orb-1 {
  right: -5%; top: 5%; width: 45vw; max-width: 600px; height: 45vw; max-height: 600px;
  background: var(--accent);
}
.hero-gradient-orb-2 {
  right: 15%; top: 20%; width: 20vw; max-width: 280px; height: 20vw; max-height: 280px;
  background: var(--accent-secondary); animation-delay: -4s;
}
.hero-gradient-orb-3 {
  right: 8%; top: 10%; width: 12vw; max-width: 160px; height: 12vw; max-height: 160px;
  background: var(--accent-tertiary); animation-delay: -8s; opacity: 0.6;
}
.hero-line {
  position: absolute; right: 8%; bottom: 30%; width: 35vw; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(21,94,239,0.3), transparent);
  transform: rotate(-42deg);
}
.hero-line-2 {
  position: absolute; right: 12%; bottom: 35%; width: 25vw; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,74,195,0.2), transparent);
  transform: rotate(-42deg);
}
@keyframes orbFloat { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(20px,-30px) scale(1.05); } }

.hero-inner { position: relative; z-index: 2; }
.hero-title {
  font-size: clamp(5rem, 12vw, 12rem); line-height: 0.9; font-weight: 700;
  letter-spacing: -0.05em; text-transform: uppercase; margin-top: 24px;
}
.hero-title-line { display: block; line-height: 1.05; }
.hero-title-line.text-accent {
  background: var(--gradient-hero); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-cycling-word {
  display: inline-block;
  clip-path: polygon(0 0, 100% 0, 100% 0%, 0% 0%);
  transition: clip-path 0.7s cubic-bezier(0.74,-0.02,0.33,0.99);
}
.hero-cycling-word.revealed {
  clip-path: polygon(0 0, 100% 0, 100% 115%, 0% 115%);
}
.hero-cycling-word.hiding {
  clip-path: polygon(0 -15%, 100% -15%, 100% 0%, 0% 0%);
}
.hero-bottom { display: grid; gap: 32px; border-top: 1px solid var(--border-light); padding-top: 28px; margin-top: 40px; }
.hero-description {
  font-size: clamp(1.5rem, 2vw, 1.8rem); line-height: 1.7;
  color: var(--text-muted); max-width: 480px;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-status {
  display: flex; align-items: center; gap: 12px;
  font-size: 1.2rem; color: var(--text-muted); letter-spacing: 0.05em;
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--signal-red);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ============================================================
   TICKER - Full-Width Scrolling Marquee (WMG/Believe pattern)
   ============================================================ */
.ticker-section {
  padding: 20px 0; overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.ticker-track {
  display: flex; width: max-content;
  animation: tickerScroll 30s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex; align-items: center; gap: 16px;
  padding: 0 40px; white-space: nowrap;
}
.ticker-item-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem; font-weight: 700; letter-spacing: -0.03em;
  text-transform: uppercase; color: var(--fg);
}
.ticker-item-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
.ticker-item-dot.pink { background: var(--accent-secondary); }
.ticker-item-dot.yellow { background: var(--accent-tertiary); }
@keyframes tickerScroll { to { transform: translateX(-50%); } }

/* ============================================================
   ARTIST MARQUEE - Horizontal Scrolling Cards
   ============================================================ */
.artist-marquee { overflow: hidden; margin-top: 48px; }
.marquee-track {
  display: flex; gap: 20px; width: max-content;
  animation: marquee 35s linear infinite;
}
.artist-marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.artist-card {
  position: relative; width: 320px; height: 420px;
  overflow: hidden; border-radius: 16px; flex-shrink: 0;
  background: var(--bg-card);
  transition: transform 0.6s cubic-bezier(0.64,0.04,0.35,1);
}
.artist-card:hover { transform: scale(1.02); }
.artist-card-image { position: absolute; inset: 0; }
.artist-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2,0.75,0.25,1);
}
.artist-card:hover .artist-card-image img { transform: scale(1.08); }
.artist-card-info {
  position: absolute; inset-x: 0; bottom: 0;
  padding: 24px; display: flex; align-items: flex-end; justify-content: space-between;
  background: linear-gradient(transparent, rgba(0,0,0,0.7)); color: #fff;
}
.artist-card-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem; letter-spacing: -0.03em;
}
.artist-card-badge {
  font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4); padding: 5px 12px; border-radius: 100px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(80px, 12vw, 140px) 0; }
.section-header { display: grid; gap: 16px; border-top: 1px solid var(--border); padding-top: 24px; margin-bottom: 56px; }
.section-title {
  font-size: clamp(3rem, 5.5vw, 5rem); line-height: 1.0;
  font-weight: 700; max-width: 20ch; letter-spacing: -0.04em;
}
.section-copy { font-size: 1.6rem; line-height: 1.7; color: var(--text-muted); max-width: 560px; }

/* ============================================================
   NEWS GRID
   ============================================================ */
.news-grid { display: grid; gap: 28px; grid-template-columns: repeat(3, 1fr); }
.news-card {
  display: block; border-radius: 16px; overflow: hidden;
  background: var(--bg-card); box-shadow: var(--shadow-card);
  transition: transform 0.5s cubic-bezier(0.64,0.04,0.35,1), box-shadow 0.5s;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-elevated); }
.news-card-image {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
  background: var(--bg-subtle); border-radius: 16px 16px 0 0;
}
.news-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2,0.75,0.25,1);
}
.news-card:hover .news-card-image img { transform: scale(1.06); }
.news-card-content { padding: 24px; }
.news-card-meta {
  display: flex; justify-content: space-between;
  font-size: 1rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 12px;
}
.news-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem; letter-spacing: -0.03em; line-height: 1.25;
}
.news-card-excerpt {
  font-size: 1.4rem; color: var(--text-muted); margin-top: 10px; line-height: 1.6;
}

/* ============================================================
   LIFECYCLE
   ============================================================ */
.lifecycle-grid { display: flex; flex-direction: column; }
.lifecycle-card {
  position: relative; padding: 52px 0; border-top: 1px solid var(--border); overflow: hidden;
}
.lifecycle-number {
  position: absolute; right: 4%; top: 6%;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(6rem,20vw,20rem); font-weight: 700; line-height: 1;
  color: var(--accent); opacity: 0.04; pointer-events: none;
}
.lifecycle-content { position: relative; z-index: 1; max-width: 520px; }
.lifecycle-title {
  font-size: clamp(3rem,6vw,5.5rem); line-height: 1;
  margin-bottom: 16px; letter-spacing: -0.04em;
}
.lifecycle-desc { font-size: 1.5rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   FEATURED
   ============================================================ */
.featured-grid { display: grid; gap: 48px; align-items: center; }
.featured-image {
  position: relative; aspect-ratio: 4/3; border-radius: 16px; overflow: hidden;
  max-height: 420px;
}
.featured-image img { width: 100%; height: 100%; object-fit: cover; }
.featured-title {
  font-size: clamp(2.5rem,5vw,4rem); line-height: 1.05;
  margin: 24px 0; letter-spacing: -0.04em;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-shell { max-width: 680px; margin: 0 auto; text-align: center; }
.newsletter-title { font-size: clamp(2.8rem, 5vw, 4.2rem); margin: 14px 0 16px; }
.newsletter-copy { max-width: 520px; margin: 0 auto 34px; color: var(--text-muted); font-size: 1.6rem; line-height: 1.7; }
.newsletter-form { max-width: 520px; margin: 0 auto; }
.newsletter-field {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 8px 8px 24px;
  border: 1px solid var(--border); border-radius: 100px;
  background: var(--bg-card); box-shadow: var(--shadow-card);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.newsletter-field:focus-within { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(21,94,239,0.12); }
.newsletter-field input {
  flex: 1; min-width: 0; border: none; background: none; outline: none;
  font-size: 1.6rem; padding: 14px 0; color: var(--fg);
}
.newsletter-field input::placeholder { color: var(--text-muted); }
.newsletter-btn { flex: none; border-radius: 100px; }
.newsletter-msg { min-height: 1.4em; margin-top: 16px; font-size: 1.4rem; }
.newsletter-msg.success { color: #34d399; }
.newsletter-msg.error { color: #f87171; }
@media (max-width: 560px) {
  .newsletter-field { flex-direction: column; align-items: stretch; padding: 14px; gap: 12px; border-radius: 22px; }
  .newsletter-field input { text-align: center; padding: 6px 0; }
  .newsletter-btn { width: 100%; justify-content: center; }
}

/* ============================================================
   CONTACT LINKS
   ============================================================ */
.contact-links { display: grid; grid-template-columns: repeat(4, 1fr); }
.contact-link-card {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px; border: 1px solid var(--border);
  font-size: 1.4rem; font-weight: 500;
  transition: all 0.4s cubic-bezier(0.64,0.04,0.35,1); border-radius: 0;
}
.contact-link-card:hover { border-color: var(--accent); color: var(--accent); }
.contact-link-card svg { transition: transform 0.4s; }
.contact-link-card:hover svg { transform: translate(4px,-4px); }

/* ============================================================
   PAGE HERO - Inner Pages
   ============================================================ */
.page-hero { padding: 160px 0 56px; }
.page-hero-title {
  font-size: clamp(4rem,8vw,7rem); line-height: 0.92; font-weight: 700;
  margin-top: 16px; max-width: 14ch; letter-spacing: -0.05em;
}
.page-hero-sub { font-size: 1.4rem; color: var(--text-muted); margin-top: 12px; }
.page-hero-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 1.3rem; color: var(--text-muted); transition: color 0.4s;
}
.back-link:hover { color: var(--fg); }

/* ============================================================
   SEARCH & FILTERS
   ============================================================ */
.search-box {
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1.5px solid var(--border); padding: 12px 0; min-width: 280px;
}
.search-box input { flex: 1; background: none; border: none; outline: none; font-size: 1.4rem; }
.search-box input::placeholder { color: var(--text-muted); }
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; padding-bottom: 40px; }
.filter-btn {
  font-size: 1.2rem; font-weight: 500; padding: 10px 22px;
  border-radius: 100px; border: 1px solid var(--border);
  color: var(--text-muted); transition: all 0.4s;
}
.filter-btn:hover { border-color: var(--fg); color: var(--fg); }
.filter-btn.active { background: var(--bg-card); color: var(--bg); border-color: var(--fg); }

/* ============================================================
   ARTISTS GRID
   ============================================================ */
.artists-grid { display: grid; gap: 28px; grid-template-columns: repeat(3, 1fr); }
.artist-grid-card {
  display: block; border-radius: 16px; overflow: hidden;
  background: var(--bg-card); transition: transform 0.5s cubic-bezier(0.64,0.04,0.35,1);
  box-shadow: var(--shadow-card);
}
.artist-grid-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-elevated); }
.artist-grid-image { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.artist-grid-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2,0.75,0.25,1);
}
.artist-grid-card:hover .artist-grid-image img { transform: scale(1.06); }
.artist-grid-info { padding: 20px 0; }
.artist-grid-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem; letter-spacing: -0.03em;
}
.artist-grid-genre {
  font-size: 1.1rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.12em;
}

/* ============================================================
   ARTIST DETAIL
   ============================================================ */
.artist-detail-header { display: grid; gap: 48px; align-items: center; margin-top: 32px; }
.artist-detail-bio {
  font-size: 1.6rem; color: var(--text-muted);
  line-height: 1.7; margin-top: 20px; max-width: 520px;
}
.artist-detail-social { display: flex; gap: 12px; margin-top: 24px; }
.artist-detail-image {
  position: relative; aspect-ratio: 4/5;
  border-radius: 16px; overflow: hidden;
}
.artist-detail-image img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   STATS
   ============================================================ */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.stat-item { border-top: 1px solid var(--border); padding-top: 18px; }
.stat-number { font-size: clamp(3rem,5vw,4.5rem); line-height: 1; letter-spacing: -0.04em; }
.stat-label { font-size: 1.3rem; color: var(--text-muted); margin-top: 8px; }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 12px; top: 0; bottom: 0; width: 1px; background: var(--border); }
.timeline-item { position: relative; padding-bottom: 44px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-year {
  position: absolute; left: -40px; top: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem; font-weight: 700; color: var(--accent); width: 24px; text-align: center;
}
.timeline-year::after {
  content: ''; position: absolute; left: 28px; top: 7px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}
.timeline-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.6rem; margin-bottom: 8px; }
.timeline-content p { font-size: 1.4rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   VALUES
   ============================================================ */
.values-grid { display: grid; gap: 24px; grid-template-columns: repeat(4, 1fr); }
.value-card {
  padding: 32px; border: 1px solid var(--border);
  border-radius: 16px; transition: border-color 0.4s, box-shadow 0.4s;
}
.value-card:hover { border-color: var(--accent); box-shadow: var(--shadow-elevated); }
.value-icon { margin-bottom: 20px; color: var(--accent); }
.value-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; margin-bottom: 10px; }
.value-desc { font-size: 1.4rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; gap: 64px; grid-template-columns: 1fr 1fr; }
.contact-intro { font-size: 1.6rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 36px; }
.contact-offices { margin-bottom: 32px; }
.office-card { padding: 18px 0; border-top: 1px solid var(--border); }
.office-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; margin-bottom: 8px; }
.office-card p { font-size: 1.3rem; color: var(--text-muted); line-height: 1.6; }
.contact-direct p { font-size: 1.3rem; color: var(--text-muted); margin-bottom: 6px; }
.contact-direct strong { color: var(--fg); }
.contact-direct a { color: var(--accent); transition: opacity 0.4s; }
.contact-direct a:hover { opacity: 0.7; }
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 1.2rem; font-weight: 500; }
.form-group .optional { font-weight: 400; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
  padding: 14px 0; border: none; border-bottom: 1.5px solid var(--border);
  background: none; outline: none; font-size: 1.5rem;
  transition: border-color 0.4s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-msg { font-size: 1.2rem; margin-top: 8px; }
.form-msg.success { color: var(--accent); }
.form-msg.error { color: #e53e3e; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-hero-image { aspect-ratio: 16/8; border-radius: 16px; overflow: hidden; margin-top: 48px; }
.about-hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   NEWS DETAIL
   ============================================================ */
.article-header { margin-top: 32px; }
.article-meta {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: 1rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 16px;
}
.article-category { color: var(--accent); font-weight: 600; }
.article-title {
  font-size: clamp(2.5rem,5vw,4rem); line-height: 1.08;
  max-width: 16ch; letter-spacing: -0.04em;
}
.article-image { aspect-ratio: 16/9; border-radius: 16px; overflow: hidden; margin-bottom: 48px; }
.article-image img { width: 100%; height: 100%; object-fit: cover; }
.article-lead { font-size: 1.8rem; line-height: 1.7; margin-bottom: 24px; }
.article-body p { font-size: 1.5rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 20px; }

/* ============================================================
   LEGAL
   ============================================================ */
.legal-nav {
  display: flex; gap: 4px; flex-wrap: wrap;
  padding-bottom: 36px; border-bottom: 1px solid var(--border); margin-bottom: 48px;
}
.legal-nav-link {
  font-size: 1.2rem; font-weight: 500; padding: 8px 18px;
  border-radius: 100px; color: var(--text-muted); transition: all 0.4s;
}
.legal-nav-link:hover { color: var(--fg); }
.legal-nav-link.active { background: var(--bg-card); color: var(--bg); }
.legal-content h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.8rem; margin: 36px 0 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1.5rem; margin: 24px 0 8px; }
.legal-content p { font-size: 1.4rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 12px; }
.legal-content ul { margin: 12px 0 12px 20px; }
.legal-content li {
  font-size: 1.4rem; line-height: 1.7;
  color: var(--text-muted); margin-bottom: 6px; list-style: disc;
}
.legal-table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.legal-table th, .legal-table td {
  text-align: left; padding: 10px 16px;
  font-size: 1.3rem; border-bottom: 1px solid var(--border);
}
.legal-table th { font-weight: 600; }

/* ============================================================
   404
   ============================================================ */
.error-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; }
.error-code {
  font-size: clamp(8rem,18vw,14rem); line-height: 1;
  color: var(--accent); opacity: 0.15; letter-spacing: -0.05em;
}
.error-title { font-size: clamp(2.5rem,5vw,3.5rem); margin: 16px 0; letter-spacing: -0.04em; }
.error-desc { color: var(--text-muted); margin-bottom: 32px; }

/* ============================================================
   FOOTER - Premium Multi-Column (WMG-style)
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
  background: var(--bg-card); color: var(--bg);
}
.footer-grid {
  display: grid; gap: 32px;
  grid-template-columns: 1.5fr repeat(3, 1fr) 1.2fr;
}
.footer-brand { max-width: 280px; }
.footer-logo { margin-bottom: 20px; }
.footer-logo-light { display: block; }
.footer-logo-dark { display: none; }
[data-theme="dark"] .footer-logo-light { display: none; }
[data-theme="dark"] .footer-logo-dark { display: block; }
.footer-tagline { font-size: 1.3rem; color: var(--text-muted); line-height: 1.6; margin-top: 20px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.social-link {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.15); border-radius: 50%;
  color: var(--text-muted); transition: all 0.4s;
}
.social-link:hover { border-color: var(--accent); color: var(--accent); }
.footer-heading {
  font-size: 1rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 18px; color: var(--text-muted);
}
.footer-link {
  display: block; font-size: 1.3rem; color: rgba(255,255,255,0.6);
  padding: 5px 0; transition: color 0.4s;
}
.footer-link:hover { color: #fff; }
.footer-newsletter-text { font-size: 1.3rem; color: var(--text-muted); margin-bottom: 16px; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 12px;   margin-top: 40px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 1.1rem; color: var(--text-muted);
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-consent {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 2000;
  background: var(--bg); border-top: 1px solid var(--border);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.12);
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.64,0.04,0.35,1);
  padding: 24px 0;
}
.cookie-consent.show { transform: translateY(0); }
.cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cookie-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; margin-bottom: 6px; }
.cookie-text p { font-size: 1.3rem; color: var(--text-muted); line-height: 1.6; }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ============================================================
   LABELS GRID
   ============================================================ */
.labels-grid { display: grid; gap: 24px; grid-template-columns: repeat(2, 1fr); }
.label-card {
  padding: 36px; border: 1px solid var(--border);
  border-radius: 16px; transition: border-color 0.4s, box-shadow 0.4s;
}
.label-card:hover { border-color: var(--accent); box-shadow: var(--shadow-elevated); }
.label-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.label-card-name { font-size: 1.8rem; }
.label-card-year { font-size: 1.1rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.label-card-desc { font-size: 1.4rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }
.label-card-meta { font-size: 1.2rem; color: var(--accent); font-weight: 500; }

/* ============================================================
   ANIMATIONS - Dynamic multi-directional reveals
   ============================================================ */
@keyframes drift { 50% { transform: translate3d(18px,-22px,0) rotate(7deg); } }

/* Reveal from bottom (default) */
.reveal-up {
  opacity: 0; transform: translateY(48px);
  transition: opacity 0.9s cubic-bezier(0.64,0.04,0.35,1), transform 0.9s cubic-bezier(0.64,0.04,0.35,1);
}
.reveal-up.visible { opacity: 1; transform: none; }

/* Reveal from left */
.reveal-left {
  opacity: 0; transform: translateX(-60px);
  transition: opacity 0.9s cubic-bezier(0.64,0.04,0.35,1), transform 0.9s cubic-bezier(0.64,0.04,0.35,1);
}
.reveal-left.visible { opacity: 1; transform: none; }

/* Reveal from right */
.reveal-right {
  opacity: 0; transform: translateX(60px);
  transition: opacity 0.9s cubic-bezier(0.64,0.04,0.35,1), transform 0.9s cubic-bezier(0.64,0.04,0.35,1);
}
.reveal-right.visible { opacity: 1; transform: none; }

/* Reveal from top */
.reveal-from-top {
  opacity: 0; transform: translateY(-48px);
  transition: opacity 0.9s cubic-bezier(0.64,0.04,0.35,1), transform 0.9s cubic-bezier(0.64,0.04,0.35,1);
}
.reveal-from-top.visible { opacity: 1; transform: none; }

/* Reveal with scale */
.reveal-scale {
  opacity: 0; transform: scale(0.92);
  transition: opacity 0.9s cubic-bezier(0.64,0.04,0.35,1), transform 0.9s cubic-bezier(0.64,0.04,0.35,1);
}
.reveal-scale.visible { opacity: 1; transform: none; }

/* Reveal with rotate */
.reveal-rotate {
  opacity: 0; transform: rotate(-3deg) translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.64,0.04,0.35,1), transform 0.9s cubic-bezier(0.64,0.04,0.35,1);
}
.reveal-rotate.visible { opacity: 1; transform: none; }

/* Stagger children animation */
.stagger-children > * {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.64,0.04,0.35,1), transform 0.7s cubic-bezier(0.64,0.04,0.35,1);
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: none; }

/* Clip reveal (WMG-style) */
.clip-reveal {
  clip-path: polygon(0 -50%, 100% -50%, 100% -50%, 0 -50%);
  transition: clip-path 1s cubic-bezier(0.64,0.04,0.35,1);
}
.clip-reveal.visible {
  clip-path: polygon(0 -50%, 100% -50%, 100% 150%, 0 150%);
}

/* Line draw animation */
.line-draw {
  width: 0; transition: width 1.2s cubic-bezier(0.64,0.04,0.35,1);
}
.line-draw.visible { width: 100%; }

.empty-state { padding: 80px 0; text-align: center; color: var(--text-muted); font-size: 1.5rem; }

/* ============================================================
   RESPONSIVE: Tablet
   ============================================================ */
@media (max-width: 1024px) {
  html { font-size: 60%; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1 / -1; max-width: 100%; }
  .footer-newsletter { grid-column: 1 / -1; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .header-inner { padding: 16px 24px; }
  .site-header.scrolled .header-inner { padding: 12px 24px; }
}

/* ============================================================
   RESPONSIVE: Mobile
   ============================================================ */
@media (max-width: 768px) {
  html { font-size: 56%; }
  .container { width: min(100% - 32px, 1400px); }
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .hero { min-height: auto; padding: 130px 0 48px; }
  .hero-gradient-orb, .hero-line, .hero-line-2 { display: none; }
  .hero-title { max-width: 100%; }
  .page-hero { padding: 130px 0 40px; }
  .page-hero-title { max-width: 100%; }
  .page-hero-row { flex-direction: column; align-items: flex-start; }
  .search-box { min-width: 100%; }
  .news-grid { grid-template-columns: 1fr; }
  .artists-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .artist-detail-header { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-links { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-newsletter { grid-column: 1 / -1; }
  .section { padding: clamp(60px,10vw,80px) 0; }
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
  .header-inner { padding: 14px 20px; }
  .site-header.scrolled .header-inner { padding: 10px 20px; }
}

@media (max-width: 480px) {
  html { font-size: 52%; }
  .artists-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-links { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .newsletter-input-wrap .btn { width: auto; }
  .newsletter-input-wrap { flex-wrap: wrap; }
  .newsletter-input-wrap input { flex: 1 1 100%; font-size: 1.4rem; }
  .newsletter-input-wrap .btn { flex: 0 0 auto; margin-top: 4px; }
  .labels-grid { grid-template-columns: 1fr; }
}

/* --- TV/Large --- */
@media (min-width: 1920px) { .container { max-width: 1700px; } }
@media (min-width: 2560px) { html { font-size: 68%; } }

/* --- Print --- */
@media print {
  .site-header, .site-footer, .mobile-menu, .cookie-consent { display: none; }
  body { color: #000; background: #fff; }
}

/* ============================================================
   LEGAL REQUEST FORM
   ============================================================ */
.legal-disclaimer { border: 1px solid var(--border); border-left: 3px solid var(--accent); border-radius: 14px; padding: 22px 24px; background: var(--bg-subtle); margin-bottom: 32px; }
.legal-disclaimer-title { font-size: 1.7rem; font-weight: 600; margin-bottom: 8px; }
.legal-disclaimer p { color: var(--text-muted); font-size: 1.45rem; line-height: 1.7; }
.legal-form { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label, .form-check span { font-size: 1.35rem; color: var(--text-secondary); }
.form-group input, .form-group select, .form-group textarea {
  padding: 14px 16px; border: 1px solid var(--border); border-radius: 12px; background: var(--bg-card); color: var(--fg); font-size: 1.5rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(21,94,239,0.15); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 1.4rem; color: var(--text-secondary); cursor: pointer; }
.form-check input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--accent); }
.legal-submit { margin-top: 4px; justify-content: center; }
.legal-result { border: 1px solid #34d399; background: rgba(52,211,153,0.08); border-radius: 14px; padding: 22px 24px; text-align: center; }
.legal-case-id { font-size: 1.5rem; color: var(--text-muted); letter-spacing: 0.04em; }
.legal-case-id strong { display: block; font-family: "Space Grotesk", sans-serif; font-size: 2.6rem; color: var(--text-primary); margin: 6px 0; letter-spacing: 0.06em; }
.legal-meta { margin-top: 36px; padding: 22px 24px; border: 1px solid var(--border); border-radius: 14px; background: var(--bg-subtle); }
.legal-meta p { color: var(--text-muted); font-size: 1.45rem; line-height: 1.7; }
.legal-meta strong { color: var(--text-primary); }
.legal-faq { margin-top: 40px; }
.legal-faq .section-title { font-size: 2.2rem; margin-bottom: 18px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   HTML SITEMAP
   ============================================================ */
.sitemap-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.sitemap-heading { font-size: 1.8rem; font-weight: 600; margin-bottom: 16px; letter-spacing: -0.02em; }
.sitemap-list { list-style: none; display: grid; gap: 10px; }
.sitemap-list a { color: var(--text-muted); font-size: 1.4rem; transition: color 0.3s; }
.sitemap-list a:hover { color: var(--text-primary); }
@media (max-width: 768px) { .sitemap-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .sitemap-cols { grid-template-columns: 1fr; } }

/* ============================================================
   IMAGE SEO (avoid CLS)
   ============================================================ */
img { max-width: 100%; height: auto; }
.artist-card-image img, .artist-grid-image img, .news-card-image img,
.article-image img, .featured-image img, .artist-detail-image img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }
.featured-image img { aspect-ratio: 4 / 3; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { display: flex; align-items: center; gap: 10px; font-size: 1.3rem; color: var(--text-muted); margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--text-primary); }
.breadcrumb span { opacity: 0.5; }

/* ============================================================
   PLATFORM CARDS (replaces pills)
   ============================================================ */
.platform-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.platform-card {
  display: flex; align-items: center; gap: 14px; padding: 18px 20px;
  border: 1px solid var(--border); border-radius: 14px; background: var(--bg-card);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; position: relative; overflow: hidden;
}
.platform-card::before {
  content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(21,94,239,0.08), transparent 55%);
  opacity: 0; transition: opacity 0.3s;
}
.platform-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow-elevated); }
.platform-card:hover::before { opacity: 1; }
.platform-logo {
  display: inline-flex; width: 48px; height: 48px; flex: none; align-items: center; justify-content: center;
  border-radius: 14px; background: var(--mist-blue); color: var(--accent);
  overflow: hidden; box-shadow: var(--shadow-card);
}
.platform-logo-img { width: 36px; height: 36px; object-fit: contain; display: block; }
.platform-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.platform-name { font-size: 1.5rem; font-weight: 600; line-height: 1.2; }
.platform-status { display: inline-flex; align-items: center; gap: 6px; font-size: 1.15rem; color: #34d399; }
.platform-status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 3px rgba(52,211,153,0.18); }
@media (max-width: 1024px) { .platform-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .platform-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .platform-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: grid; gap: 14px; max-width: 920px; }
.faq-item { border: 1px solid var(--border); border-radius: 14px; background: var(--bg-card); overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s; }
.faq-item[open] { border-color: var(--accent); box-shadow: var(--shadow-card); }
.faq-item summary {
  cursor: pointer; padding: 22px 26px; font-size: 1.65rem; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 2.4rem; font-weight: 300; color: var(--accent); flex: none;
  transition: transform 0.35s ease; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { overflow: hidden; max-height: 0; transition: max-height 0.4s ease, opacity 0.35s ease, padding 0.4s ease; opacity: 0; padding: 0 26px; }
.faq-item[open] .faq-body { max-height: 400px; opacity: 1; padding: 0 26px 24px; }
.faq-body p { color: var(--text-muted); line-height: 1.75; font-size: 1.5rem; }

/* ============================================================
   COUNTRIES GRID
   ============================================================ */
.countries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.country-card { display: flex; flex-direction: column; gap: 6px; padding: 22px; border: 1px solid var(--border); border-radius: 14px; background: var(--bg-card); transition: transform 0.3s, border-color 0.3s; }
.country-card:hover { transform: translateY(-4px); border-color: var(--text-primary); }
.country-flag { font-size: 2.6rem; }
.country-name { font-size: 1.7rem; font-weight: 600; }
.country-meta { font-size: 1.2rem; color: var(--text-muted); }
.related-links { display: flex; flex-wrap: wrap; gap: 16px; }
.related-links a { color: var(--text-secondary); border-bottom: 1px solid var(--border); padding-bottom: 2px; }
.related-links a:hover { color: var(--text-primary); }

@media (max-width: 1024px) { .countries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .countries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .countries-grid { grid-template-columns: 1fr; } }

/* ============================================================
   LANDING PAGES (location / topic)
   ============================================================ */
.landing-hero { padding: 160px 0 90px; }
.landing-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; max-width: 880px; }
.stat { padding: 22px; border: 1px solid var(--border); border-radius: 14px; background: var(--bg-card); }
.stat-value { font-family: "Space Grotesk", sans-serif; font-size: 3rem; font-weight: 700; color: var(--text-primary); line-height: 1; }
.stat-label { margin-top: 8px; font-size: 1.25rem; color: var(--text-muted); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { display: flex; flex-direction: column; gap: 12px; padding: 30px; border: 1px solid var(--border); border-radius: 16px; background: var(--bg-card); transition: transform 0.3s, border-color 0.3s; }
.service-card:hover { transform: translateY(-6px); border-color: var(--text-primary); }
.service-icon { display: inline-flex; width: 52px; height: 52px; align-items: center; justify-content: center; border-radius: 12px; background: var(--bg); color: var(--text-primary); border: 1px solid var(--border); }
.service-icon svg { width: 26px; height: 26px; }
.service-card-title { font-size: 1.9rem; font-weight: 600; }
.service-card-text { color: var(--text-muted); font-size: 1.4rem; line-height: 1.6; }
.service-bullets { list-style: none; display: grid; gap: 8px; margin-top: 6px; }
.service-bullets li { display: flex; align-items: center; gap: 8px; font-size: 1.3rem; color: var(--text-secondary); }
.service-bullets .tick { width: 16px; height: 16px; color: #34d399; flex: none; }

.section-alt { background: var(--bg); }
.section-lead { max-width: 720px; margin: 14px 0 0; color: var(--text-muted); font-size: 1.5rem; line-height: 1.7; }
.trust-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.trust-badge { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border: 1px solid var(--border); border-radius: 100px; font-size: 1.3rem; color: var(--text-secondary); background: var(--bg-card); }
.trust-badge svg { width: 16px; height: 16px; color: var(--text-primary); }

.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: stretch; }
.value-card { display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--border); border-radius: 16px; background: var(--bg-card); transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; }
.value-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: var(--shadow-elevated); }
.card-cta { display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 16px; font-size: 1.35rem; font-weight: 600; color: var(--accent); }
.card-cta svg { width: 14px; height: 14px; transition: transform 0.3s; }
.card-cta:hover svg { transform: translateX(4px); }
.value-icon { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 12px; background: var(--bg); color: var(--text-primary); margin-bottom: 14px; }
.value-icon svg { width: 24px; height: 24px; }
.value-title { font-size: 1.7rem; font-weight: 600; margin-bottom: 10px; }
.value-text { color: var(--text-muted); font-size: 1.4rem; line-height: 1.65; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.prose { color: var(--text-muted); font-size: 1.5rem; line-height: 1.8; margin: 14px 0; }
.eco-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.eco-tag { padding: 8px 14px; border: 1px solid var(--border); border-radius: 100px; font-size: 1.25rem; color: var(--text-secondary); }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card { display: flex; flex-direction: column; gap: 4px; padding: 20px 22px; border: 1px solid var(--border); border-radius: 14px; background: var(--bg-card); font-size: 1.6rem; font-weight: 500; transition: transform 0.3s, border-color 0.3s; }
.related-card:hover { transform: translateY(-4px); border-color: var(--text-primary); }
.related-type { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); font-weight: 400; }

.cta-banner { text-align: center; padding: 64px 40px; border: 1px solid var(--border); border-radius: 22px; background: radial-gradient(circle at 50% 0%, rgba(21,94,239,0.16), transparent 60%), var(--fg); }
.cta-title { font-family: "Space Grotesk", sans-serif; font-size: 3rem; font-weight: 700; }
.cta-text { max-width: 620px; margin: 16px auto 28px; color: var(--text-muted); font-size: 1.6rem; line-height: 1.7; }
.cta-banner .hero-cta { justify-content: center; }

@media (max-width: 1024px) {
  .services-grid, .value-grid, .related-grid { grid-template-columns: repeat(2, 1fr); }
  .landing-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .cta-title { font-size: 2.4rem; }
}
@media (max-width: 560px) {
  .services-grid, .value-grid, .related-grid, .landing-stats { grid-template-columns: 1fr; }
}

/* ============================================================
   TOPICS INDEX (services / genres / platforms)
   ============================================================ */
.topics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.topic-card { display: flex; flex-direction: column; gap: 10px; padding: 28px; border: 1px solid var(--border); border-radius: 16px; background: var(--bg-card); transition: transform 0.3s, border-color 0.3s; }
.topic-card:hover { transform: translateY(-5px); border-color: var(--text-primary); }
.topic-icon { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 12px; background: var(--bg); color: var(--text-primary); border: 1px solid var(--border); }
.topic-icon svg { width: 24px; height: 24px; }
.topic-title { font-size: 1.8rem; font-weight: 600; }
.topic-text { color: var(--text-muted); font-size: 1.4rem; line-height: 1.6; flex: 1; }
.topic-link { display: inline-flex; align-items: center; gap: 6px; font-size: 1.4rem; color: var(--text-primary); font-weight: 500; margin-top: 4px; }
.coming-soon-badge { position: absolute; top: 12px; right: 12px; padding: 4px 10px; font-size: 1.1rem; font-weight: 600; letter-spacing: 0.03em; color: var(--text-muted); background: var(--bg); border: 1px solid var(--border); border-radius: 9999px; text-transform: uppercase; }
@media (max-width: 1024px) { .topics-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .topics-grid { grid-template-columns: 1fr; } }

/* ============================================================
   INTERACTIVE WORLD MAP
   ============================================================ */
:root, [data-theme="light"] { --map-land: rgba(10,10,11,0.10); --map-stroke: rgba(10,10,11,0.07); }
[data-theme="dark"] { --map-land: rgba(255,255,255,0.12); --map-stroke: rgba(255,255,255,0.05); }

.section-global { padding-top: clamp(72px, 9vw, 120px); padding-bottom: clamp(72px, 9vw, 120px); }
.global-head { max-width: 720px; margin: 0 auto; text-align: center; }
.global-head .eyebrow { justify-content: center; display: flex; }
.global-copy { max-width: 560px; margin: 18px auto 0; }
.world-map-wrap { position: relative; margin: clamp(40px, 6vw, 72px) auto 0; max-width: 1000px; }
.world-map { width: 100%; height: auto; display: block; overflow: visible; }
.map-country { fill: var(--map-land); stroke: var(--map-stroke); stroke-width: 0.4; transition: fill 0.3s ease, opacity 0.3s ease; cursor: default; }
.map-country.is-supported { fill: var(--accent); cursor: pointer; }
.map-country.is-supported:hover,
.map-country.is-supported:focus { fill: var(--accent-hover); filter: drop-shadow(0 0 6px rgba(21,94,239,0.55)); outline: none; }
.map-country.is-active { fill: var(--accent); filter: drop-shadow(0 0 9px rgba(21,94,239,0.85)); }
.map-country.is-search-hit { fill: var(--accent-secondary); }
.map-tooltip { position: absolute; left: 0; top: 0; min-width: 250px; max-width: 280px; background: var(--bg-card); border: 1px solid var(--accent); border-radius: 14px; padding: 18px 20px; box-shadow: var(--shadow-elevated); opacity: 0; transform: translateY(8px); transition: opacity 0.25s ease, transform 0.25s ease; pointer-events: none; z-index: 30; }
.map-tooltip.show { opacity: 1; transform: translateY(0); }
.tt-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.tt-flag { font-size: 2.2rem; }
.tt-name { font-size: 1.7rem; font-weight: 700; }
.tt-services { list-style: none; display: grid; gap: 6px; margin-bottom: 12px; }
.tt-services li { display: flex; align-items: center; gap: 8px; font-size: 1.35rem; color: var(--text-secondary); }
.tt-services li svg { width: 15px; height: 15px; color: #34d399; flex: none; }
.tt-meta { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 12px; }
.tt-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 1.35rem; font-weight: 600; color: var(--accent); }

/* ============================================================
   FOOTER - PERMANENT DARK THEME
   ============================================================ */
.site-footer { background: #0B0B0B; color: rgba(255,255,255,0.72); border-top: 1px solid rgba(255,255,255,0.08); }
.site-footer .footer-logo-img.footer-logo-img { /* keep default */ }
.site-footer .logo-light-img { display: none; }
.site-footer .logo-dark-img { display: block; }
.site-footer .footer-heading { color: #FFFFFF; }
.site-footer .footer-tagline { color: rgba(255,255,255,0.55); }
.site-footer .footer-link { position: relative; color: rgba(255,255,255,0.62); transition: color 0.3s ease; padding-bottom: 2px; }
.site-footer .footer-link::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--accent); transition: width 0.3s ease; }
.site-footer .footer-link:hover { color: #FFFFFF; }
.site-footer .footer-link:hover::after { width: 100%; }
.site-footer .footer-newsletter-text { color: rgba(255,255,255,0.55); }
.site-footer .footer-social .social-link,
.site-footer .footer-social-inline .social-link { border: 1px solid rgba(255,255,255,0.16); border-radius: 50%; color: rgba(255,255,255,0.7); transition: all 0.3s ease; }
.platform-status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 3px rgba(52,211,153,0.18); }
@media (max-width: 1024px) { .platform-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .platform-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .platform-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: grid; gap: 14px; max-width: 920px; }
.faq-item { border: 1px solid var(--border); border-radius: 14px; background: var(--bg-card); overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s; }
.faq-item[open] { border-color: var(--accent); box-shadow: var(--shadow-card); }
.faq-item summary {
  cursor: pointer; padding: 22px 26px; font-size: 1.65rem; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 2.4rem; font-weight: 300; color: var(--accent); flex: none;
  transition: transform 0.35s ease; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { overflow: hidden; max-height: 0; transition: max-height 0.4s ease, opacity 0.35s ease, padding 0.4s ease; opacity: 0; padding: 0 26px; }
.faq-item[open] .faq-body { max-height: 400px; opacity: 1; padding: 0 26px 24px; }
.faq-body p { color: var(--text-muted); line-height: 1.75; font-size: 1.5rem; }

/* ============================================================
   COUNTRIES GRID
   ============================================================ */
.countries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.country-card { display: flex; flex-direction: column; gap: 6px; padding: 22px; border: 1px solid var(--border); border-radius: 14px; background: var(--bg-card); transition: transform 0.3s, border-color 0.3s; }
.country-card:hover { transform: translateY(-4px); border-color: var(--text-primary); }
.country-flag { font-size: 2.6rem; }
.country-name { font-size: 1.7rem; font-weight: 600; }
.country-meta { font-size: 1.2rem; color: var(--text-muted); }
.related-links { display: flex; flex-wrap: wrap; gap: 16px; }
.related-links a { color: var(--text-secondary); border-bottom: 1px solid var(--border); padding-bottom: 2px; }
.related-links a:hover { color: var(--text-primary); }

@media (max-width: 1024px) { .countries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .countries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .countries-grid { grid-template-columns: 1fr; } }

/* ============================================================
   LANDING PAGES (location / topic)
   ============================================================ */
.landing-hero { padding: 160px 0 90px; }
.landing-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; max-width: 880px; }
.stat { padding: 22px; border: 1px solid var(--border); border-radius: 14px; background: var(--bg-card); }
.stat-value { font-family: "Space Grotesk", sans-serif; font-size: 3rem; font-weight: 700; color: var(--text-primary); line-height: 1; }
.stat-label { margin-top: 8px; font-size: 1.25rem; color: var(--text-muted); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { display: flex; flex-direction: column; gap: 12px; padding: 30px; border: 1px solid var(--border); border-radius: 16px; background: var(--bg-card); transition: transform 0.3s, border-color 0.3s; }
.service-card:hover { transform: translateY(-6px); border-color: var(--text-primary); }
.service-icon { display: inline-flex; width: 52px; height: 52px; align-items: center; justify-content: center; border-radius: 12px; background: var(--bg); color: var(--text-primary); border: 1px solid var(--border); }
.service-icon svg { width: 26px; height: 26px; }
.service-card-title { font-size: 1.9rem; font-weight: 600; }
.service-card-text { color: var(--text-muted); font-size: 1.4rem; line-height: 1.6; }
.service-bullets { list-style: none; display: grid; gap: 8px; margin-top: 6px; }
.service-bullets li { display: flex; align-items: center; gap: 8px; font-size: 1.3rem; color: var(--text-secondary); }
.service-bullets .tick { width: 16px; height: 16px; color: #34d399; flex: none; }

.section-alt { background: var(--bg); }
.section-lead { max-width: 720px; margin: 14px 0 0; color: var(--text-muted); font-size: 1.5rem; line-height: 1.7; }
.trust-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.trust-badge { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border: 1px solid var(--border); border-radius: 100px; font-size: 1.3rem; color: var(--text-secondary); background: var(--bg-card); }
.trust-badge svg { width: 16px; height: 16px; color: var(--text-primary); }

.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: stretch; }
.value-card { display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--border); border-radius: 16px; background: var(--bg-card); transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; }
.value-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: var(--shadow-elevated); }
.card-cta { display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 16px; font-size: 1.35rem; font-weight: 600; color: var(--accent); }
.card-cta svg { width: 14px; height: 14px; transition: transform 0.3s; }
.card-cta:hover svg { transform: translateX(4px); }
.value-icon { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 12px; background: var(--bg); color: var(--text-primary); margin-bottom: 14px; }
.value-icon svg { width: 24px; height: 24px; }
.value-title { font-size: 1.7rem; font-weight: 600; margin-bottom: 10px; }
.value-text { color: var(--text-muted); font-size: 1.4rem; line-height: 1.65; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.prose { color: var(--text-muted); font-size: 1.5rem; line-height: 1.8; margin: 14px 0; }
.eco-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.eco-tag { padding: 8px 14px; border: 1px solid var(--border); border-radius: 100px; font-size: 1.25rem; color: var(--text-secondary); }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card { display: flex; flex-direction: column; gap: 4px; padding: 20px 22px; border: 1px solid var(--border); border-radius: 14px; background: var(--bg-card); font-size: 1.6rem; font-weight: 500; transition: transform 0.3s, border-color 0.3s; }
.related-card:hover { transform: translateY(-4px); border-color: var(--text-primary); }
.related-type { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); font-weight: 400; }

.cta-banner { text-align: center; padding: 64px 40px; border: 1px solid var(--border); border-radius: 22px; background: radial-gradient(circle at 50% 0%, rgba(21,94,239,0.16), transparent 60%), var(--fg); }
.cta-title { font-family: "Space Grotesk", sans-serif; font-size: 3rem; font-weight: 700; }
.cta-text { max-width: 620px; margin: 16px auto 28px; color: var(--text-muted); font-size: 1.6rem; line-height: 1.7; }
.cta-banner .hero-cta { justify-content: center; }

@media (max-width: 1024px) {
  .services-grid, .value-grid, .related-grid { grid-template-columns: repeat(2, 1fr); }
  .landing-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .cta-title { font-size: 2.4rem; }
}
@media (max-width: 560px) {
  .services-grid, .value-grid, .related-grid, .landing-stats { grid-template-columns: 1fr; }
}

/* ============================================================
   TOPICS INDEX (services / genres / platforms)
   ============================================================ */
.topics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.topic-card { display: flex; flex-direction: column; gap: 10px; padding: 28px; border: 1px solid var(--border); border-radius: 16px; background: var(--bg-card); transition: transform 0.3s, border-color 0.3s; }
.topic-card:hover { transform: translateY(-5px); border-color: var(--text-primary); }
.topic-icon { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 12px; background: var(--bg); color: var(--text-primary); border: 1px solid var(--border); }
.topic-icon svg { width: 24px; height: 24px; }
.topic-title { font-size: 1.8rem; font-weight: 600; }
.topic-text { color: var(--text-muted); font-size: 1.4rem; line-height: 1.6; flex: 1; }
.topic-link { display: inline-flex; align-items: center; gap: 6px; font-size: 1.4rem; color: var(--text-primary); font-weight: 500; margin-top: 4px; }
.coming-soon-badge { position: absolute; top: 12px; right: 12px; padding: 4px 10px; font-size: 1.1rem; font-weight: 600; letter-spacing: 0.03em; color: var(--text-muted); background: var(--bg); border: 1px solid var(--border); border-radius: 9999px; text-transform: uppercase; }
@media (max-width: 1024px) { .topics-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .topics-grid { grid-template-columns: 1fr; } }

/* ============================================================
   INTERACTIVE WORLD MAP
   ============================================================ */
:root, [data-theme="light"] { --map-land: rgba(10,10,11,0.10); --map-stroke: rgba(10,10,11,0.07); }
[data-theme="dark"] { --map-land: rgba(255,255,255,0.12); --map-stroke: rgba(255,255,255,0.05); }

.section-global { padding-top: clamp(72px, 9vw, 120px); padding-bottom: clamp(72px, 9vw, 120px); }
.global-head { max-width: 720px; margin: 0 auto; text-align: center; }
.global-head .eyebrow { justify-content: center; display: flex; }
.global-copy { max-width: 560px; margin: 18px auto 0; }
.world-map-wrap { position: relative; margin: clamp(40px, 6vw, 72px) auto 0; max-width: 1000px; }
.world-map { width: 100%; height: auto; display: block; overflow: visible; }
.map-country { fill: var(--map-land); stroke: var(--map-stroke); stroke-width: 0.4; transition: fill 0.3s ease, opacity 0.3s ease; cursor: default; }
.map-country.is-supported { fill: var(--accent); cursor: pointer; }
.map-country.is-supported:hover,
.map-country.is-supported:focus { fill: var(--accent-hover); filter: drop-shadow(0 0 6px rgba(21,94,239,0.55)); outline: none; }
.map-country.is-active { fill: var(--accent); filter: drop-shadow(0 0 9px rgba(21,94,239,0.85)); }
.map-country.is-search-hit { fill: var(--accent-secondary); }
.map-tooltip { position: absolute; left: 0; top: 0; min-width: 250px; max-width: 280px; background: var(--bg-card); border: 1px solid var(--accent); border-radius: 14px; padding: 18px 20px; box-shadow: var(--shadow-elevated); opacity: 0; transform: translateY(8px); transition: opacity 0.25s ease, transform 0.25s ease; pointer-events: none; z-index: 30; }
.map-tooltip.show { opacity: 1; transform: translateY(0); }
.tt-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.tt-flag { font-size: 2.2rem; }
.tt-name { font-size: 1.7rem; font-weight: 700; }
.tt-services { list-style: none; display: grid; gap: 6px; margin-bottom: 12px; }
.tt-services li { display: flex; align-items: center; gap: 8px; font-size: 1.35rem; color: var(--text-secondary); }
.tt-services li svg { width: 15px; height: 15px; color: #34d399; flex: none; }
.tt-meta { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 12px; }
.tt-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 1.35rem; font-weight: 600; color: var(--accent); }

/* ============================================================
   FOOTER - PERMANENT DARK THEME
   ============================================================ */
.site-footer { background: #0B0B0B; color: rgba(255,255,255,0.72); border-top: 1px solid rgba(255,255,255,0.08); }
.site-footer .footer-logo-img.footer-logo-img { /* keep default */ }
.site-footer .logo-light-img { display: none; }
.site-footer .logo-dark-img { display: block; }
.site-footer .footer-heading { color: #FFFFFF; }
.site-footer .footer-tagline { color: rgba(255,255,255,0.55); }
.site-footer .footer-link { position: relative; color: rgba(255,255,255,0.62); transition: color 0.3s ease; padding-bottom: 2px; }
.site-footer .footer-link::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--accent); transition: width 0.3s ease; }
.site-footer .footer-link:hover { color: #FFFFFF; }
.site-footer .footer-link:hover::after { width: 100%; }
.site-footer .footer-newsletter-text { color: rgba(255,255,255,0.55); }
.site-footer .footer-social .social-link,
.site-footer .footer-social-inline .social-link { border: 1px solid rgba(255,255,255,0.16); border-radius: 50%; color: rgba(255,255,255,0.7); transition: all 0.3s ease; }
.site-footer .footer-social .social-link:hover,
.site-footer .footer-social-inline .social-link:hover { border-color: var(--accent); color: #fff; box-shadow: 0 0 14px rgba(21,94,239,0.5); }
.site-footer .newsletter-input-wrap input { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); color: #fff; border-radius: 100px; }
.site-footer .newsletter-input-wrap input::placeholder { color: rgba(255,255,255,0.4); }
.site-footer .newsletter-input-wrap input:focus { border-color: var(--accent); outline: none; }
.site-footer .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.45); margin-top: 40px; padding-top: 28px; }
.site-footer .footer-bottom a { color: #fff; }

/* ============================================================
   AI SEARCH OPTIMIZATION (AISO) INTERACTIVE WIDGET
   ============================================================ */
.ai-summary-section {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.ai-summary-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.4rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.ai-summary-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-elevated);
  border-color: var(--accent);
}
.ai-summary-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient-hero);
  opacity: 0.8;
}
.ai-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.ai-summary-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--mist-blue);
  color: var(--accent);
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  border: 1px solid var(--border-light);
  letter-spacing: 0.02em;
}
.ai-badge-icon {
  stroke: var(--accent);
  animation: ai-pulse 2s infinite ease-in-out;
}
@keyframes ai-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; filter: drop-shadow(0 0 2px var(--accent)); }
  100% { transform: scale(1); opacity: 0.8; }
}
.ai-toggle-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--fg-secondary);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.ai-toggle-btn:hover {
  color: var(--fg);
  background: var(--border);
}
.ai-toggle-btn.active {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}
.ai-toggle-btn .ai-chevron-icon {
  transition: transform 0.3s ease;
}
.ai-toggle-btn.active .ai-chevron-icon {
  transform: rotate(180deg);
}
.ai-summary-lead {
  font-size: 1.5rem;
  color: var(--fg);
  line-height: 1.6;
}
.ai-takeaways-block {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--border);
}
.ai-takeaways-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 1.2rem;
}
.ai-takeaways-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-left: 0;
}
.ai-takeaway-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1.4rem;
  color: var(--fg-secondary);
}
.ai-check-icon {
  stroke: var(--accent);
  margin-top: 0.4rem;
  flex-shrink: 0;
}
.ai-hints-block {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.ai-hints-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ai-hints-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.ai-hint-link {
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 500;
  transition: opacity 0.2s ease;
}
.ai-hint-link:hover {
  text-decoration: underline;
  opacity: 0.8;
}
