/* ============================================
   RAMAAPPS MARKETING KIT — CSS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
  --bg-dark: #0a0a1a;
  --bg-card: #12122a;
  --bg-card-hover: #1a1a3a;
  --accent-gold: #d4af37;
  --accent-gold-light: #f5d76e;
  --accent-purple: #9333ea;
  --accent-emerald: #059669;
  --text-primary: #f1f1f1;
  --text-muted: #9ca3af;
  --border: rgba(255, 255, 255, 0.08);
  --glow-gold: 0 0 30px rgba(212, 175, 55, 0.3);
  --radius: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gold {
  color: var(--accent-gold);
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-gold), #b8860b);
  color: #000;
  font-weight: 700;
  font-size: .75rem;
  padding: .35rem 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ─── HEADER ─── */
.mk-header {
  text-align: center;
  padding: 4rem 1.5rem 3rem;
  background: linear-gradient(180deg, #12122a 0%, var(--bg-dark) 100%);
  border-bottom: 1px solid var(--border);
}

.mk-header img.logo {
  height: 60px;
  margin-bottom: 1rem;
}

.mk-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: .75rem;
}

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

/* ─── NAV TABS ─── */
.mk-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: .75rem 0;
  overflow-x: auto;
}

.mk-nav ul {
  display: flex;
  gap: .5rem;
  list-style: none;
  justify-content: center;
  min-width: max-content;
  padding: 0 1rem;
}

.mk-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 500;
  padding: .5rem 1rem;
  border-radius: 8px;
  transition: all .2s;
  white-space: nowrap;
}

.mk-nav a:hover {
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.1);
}

/* ─── SECTIONS ─── */
.mk-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.mk-section:last-child {
  border-bottom: none;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: .5rem;
  text-align: center;
}

.section-desc {
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ─── CARDS ─── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform .3s, box-shadow .3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* ─── OVERVIEW GRID ─── */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.overview-stat {
  text-align: center;
  padding: 2rem 1rem;
}

.overview-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.overview-stat .label {
  color: var(--text-muted);
  font-size: .85rem;
  margin-top: .25rem;
}

/* ─── PRODUCT CARDS ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.product-card {
  text-align: center;
}

.product-card img.product-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .35rem;
}

.product-card .target-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  padding: .2rem .7rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}

.target-badge.adult {
  background: #7c3aed;
  color: #fff;
}

.target-badge.kids {
  background: #f59e0b;
  color: #000;
}

.target-badge.family {
  background: #06b6d4;
  color: #000;
}

.target-badge.group {
  background: #ef4444;
  color: #fff;
}

.product-card p {
  color: var(--text-muted);
  font-size: .85rem;
}

.product-card ul {
  list-style: none;
  text-align: left;
  margin-top: 1rem;
  font-size: .82rem;
  color: var(--text-muted);
}

.product-card li {
  padding: .25rem 0;
}

.product-card li::before {
  content: '✦ ';
  color: var(--accent-gold);
}

/* ─── PRICING ─── */
.pricing-box {
  background: linear-gradient(135deg, #1a1a3a, #12122a);
  border: 2px solid var(--accent-gold);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--glow-gold);
}

.pricing-box .original {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 1.1rem;
}

.pricing-box .sale-price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin: .5rem 0;
}

.pricing-box .save-badge {
  background: #ef4444;
  color: #fff;
  font-weight: 700;
  font-size: .8rem;
  padding: .3rem 1rem;
  border-radius: 50px;
  display: inline-block;
}

.commission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  gap: 1.5rem;
  margin-top: 2rem;
}

.text-center {
  text-align: center;
}

/* ─── MEDIA KIT ─── */
.media-cat-title {
  font-size: 1.1rem;
  margin: 2.5rem 0 1rem;
  color: var(--accent-gold);
  text-align: center;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.media-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: transform .3s;
}

.media-item:hover {
  transform: scale(1.03);
}

.media-item img,
.media-item video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
}

.media-item.logo-item img {
  aspect-ratio: 1;
  object-fit: contain;
  padding: 1rem;
  background: #1a1a3a;
}

.media-item .label {
  padding: .6rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.media-item .download-btn {
  display: block;
  background: var(--accent-gold);
  color: #000;
  font-size: .7rem;
  font-weight: 700;
  padding: .5rem;
  text-decoration: none;
  transition: opacity .2s;
  text-align: center;
}

.media-item .download-btn:hover {
  opacity: .8;
}

/* ─── STICKY DOWNLOAD BUTTON ─── */
.sticky-download-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, var(--accent-emerald), #047857);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(5, 150, 105, 0.4);
  cursor: pointer;
  transition: all .3s;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 700;
  user-select: none;
}

.sticky-download-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(5, 150, 105, 0.5);
}

.sticky-download-btn:active {
  transform: translateY(-2px) scale(1.02);
}

.sticky-btn-icon {
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.sticky-btn-text {
  font-size: .9rem;
  white-space: nowrap;
}

.sticky-btn-status {
  position: absolute;
  bottom: -1.5rem;
  right: 0;
  font-size: .7rem;
  background: rgba(0, 0, 0, 0.8);
  padding: .25rem .75rem;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .3s;
}

.sticky-btn-status:not(:empty) {
  opacity: 1;
}

@media (max-width: 768px) {
  .sticky-download-btn {
    bottom: 1rem;
    right: 1rem;
    padding: .75rem 1.25rem;
  }

  .sticky-btn-text {
    display: block;
    /* Show text on mobile */
    font-size: .8rem;
  }

  .sticky-btn-icon {
    font-size: 1.2rem;
  }
}

/* ─── COPY TEMPLATES ─── */
.copy-card {
  margin-bottom: 1.25rem;
  text-align: left;
}

.copy-card h4 {
  font-size: .9rem;
  margin-bottom: .5rem;
  color: var(--accent-gold);
}

.copy-card pre {
  background: #0d0d20;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  font-size: .82rem;
  line-height: 1.6;
  color: var(--text-muted);
  white-space: pre-wrap;
  word-wrap: break-word;
  font-family: 'Inter', sans-serif;
  position: relative;
}

.copy-btn {
  position: absolute;
  top: .75rem;
  right: .75rem;
  background: var(--accent-gold);
  color: #000;
  border: none;
  font-size: .7rem;
  font-weight: 700;
  padding: .3rem .75rem;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity .2s;
}

.copy-btn:hover {
  opacity: .8;
}

/* ─── TESTIMONIALS ─── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.testi-grid img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
}

/* ─── FAQ ─── */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: .95rem;
  font-weight: 600;
  text-align: left;
  padding: 1.25rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.faq-q .toggle {
  color: var(--accent-gold);
  font-size: 1.3rem;
  transition: transform .3s;
}

.faq-item.active .toggle {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.7;
}

.faq-item.active .faq-a {
  max-height: 300px;
  padding-bottom: 1rem;
}

/* ─── CTA ─── */
.cta-section {
  text-align: center;
  padding: 4rem 1.5rem;
  background: linear-gradient(180deg, var(--bg-dark), #12122a);
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-gold), #b8860b);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: transform .2s, box-shadow .2s;
  box-shadow: var(--glow-gold);
}

.cta-btn:hover {
  transform: scale(1.05);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .mk-nav ul {
    justify-content: flex-start;
  }

  .pricing-box {
    padding: 1.5rem;
  }

  .pricing-box .sale-price {
    font-size: 2.2rem;
  }
}