/* ===== ECMBA Global Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #0057FF;
  --primary-dark: #0040CC;
  --primary-light: #4D8AFF;
  --dark-blue: #001B4B;
  --white: #FFFFFF;
  --light-bg: #F5F8FF;
  --text-dark: #0D0D0D;
  --text-medium: #333D4B;
  --text-muted: #6B7385;
  --border: #E0E8FF;
  --success: #00C853;
  --warning: #FFB300;
  --error: #FF3D3D;
  --shadow-sm: 0 2px 8px rgba(0, 87, 255, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 87, 255, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 27, 75, 0.18);
  --shadow-xl: 0 32px 80px rgba(0, 27, 75, 0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-ui: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

input,
textarea,
select {
  font-family: inherit;
  outline: none;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

/* UTILITIES */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-light {
  background: var(--light-bg);
}

.section-dark {
  background: var(--dark-blue);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 87, 255, 0.08);
  color: var(--primary);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}

.section-header {
  margin-bottom: 56px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-subtitle {
  margin: 0 auto;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.view-all-wrap {
  text-align: center;
  margin-top: 48px;
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 20px 0;
}

.divider.center {
  margin: 20px auto;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 87, 255, 0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 87, 255, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background: var(--light-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-dark {
  background: var(--dark-blue);
  color: var(--white);
}

.btn-dark:hover {
  background: #002a6b;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 13px;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 17px;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1DB954;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}

/* NAVIGATION */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 27, 75, 0.1);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 24px;
  color: var(--white);
  transition: var(--transition);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.nav.scrolled .nav-logo {
  color: var(--dark-blue);
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav.scrolled .nav-link {
  color: var(--text-medium);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 28px);
}

.nav-link:hover,
.nav.scrolled .nav-link:hover {
  color: var(--primary);
}

.nav-cta {
  background: var(--primary);
  color: white;
  padding: 10px 24px;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0, 87, 255, 0.3);
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 87, 255, 0.4);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav.scrolled .nav-hamburger span {
  background: var(--dark-blue);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 27, 75, 0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.nav-mobile-link {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: white;
  padding: 12px 32px;
  transition: var(--transition);
  text-align: center;
}

.nav-mobile-link:hover {
  color: var(--primary);
  transform: scale(1.05);
}

.nav-mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: white;
  font-size: 32px;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.nav-mobile-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-blue);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/1540406/pexels-photo-1540406.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center;
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 27, 75, 0.92) 0%, rgba(0, 87, 255, 0.55) 50%, rgba(0, 27, 75, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .accent {
  background: linear-gradient(90deg, #4D8AFF, #FFFFFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 520px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1s both;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
}

/* ABOUT */
.about-strip {
  background: linear-gradient(135deg, var(--dark-blue) 0%, #002A6B 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about-strip::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 87, 255, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-title {
  color: var(--white);
}

.about-text .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  max-width: 100%;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 87, 255, 0.2);
  border: 1px solid rgba(0, 87, 255, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.about-feature-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.about-feature-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-img-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
}

.about-img-item:first-child {
  grid-column: 1/-1;
  aspect-ratio: 16/9;
}

.about-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.5s ease;
}

.about-img-item:hover img {
  transform: scale(1.05);
}

/* ARTISTS */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.artist-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.artist-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.artist-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.artist-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.artist-card:hover .artist-img {
  transform: scale(1.08);
}

.artist-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 27, 75, 0.9) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.artist-card:hover .artist-overlay {
  opacity: 1;
}

.artist-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: white;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.artist-body {
  padding: 20px;
}

.artist-name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 4px;
}

.artist-genre {
  font-size: 13px;
  color: var(--primary);
  font-family: var(--font-ui);
  font-weight: 600;
  margin-bottom: 16px;
}

/* MEDIA */
.media-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  background: var(--light-bg);
  padding: 6px;
  border-radius: 100px;
  width: fit-content;
}

.media-tab {
  padding: 10px 28px;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  cursor: pointer;
  background: transparent;
}

.media-tab.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 16px rgba(0, 87, 255, 0.3);
}

