:root {
  --nav-bg: #230c3b;
  --cta-primary: #f59e0b;
  --dark-section: #14072a;
  --text: #1f2937;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, 92%); margin: 0 auto; }
.text-center { text-align: center; }

.announcement-bar {
  background: var(--cta-primary);
  color: #1a1a1a;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  font-size: 13px;
  padding: 10px 0;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
}

.announcement-bar.white-marquee {
  background: #ffffff;
  color: #475569;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-content span {
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
}

.marquee-content span::after {
  content: '•';
  margin-left: 40px;
  opacity: 0.3;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(35, 12, 59, 0.95);
  backdrop-filter: blur(8px);
}
.header.scrolled { box-shadow: 0 8px 25px rgba(15, 23, 42, 0.24); }
.nav-container {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: inline-flex;
  align-items: center;
}
.logo img {
  display: block;
  height: 44px;
  width: auto;
}
.nav-links { display: flex; }
.menu-root,
.submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-root {
  display: flex;
  gap: 18px;
  align-items: center;
}
.menu-root > li {
  position: relative;
  padding-bottom: 10px;
}
.menu-root > li > a {
  color: #e6d6fa;
  font-size: 14px;
  padding: 8px 2px;
  display: inline-block;
}
.submenu {
  position: absolute;
  left: 0;
  top: calc(100% - 2px);
  min-width: 220px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 16px 30px rgba(2, 6, 23, 0.18);
  display: none;
  z-index: 60;
}
.submenu li {
  position: relative;
}
.submenu a {
  display: block;
  color: #1f2937;
  font-size: 13px;
  padding: 9px 12px;
}
.submenu a:hover {
  background: #f8fafc;
}
.has-submenu:hover > .submenu {
  display: block;
}
.submenu.nested {
  left: calc(100% - 2px);
  top: -1px;
}
.nav-actions { display: flex; gap: 10px; align-items: center; }
.header-btn { padding: 8px 16px; border-radius: 10px; font-size: 13px; font-weight: 600; }
.btn-outline { color: #fff; border: 1px solid #64517f; }
.btn-solid { background: var(--cta-primary); color: #fff; }
.mobile-menu-btn {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 20px;
}

.mobile-menu {
  display: none;
  background: #1d0a31;
  border-top: 1px solid #3b2556;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: #f3e8ff;
  border-bottom: 1px solid #2e1548;
  padding: 12px 4%;
}

.hero {
  background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.17), transparent 46%), var(--nav-bg);
  color: #fff;
  padding: 68px 0 56px;
}
.hero-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-visual {
  position: relative;
  perspective: 1200px;
}

.floating-icon {
    position: absolute;
    z-index: 10;
    pointer-events: none;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}

.icon-play {
    top: -30px;
    right: 20px;
    width: 60px;
    animation: float 6s ease-in-out infinite;
}

.icon-heart {
    bottom: 40px;
    left: -40px;
    width: 55px;
    animation: float 5s ease-in-out infinite 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.yt-dash {
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    transform: rotateX(8deg) rotateY(-12deg) rotateZ(1deg);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-visual:hover .yt-dash {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1.05);
}

.yt-dash-header {
    background: rgba(255,255,255,0.05);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.yt-dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.yt-dash-dot.red { background: #ff5f57; }
.yt-dash-dot.yellow { background: #ffbe2e; }
.yt-dash-dot.green { background: #2acf6e; }

.yt-dash-body { padding: 20px; display: flex; flex-direction: column; gap: 15px; }

.yt-stat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 14px;
}

.yt-stat-val { font-size: 24px; font-weight: 800; color: #fff; }
.yt-stat-label { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; margin-top: 4px; }

.yt-bars { display: flex; align-items: flex-end; gap: 8px; height: 60px; margin-top: 10px; }
.yt-bar { flex: 1; background: rgba(255,255,255,0.08); border-radius: 3px 3px 0 0; height: 0; transition: height 1s ease-out; }
.yt-bar.active { background: var(--cta-primary); box-shadow: 0 0 10px rgba(245,158,11,0.3); }
.badge {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--cta-primary);
  background: rgba(245, 158, 11, 0.12);
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.badge.dark { background: var(--nav-bg); color: #fff; border-color: var(--nav-bg); }
.badge.outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }

h1, h2, h3 { line-height: 1.2; margin: 10px 0; }
h1 { font-size: clamp(32px, 5vw, 48px); }
h2 { font-size: clamp(28px, 3vw, 36px); color: var(--nav-bg); }
.hero p { color: #e9dcfb; max-width: 650px; margin: 10px 0; }
.hero small { color: #d9c7ee; display: block; margin-top: 12px; }

.hero-features {
  margin: 22px 0;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.hero-features div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 8px 11px;
  font-size: 13px;
}
.hero-art {
  aspect-ratio: 1;
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, #f3e8ff);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 600;
  border: 0;
}
.btn-primary { background: var(--cta-primary); color: #fff; }
.cta-dark { background: var(--nav-bg); color: #fff; }

.trust-ticker {
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
}
.ticker-wrap {
  display: flex;
  width: max-content;
  animation: ticker 26s linear infinite;
}
.ticker-item {
  padding: 14px 24px;
  font-size: 14px;
  color: #475569;
  white-space: nowrap;
}
.ticker-item span { color: var(--cta-primary); font-weight: 700; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section { padding: 72px 0; }
.white-section { background: #fff; }
.dark-section {
  background: var(--dark-section);
  color: #fff;
}
.dark-section h2, .dark-section h3 { color: #fff; }
.dark-section .card p { color: #d1c7dd; }

.media-section { background: #f8fafc; overflow: hidden; }
.media-section h2 { margin-bottom: 40px; }

.media-marquee {
    position: relative;
    width: 100%;
}

.media-marquee-track {
    display: flex;
    width: max-content;
    gap: 60px;
    align-items: center;
    animation: media-scroll 30s linear infinite;
}

.media-marquee-track img {
    height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.media-marquee-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes media-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.grid {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}
.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.four { grid-template-columns: repeat(4, 1fr); }

.card {
  border: 1px solid rgba(245, 158, 11, 0.35);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
}
.card.light {
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}
.card strong {
  color: var(--cta-primary);
  display: inline-block;
  margin-top: 6px;
}

.grid-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.importance-text {
  text-align: left;
}

.importance-text h2 {
  margin: 15px 0 25px;
}

.importance-text p {
  color: #4b5563;
  margin-bottom: 20px;
  font-size: 16px;
}

@media (max-width: 840px) {
  .grid-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .importance-image {
    order: 2;
  }
  .importance-text {
    order: 1;
    text-align: center;
  }
}

/* New Pricing UI */
.pricing-section { background: #fdfdfd; padding: 80px 0; }

.package-tabs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 0 30px;
    margin-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.package-tabs::-webkit-scrollbar { display: none; }

.tab-btn {
    padding: 10px 20px;
    background: #FFBE00;
    color: #1a1a1a;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-btn.active {
    background: #FF0000;
    color: #fff;
}

.tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 190, 0, 0.3);
}

.price-card {
    position: relative;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 40px 24px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-tag {
    position: absolute;
    top: 0;
    left: 0;
    background: #8e44ad;
    color: #fff;
    padding: 6px 20px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 18px 0 18px 0;
    text-transform: uppercase;
}

.price-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 15px 0 25px;
    line-height: 1.2;
}

.price-pill {
    background: #d97d74;
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 25px;
    display: inline-block;
    width: fit-content;
}

.btn-campaign {
    background: #FFBE00;
    color: #1a1a1a;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-campaign:hover {
    background: #1a1a1a;
    color: #FFBE00;
}

.price-card.featured {
    border: 2px solid #FFBE00;
}

.faq-section { background: #fff; }
.faq-container {
  max-width: 900px;
  margin: 28px auto 0;
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
}
.faq-btn {
  width: 100%;
  border: 0;
  background: #f8fafc;
  padding: 14px 16px;
  text-align: left;
  font: inherit;
  font-weight: 600;
  color: #1e293b;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-content {
  display: none;
  padding: 0 16px 14px;
  color: #64748b;
  font-size: 14px;
}
.faq-item.active .faq-content { display: block; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

.service-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px;
  font-weight: 600;
  color: var(--nav-bg);
}

.final-cta-section {
  background: var(--cta-primary);
  padding: 72px 0;
}
.final-cta-section p { color: #3a1f00; }

.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 50px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 20px;
  padding-bottom: 24px;
}
.footer h3, .footer h4 { color: #fff; margin-top: 0; }
.footer a { display: block; color: #94a3b8; margin-bottom: 8px; }
.copyright {
  border-top: 1px solid #1e293b;
  text-align: center;
  color: #64748b;
  font-size: 13px;
  padding: 14px 0;
}

@media (max-width: 1024px) {
  .grid.four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 840px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: inline-block; }
  .hero-grid, .grid.three, .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .nav-actions .header-btn { display: none; }
  .grid.four { grid-template-columns: 1fr; }
  .hero-features { grid-template-columns: 1fr; }
}
