/* =========================================
   FRED KOBBY — GLOBAL BRAND STYLESHEET
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Space+Grotesk:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

/* ── TOKENS ── */
:root {
  --white: #ffffff;
  --off-white: #f8f6f2;
  --light: #f0ede8;
  --text: #222222;
  --text-soft: #555555;
  --text-muted: #888888;
  --accent: #00c2c7;       /* warm champagne — not loud gold */
  --accent-deep: #ff4b5c;
  --accent-light: #ffe9f0;
  --accent-pale: #e7fbff;
  --border: #e8e4dd;
  --border-strong: #c8c0b0;
  --shadow-soft: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-mid: 0 8px 40px rgba(0,0,0,0.10);
  --shadow-strong: 0 20px 80px rgba(0,0,0,0.14);
  --radius: 4px;
  --radius-lg: 12px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Space Grotesk', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ── TYPOGRAPHY ── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
}
.label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.body-lg { font-size: 1.1rem; line-height: 1.75; color: var(--text-soft); }
.body-md { font-size: 0.95rem; line-height: 1.7; color: var(--text-soft); }
.body-sm { font-size: 0.8rem; line-height: 1.6; color: var(--text-muted); }

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
}
.container-narrow { max-width: 800px; }
.container-wide { max-width: 1440px; }
section { padding: clamp(4rem, 10vw, 8rem) 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 0.5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; } .mt-6 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--text);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--text);
}
.btn-outline:hover {
  background: var(--text);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
}
.btn-accent:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,169,110,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-ghost:hover {
  background: var(--accent);
  color: var(--white);
}
.btn svg { width: 16px; height: 16px; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  padding: 0.85rem 0;
  box-shadow: 0 1px 30px rgba(0,0,0,0.07);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
}
.navbar-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}
.navbar-logo span { color: var(--accent); }
.navbar-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.navbar-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  transition: color 0.25s;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.navbar-links a:hover { color: var(--accent); }
.navbar-links a:hover::after,
.navbar-links a.active::after { width: 100%; }
.navbar-links a.active { color: var(--accent); }
.navbar-cta { display: flex; align-items: center; gap: 1rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text);
  transition: color 0.25s;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu-close {
  position: absolute;
  top: 3.9rem; right: 2rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text);
  cursor: pointer;
}

/* ── WELCOME POPUP ── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(34,34,34,0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeInOverlay 0.5s 0.8s forwards;
}
@keyframes fadeInOverlay { to { opacity: 1; } }
.popup-card {
  background: var(--white);
  max-width: 540px;
  width: 90%;
  padding: 3.5rem 3rem;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  transform: translateY(30px);
  opacity: 0;
  animation: slideUpPopup 0.5s 1.1s cubic-bezier(0.4,0,0.2,1) forwards;
  box-shadow: var(--shadow-strong);
}
@keyframes slideUpPopup {
  to { transform: translateY(0); opacity: 1; }
}
.popup-card .label { margin-bottom: 1rem; }
.popup-card h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.popup-card p { color: var(--text-soft); font-size: 0.95rem; margin-bottom: 2rem; }
.popup-close {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
}
.popup-close:hover { color: var(--text); }
.popup-decoration {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}





  /* HERO CAROUSEL */
    .hero-carousel {
      position: relative;
      overflow: hidden;
      background: white;
    }
    .carousel-container {
      display: flex;
      transition: transform 0.5s ease;
    }
    .carousel-slide {
      min-width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 4rem 2rem;
      background: white;
    }
    .hero-title {
      font-size: clamp(3rem, 8vw, 6rem);
      font-weight: 800;
      margin-bottom: 1rem;
      color: #222;
    }
    .hero-title i { color: var(--accent); }
    .dynamic-text {
      font-size: 1.5rem;
      font-weight: 500;
      margin-bottom: 2rem;
      color: #444;
      min-height: 4rem;
    }
    .hero-buttons { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }
    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 0.8rem;
      margin-top: 2rem;
    }
    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--gray-mid);
      cursor: pointer;
      transition: all 0.2s;
    }
    .dot.active { background: var(--accent); width: 24px; border-radius: 20px; }
/* ── HERO / CAROUSEL ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 8vh, 7rem);
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0) 35%,
    rgba(255,255,255,0.85) 70%,
    rgba(255,255,255,0.98) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content .container 
.hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-soft);
  margin-bottom: 2rem;
  min-height: 2.5rem;
}
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero-indicators {
  position: absolute;
  bottom: 2rem;
  right: clamp(1.25rem, 5vw, 4rem);
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}
.hero-dot {
  width: 24px;
  height: 2px;
  background: var(--border-strong);
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.hero-dot.active {
  width: 48px;
  background: var(--accent);
}

/* ── SECTION HEADER ── */
.section-header {
  margin-bottom: 4rem;
}
.section-header.centered { text-align: center; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}
.section-desc { max-width: 520px; }
.section-header.centered .section-desc { margin: 0 auto; }