.media-tab:hover:not(.active) {
  color: var(--primary);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.media-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.media-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.media-poster {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.media-card:hover .media-poster {
  transform: scale(1.04);
}

.media-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 27, 75, 0.95) 0%, rgba(0, 87, 255, 0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: var(--transition);
}

.media-type-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 87, 255, 0.9);
  backdrop-filter: blur(10px);
  color: white;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.media-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.media-card-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  opacity: 0;
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.media-card:hover .play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* MERCHANDISE */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--light-bg);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img {
  transform: scale(1.06);
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: white;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

.product-tag.sale {
  background: var(--error);
}

.product-body {
  padding: 18px;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 6px;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
}

.product-price .original {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 8px;
}

.product-actions {
  display: flex;
  gap: 8px;
}

/* RELEASES */
.releases-section {
  background: var(--dark-blue);
}

.releases-section .section-title {
  color: white;
}

.releases-section .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.releases-section .section-tag {
  background: rgba(0, 87, 255, 0.25);
  color: var(--primary-light);
}

.releases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.release-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.release-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 87, 255, 0.4);
}

.release-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.release-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.release-card:hover .release-img {
  transform: scale(1.05);
}

.release-type {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 87, 255, 0.9);
  color: white;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.release-body {
  padding: 20px;
}

.release-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.release-date {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-ui);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.countdown-small {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.countdown-unit-sm {
  text-align: center;
  background: rgba(0, 87, 255, 0.15);
  border: 1px solid rgba(0, 87, 255, 0.2);
  border-radius: 8px;
  padding: 8px 10px;
  min-width: 48px;
}

.countdown-num-sm {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.countdown-label-sm {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-ui);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* EVENTS */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.event-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 380px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.event-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.event-card:hover .event-bg {
  transform: scale(1.04);
}

.event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 27, 75, 0.9) 0%, rgba(0, 87, 255, 0.5) 100%);
}

.event-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.event-date-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  box-shadow: 0 4px 16px rgba(0, 87, 255, 0.4);
}

.event-date-day {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.event-date-month {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

.event-cat {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.event-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}

.event-location {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-actions {
  display: flex;
  gap: 12px;
}

/* NEWS */
.news-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 28px;
}

.news-card-featured,
.news-card-small {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.news-card-featured:hover,
.news-card-small:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.news-featured-img,
.news-small-img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-featured-img {
  aspect-ratio: 16/10;
}

.news-small-img {
  aspect-ratio: 16/9;
}

.news-card-featured:hover .news-featured-img,
.news-card-small:hover .news-small-img {
  transform: scale(1.03);
}

.news-featured-body {
  padding: 28px;
}

.news-card-small {
  display: flex;
  flex-direction: column;
}

.news-small-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-category {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.news-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.35;
  margin-bottom: 10px;
}

.news-card-small .news-title {
  font-size: 15px;
}

.news-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.news-meta {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-ui);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  margin-bottom: 16px;
}

.news-meta-dot {
  width: 3px;
  height: 3px;
  background: var(--text-muted);
  border-radius: 50%;
}

/* NEWSLETTER */
.newsletter {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark-blue) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter::before,
.newsletter::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.newsletter::before {
  width: 400px;
  height: 400px;
  top: -200px;
  left: -100px;
}

.newsletter::after {
  width: 300px;
  height: 300px;
  bottom: -150px;
  right: -50px;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: white;
  margin-bottom: 14px;
}

.newsletter-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.newsletter-input {
  flex: 1;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-right: none;
  border-radius: 100px 0 0 100px;
  font-size: 15px;
  color: white;
  font-family: var(--font-body);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
  border-color: rgba(255, 255, 255, 0.5);
  outline: none;
}

.newsletter-btn {
  padding: 16px 32px;
  background: white;
  color: var(--primary);
  border-radius: 0 100px 100px 0;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: var(--light-bg);
}

/* FOOTER */
.footer {
  background: var(--dark-blue);
  padding: 80px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  transition: var(--transition);
}

.footer-social:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-link:hover {
  color: white;
  transform: translateX(4px);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-link {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}

.footer-bottom-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* PAGE HERO */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
  padding-top: 120px;
  background: var(--dark-blue);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 27, 75, 0.95) 0%, rgba(0, 87, 255, 0.4) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  margin-bottom: 20px;
}

.page-hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: white;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.8);
}