/* ── MUSIC CARDS ── */
.music-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--transition);
}
.music-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-mid);
}
.music-card-cover {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: var(--light);
}
.music-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.music-card:hover .music-card-cover img { transform: scale(1.05); }
.music-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(34,34,34,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.music-card:hover .music-card-overlay { opacity: 1; }
.play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.play-btn:hover { transform: scale(1.1); }
.play-btn svg { width: 22px; height: 22px; color: var(--text); }
.music-card-body { padding: 1.25rem; }
.music-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text);
}
.music-card-meta { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 1rem; }
.stream-links { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.stream-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: var(--transition);
}
.stream-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-pale);
}

/* ── VIDEO CARD ── */
.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-mid);
}
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--light);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-card-body { padding: 1rem 1.25rem; background: var(--white); }
.video-card-title { font-weight: 500; font-size: 0.9rem; color: var(--text); }
.video-card-sub { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ── AUDIOMACK EMBED ── */
.audiomack-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--off-white);
}
.audiomack-embed iframe { display: block; border-radius: 0; border: none; }

/* ── ABOUT ── */
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
}
.about-image-deco {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 180px;
  height: 180px;
  border-radius: var(--radius-lg);
  border: 8px solid var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-mid);
}
.about-image-deco img { width: 100%; height: 100%; object-fit: cover; }
.about-stat {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.about-stat:first-child { border-top: 1px solid var(--border); }
.about-stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.about-stat-num sup {
  font-size: 1.2rem;
  vertical-align: super;
  color: var(--accent);
}
.about-stat-label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }

/* ── BOOKING FORM ── */
.form-section { background: var(--off-white); }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.form-control {
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  width: 100%;
}
.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.15);
}
.form-control::placeholder { color: var(--text-muted); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ── BLOG CARDS ── */
.blog-card {
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  transition: var(--transition);
}
.blog-card:hover .blog-card-title { color: var(--accent); }
.blog-card:last-child { border-bottom: none; }
.blog-card-cat {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--text);
  transition: color 0.25s;
}
.blog-card-excerpt { font-size: 0.88rem; color: var(--text-soft); line-height: 1.65; margin-bottom: 1rem; }
.blog-card-meta { font-size: 0.72rem; color: var(--text-muted); }
.blog-card-img {
  width: 120px;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── SOCIAL BAR ── */
.social-links { display: flex; align-items: center; gap: 1rem; }
.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-pale);
  transform: translateY(-2px);
}
.social-link svg { width: 18px; height: 18px; }

/* ── FOOTER ── */
footer {
  background: var(--text);
  color: var(--white);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-brand span { color: var(--accent); }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-col-title {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.footer-social svg { width: 16px; height: 16px; }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ── DIVIDER ── */
.divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  margin: 1rem 0;
}
.divider.centered { margin: 1rem auto; }

/* ── PRICING CARD (DOWNLOAD) ── */
.download-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: var(--white);
  transition: var(--transition);
  position: relative;
}
.download-card:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow-mid);
  transform: translateY(-4px);
}
.download-card.featured {
  border-color: var(--accent);
  background: var(--accent-pale);
}
.download-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}
.download-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  margin: 0.5rem 0;
}
.download-price span { font-size: 1.2rem; vertical-align: super; }
.download-features { margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.65rem; }
.download-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}
.download-feature svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

/* ── PAYSTACK MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(34,34,34,0.55);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 90%;
  padding: 2.5rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.35s ease;
}
.modal-overlay.open .modal-card { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 1rem; right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
}
.modal-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.modal-desc { font-size: 0.88rem; color: var(--text-soft); margin-bottom: 1.5rem; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: clamp(7rem, 15vw, 11rem) 0 clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--border);
}
.page-hero-eyebrow { margin-bottom: 1rem; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.page-hero-desc { max-width: 600px; }

/* ── TICKER ── */
.ticker-wrap {
  overflow: hidden;
  background: var(--accent);
  padding: 0.75rem 0;
}
.ticker-track {
  display: flex;
  gap: 4rem;
  animation: tickerMove 20s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
}
.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
@keyframes tickerMove { to { transform: translateX(-50%); } }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .navbar-links, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .blog-card { grid-template-columns: 1fr; }
  .blog-card-img { width: 100%; aspect-ratio: 16/9; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-image-deco { display: none; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 3.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .popup-card { padding: 2.5rem 1.75rem; }
  .popup-card h2 { font-size: 2rem; }
  section { padding: 3rem 0; }
}