/* STREAMING */
.streaming-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.streaming-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid transparent;
}

.streaming-btn:hover {
  transform: translateY(-2px);
}

.btn-spotify {
  background: #1DB954;
  color: white;
}

.btn-spotify:hover {
  background: #1aa34a;
  box-shadow: 0 6px 20px rgba(29, 185, 84, 0.35);
}

.btn-youtube {
  background: #FF0000;
  color: white;
}

.btn-youtube:hover {
  background: #cc0000;
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.35);
}

.btn-audiomack {
  background: #FF6600;
  color: white;
}

.btn-audiomack:hover {
  background: #cc5200;
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.35);
}

/* GALLERY */
.gallery-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex-shrink: 0;
  width: 260px;
  height: 180px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  scroll-snap-align: start;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* COUNTDOWN */
.countdown {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.countdown-unit {
  text-align: center;
  background: rgba(0, 87, 255, 0.08);
  border: 1px solid rgba(0, 87, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  min-width: 70px;
}

.countdown-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  display: block;
}

.countdown-label {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-ui);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.countdown.white .countdown-unit {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.countdown.white .countdown-num {
  color: white;
}

.countdown.white .countdown-label {
  color: rgba(255, 255, 255, 0.5);
}

/* FORMS */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 87, 255, 0.08);
}

.form-input::placeholder {
  color: #AAB4C8;
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236B7385' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

/* PAYMENT */
.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.payment-method {
  padding: 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-medium);
}

.payment-method:hover,
.payment-method.active {
  border-color: var(--primary);
  background: rgba(0, 87, 255, 0.04);
  color: var(--primary);
}

.payment-method-icon {
  font-size: 22px;
  width: 32px;
  text-align: center;
}

/* TOAST */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--dark-blue);
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  max-width: 320px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 4px solid var(--primary);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.success {
  border-left-color: var(--success);
}

.toast.error {
  border-left-color: var(--error);
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 27, 75, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  overflow: hidden;
  transform: scale(0.92);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-xl);
}

.modal-overlay.open .modal {
  transform: scale(1);
}

.modal-header {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-blue);
}

.modal-close {
  width: 36px;
  height: 36px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: var(--transition);
  color: var(--text-muted);
}

.modal-close:hover {
  background: var(--border);
  color: var(--dark-blue);
}

.modal-body {
  padding: 32px;
}

.modal-footer {
  padding: 20px 32px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* PAGE TRANSITION */
.page-transition {
  animation: pageIn 0.5s ease forwards;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TAGS */
.tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
}

.tag-blue {
  background: rgba(0, 87, 255, 0.1);
  color: var(--primary);
}

.tag-dark {
  background: rgba(0, 27, 75, 0.08);
  color: var(--dark-blue);
}

/* CARD GENERIC */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-img-wrap {
  overflow: hidden;
  position: relative;
}

.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img {
  transform: scale(1.05);
}

.card-body {
  padding: 24px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.card-meta {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-ui);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-text {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .artists-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .merch-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .about-strip-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media(max-width:900px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .releases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 64px 0;
  }

  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .merch-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .releases-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input {
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
  }

  .newsletter-btn {
    border-radius: 100px;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }
}

/* VIDEO GRID */
.media-card-video-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.media-card-video {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  background: #000;
}

/* ===================================
   SERVICES PAGE STYLES
=================================== */

/* Section Label */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-label::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.text-center {
  text-align: center;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 50px;
  margin: 20px auto 0;
}

/* ======================
   PRICING CARDS
====================== */

.pricing-card {
  background: #fff;
  border-radius: 24px;
  padding: 35px 28px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #e8eefc;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 87, 255, .15);
}

.package-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 15px;
}

.price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
}

.price span {
  font-size: 1rem;
  font-weight: 600;
}

.price-note {
  color: #666;
  margin-bottom: 25px;
  font-size: .95rem;
}

.pricing-card ul {
  margin-bottom: 25px;
}

.pricing-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: #444;
  font-size: .95rem;
  line-height: 1.6;
}

.check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: rgba(0, 87, 255, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check svg {
  width: 13px;
  height: 13px;
  stroke: var(--primary);
  stroke-width: 3;
  fill: none;
}

/* Featured Card */

.pricing-card.featured {
  background: linear-gradient(135deg,
      #001B4B,
      #0057FF);
  color: white;
  transform: scale(1.04);
}

.pricing-card.featured .package-title,
.pricing-card.featured .price,
.pricing-card.featured ul li {
  color: white;
}

.pricing-card.featured .check {
  background: rgba(255, 255, 255, .2);
}

.pricing-card.featured .check svg {
  stroke: white;
}

.pricing-badge {
  position: absolute;
  top: 18px;
  right: -35px;
  background: #FFD700;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 40px;
  transform: rotate(45deg);
}

/* ======================
   ADDON CARDS
====================== */

.addon-card {
  background: white;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
  transition: all .3s ease;
  border: 1px solid #eef2ff;
}

.addon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 87, 255, .12);
}

.addon-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: rgba(0, 87, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.addon-info {
  flex: 1;
}

.addon-info h4 {
  font-size: 1.1rem;
  color: var(--dark-blue);
  margin-bottom: 6px;
}

.addon-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

/* ======================
   HERO BUTTONS
====================== */

.btn-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn-outline {
  border: 2px solid white;
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  transition: .3s;
}

.btn-outline:hover {
  background: white;
  color: var(--primary);
}

/* ======================
   RESPONSIVE
====================== */

@media (max-width: 768px) {

  .pricing-card {
    padding: 28px 20px;
  }

  .price {
    font-size: 2.3rem;
  }

  .addon-card {
    flex-direction: column;
    text-align: center;
  }

  .pricing-card.featured {
    transform: none;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn-group .btn,
  .btn-group .btn-outline {
    width: 100%;
  }
}

/* =========================
   SERVICE CARDS
========================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all .4s ease;
  border: 1px solid #eef2ff;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 87, 255, .15);
}

.service-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

.service-content {
  padding: 24px;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 12px;
}

.service-description {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.service-price {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
}

.book-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  transition: all .3s ease;
}

.book-btn:hover {
  background: #1ebc59;
  transform: translateY(-2px);
}

.book-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-image {
    height: 220px;
  }

  .service-content {
    padding: 20px;
  }
}

/* ==========================
LEGAL PAGES==========================*/
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 50vh;
}

/* Main Legal Section */
.legal-page {
  padding: 140px 0 80px;
  background: #f8faff;
  min-height: 100vh;
}

.legal-page .container {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Content Card */
.legal-page .container {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Label */
.section-label {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(0, 87, 255, .1);
  color: var(--primary-blue);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Title */
.legal-page h1 {
  font-size: 3rem;
  color: var(--dark-blue);
  margin-bottom: 10px;
}

.legal-updated {
  color: #888;
  margin-bottom: 35px;
}

/* Headings */
.legal-page h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 15px;
  color: var(--primary-blue);
  border-left: 4px solid var(--primary-blue);
  padding-left: 15px;
}

/* Text */
.legal-page p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}

/* Lists */
.legal-page ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.legal-page li {
  margin-bottom: 12px;
  line-height: 1.8;
  color: #555;
}

/* Links */
.legal-page a {
  color: var(--primary-blue);
  font-weight: 600;
}

.legal-page a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  margin-top: 60px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* ==========================
   TABLETS
========================== */

@media (max-width: 768px) {

  .legal-page {
    padding-top: 120px;
  }

  .legal-page .container {
    padding: 30px 20px;
  }

  .legal-page h1 {
    font-size: 2rem;
  }

  .legal-page h2 {
    font-size: 1.25rem;
  }

  .legal-page p,
  .legal-page li {
    font-size: 15px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

/* ==========================
   MOBILE PHONES
========================== */

@media (max-width: 480px) {

  .legal-page {
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .legal-page .container {
    padding: 20px 15px;
    border-radius: 12px;
  }

  .legal-page h1 {
    font-size: 1.7rem;
  }

  .legal-page h2 {
    font-size: 1.1rem;
  }

  .legal-page p,
  .legal-page li {
    font-size: 14px;
    line-height: 1.8;
  }

  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }
}