/* === INTENSE QUICKBOOSTS.GG THEME FOR CHEAPFLIX === */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
  --primary: #a259ff;
  --primary-dark: #6a36fc;
  --accent-start: #A020F0;
  --accent-end: #FF4DFF;
  --bg: #131218;
  --grid-line: rgba(162,89,255,0.13);
  --grid-line-strong: rgba(242,70,255,0.13);
  --headline: #fff;
  --body: #f3f3fa;
  --card-bg: rgba(35,33,54,0.85);
  --card-shadow: 0 0 32px 8px #a259ff66, 0 2px 24px #f246ff33, 0 1.5px 0 #fff1;
  --radius: 20px;
  --font-main: 'Inter', Arial, sans-serif;
}

html, body {
  height: 100%;
  min-height: 100vh;
}

body {
  font-family: 'Inter', sans-serif !important;
  color: #EEE !important;
  background-color: #0B0B12 !important;
  min-height: 100vh;
  height: 100%;
  position: relative;
  box-shadow: none !important;
  text-shadow: none !important;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
                    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
  pointer-events: none;
}

/* Typography */
h1, .company-name, .hero-title, .section-title {
  color: #FFF !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 32px #a259ffcc, 0 1px 0 #fff1;
}
h2, h3, h4, h5, h6 {
  color: var(--headline);
  font-family: var(--font-main);
  font-weight: 700;
  text-shadow: 0 2px 16px #a259ff88;
}
p, li, span, .card-desc, .how-we-work-text {
  color: #DDD !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
  text-shadow: 0 1px 8px #a259ff33;
}

/* Navbar */
.navbar {
  background: #181824 !important;
  box-shadow: 0 2px 12px #A020F033 !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 72px;
  z-index: 10;
  border-bottom: 1.5px solid #A020F0 !important;
}
.logo {
  font-size: 2.3rem;
  font-weight: 700 !important;
  color: #FFF !important;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 32px #a259ffcc, 0 1px 0 #fff1;
  user-select: none;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2.2rem;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: #EEE !important;
  text-decoration: none;
  font-weight: 600 !important;
  font-size: 1.12rem;
  transition: color 0.18s;
  position: relative;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 8px #a259ff33;
  background: none !important;
  border-radius: 0 !important;
}
.nav-links a.active, .nav-links a:hover {
  color: #FF4DFF !important;
  text-shadow: 0 2px 16px #f246ffcc;
  background: none !important;
}
.nav-links a.active::after, .nav-links a:hover::after {
  content: '';
  display: block;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end)) !important;
  border-radius: 2px;
  position: absolute;
  left: 0;
  bottom: -8px;
  box-shadow: 0 2px 12px #f246ff88;
}

/* Hero */
.hero {
  background: none !important;
  text-align: center;
  padding: 5rem 0 3rem 0;
  position: relative;
  z-index: 1;
}
.hero-logos { display: none; }
.company-name {
  font-size: 3.5rem;
  margin: 0.5rem 0 0.7rem 0;
}
.hero p {
  color: var(--body);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 auto 2.2rem auto;
  max-width: 600px;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 16px #a259ff55;
}
.cta-btn {
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end)) !important;
  color: #FFF !important;
  font-weight: 800;
  font-size: 1.18rem;
  border: none;
  border-radius: 16px;
  padding: 1.1em 2.5em;
  margin-top: 1.5rem;
  cursor: pointer;
  box-shadow: 0 6px 32px #a259ff88, 0 2px 12px #f246ff55;
  transition: background 0.18s, color 0.18s, transform 0.12s, box-shadow 0.18s;
  letter-spacing: 0.01em;
}
.cta-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 48px #f246ffcc, 0 2px 12px #a259ff88;
}

/* Section */
.section {
  margin: 2.5rem auto;
  max-width: 950px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: none !important;
  padding: 2.7rem 2.7rem;
  z-index: 1;
  border: 2.5px solid #a259ff33;
  backdrop-filter: blur(2px) saturate(1.1);
}
.section-title {
  color: var(--headline);
  font-size: 2.3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
  text-shadow: 0 4px 32px #a259ffcc;
}

/* Cards */
.catalogue-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 2.2rem;
}
.card, .subscription-card, .launch-offer-card {
  background: #121217 !important;
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0,0,0,0.7) !important;
  border: none !important;
  padding: 1.5rem !important;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: border 0.22s, box-shadow 0.22s, background 0.22s, transform 0.22s;
  min-height: 240px;
  cursor: pointer;
  overflow: hidden;
  font-family: var(--font-main);
}
.card:hover {
  border: 2.5px solid #f246ff;
  box-shadow: 0 12px 48px 0 #f246ffcc, 0 2px 24px #a259ffcc, 0 1.5px 0 #fff1;
  background: #2a2340ee;
  transform: translateY(-10px) scale(1.04);
  z-index: 5;
}
.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 8px #a259ff88);
}
.card-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--headline);
  font-family: var(--font-main);
  text-shadow: 0 2px 16px #a259ff88;
}
.card-desc {
  font-size: 1.08rem;
  color: var(--body);
  margin-bottom: 1.2rem;
  font-weight: 400;
  text-shadow: 0 1px 8px #a259ff33;
}
.card-price {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: #f246ff;
  text-shadow: 0 2px 16px #f246ff88;
}
.discount-sticker {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end)) !important;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 0.45rem 1.2rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px #a259ff88;
  z-index: 2;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 8px #f246ff88;
}
.add-btn, .whatsapp-btn, .remove-btn {
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end)) !important;
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 0.9rem 2rem;
  font-weight: 800;
  font-size: 1.08rem;
  cursor: pointer;
  margin-top: 0.6rem;
  box-shadow: 0 4px 24px #a259ff88, 0 2px 12px #f246ff55;
  transition: background 0.18s, color 0.18s, transform 0.13s, box-shadow 0.18s;
  font-family: var(--font-main);
  letter-spacing: 0.01em;
}
.add-btn:hover, .whatsapp-btn:hover, .remove-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 48px #f246ffcc, 0 2px 12px #a259ff88;
}

/* Package Builder */
.package-builder {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 2.7rem 2.2rem;
  box-shadow: 0 0 32px 8px #a259ff99, 0 2px 24px #f246ff77, 0 1.5px 0 #fff1;
  margin-top: 2.2rem;
  border: 2.5px solid #f246ff55;
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
  backdrop-filter: blur(2px) saturate(1.1);
}
.selected-card {
  background: #2a2340ee;
  border-radius: 12px;
  box-shadow: 0 2px 12px #a259ff88;
  padding: 1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 2px solid #a259ff55;
  font-weight: 700;
  color: var(--body);
  text-shadow: 0 1px 8px #a259ff33;
}
.package-summary {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  margin-top: 1rem;
}
#package-total {
  font-size: 1.15rem;
  font-weight: 800;
  color: #f246ff;
  text-shadow: 0 2px 16px #f246ff88;
}

/* Footer */
footer {
  background: #181824 !important;
  color: #bdbdf6 !important;
  text-align: center;
  padding: 2rem 0 1.5rem 0;
  font-size: 1.08rem;
  margin-top: 3.5rem;
  border-top: 1.5px solid #A020F0 !important;
  box-shadow: 0 -2px 24px #a259ff33;
}
footer a {
  color: #FF4DFF !important;
  text-decoration: none;
  font-weight: 600 !important;
  margin: 0 0.7em;
  transition: color 0.18s;
  text-shadow: 0 1px 8px #a259ff33;
}
footer a:hover {
  color: #A020F0 !important;
  text-shadow: 0 2px 16px #a259ffcc;
}

/* Responsive */
@media (max-width: 700px) {
  body {
    padding: 0 0.5em !important;
    box-sizing: border-box;
  }
  .navbar {
    flex-direction: column !important;
    align-items: stretch !important;
    height: auto !important;
    padding: 0.7em 0.2em 0.2em 0.2em !important;
    background: #181824ee !important;
    border-radius: 0 0 18px 18px !important;
    box-shadow: 0 2px 16px #a259ff33, 0 2px 0 #a259ff33 !important;
    border-bottom: 2px solid #232136 !important;
    position: relative;
    z-index: 20;
  }
  .logo {
    margin-bottom: 0.5em !important;
    text-align: center !important;
    font-size: 1.1rem !important;
    order: -1;
  }
  .nav-links {
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    width: 100% !important;
    padding: 0.2em 0 !important;
    gap: 0.5em !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .nav-links::-webkit-scrollbar {
    display: none;
  }
  .nav-links a {
    display: inline-block !important;
    margin-bottom: 0 !important;
    width: auto !important;
    min-width: 80px !important;
    max-width: 100% !important;
    text-align: center !important;
    font-size: 1rem !important;
    padding: 0.6em 1em !important;
    border-radius: 12px !important;
    background: #23213633 !important;
    color: #fff !important;
    font-weight: 700 !important;
    box-shadow: 0 1px 6px #a259ff22;
    transition: background 0.18s, color 0.18s;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: initial !important;
  }
  .nav-links a.active, .nav-links a:hover {
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end)) !important;
    color: #fff !important;
    box-shadow: 0 2px 12px #f246ff55;
  }
  .section, .package-builder {
    margin-bottom: 1.1em !important;
    padding: 0.7em 0.5em !important;
    border-radius: 16px !important;
    background: #181824ee !important;
    box-shadow: 0 2px 12px #a259ff22 !important;
  }
  .card, .subscription-card, .launch-offer-card {
    margin-bottom: 1em !important;
    padding: 0.7em 0.5em !important;
    border-radius: 16px !important;
    background: #232136ee !important;
    box-shadow: 0 2px 12px #a259ff33 !important;
    font-size: 0.97rem !important;
  }
  .catalogue-list > * {
    margin-bottom: 1em !important;
  }
  .card-title, .section-title {
    font-size: 1rem !important;
    font-weight: 800 !important;
    margin-bottom: 0.5em !important;
  }
  .section-title {
    font-size: 1.1rem !important;
    margin-bottom: 0.7em !important;
  }
  .hero-title {
    font-size: 1.3rem !important;
    margin-bottom: 0.3em !important;
    line-height: 1.15 !important;
  }
  #hero-subtext {
    font-size: 0.95rem !important;
    margin-bottom: 0.5em !important;
  }
  .add-btn, .whatsapp-btn, .remove-btn, .cta-btn {
    font-size: 0.97rem !important;
    padding: 0.6em 0.7em !important;
    min-height: 40px !important;
    border-radius: 12px !important;
    margin-top: 0.4em !important;
    width: 100%;
    box-sizing: border-box;
  }
  .selected-card {
    padding: 0.5em 0.5em !important;
    font-size: 0.97rem !important;
    gap: 0.3em !important;
    border-radius: 12px !important;
  }
  .package-summary {
    gap: 0.4em !important;
    margin-top: 0.4em !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .catalogue-list {
    padding: 0 !important;
  }
  .feature-list {
    margin: 0.7em 0 0 0 !important;
  }
  .feature-list li {
    font-size: 0.93rem !important;
    margin-bottom: 0.4em !important;
  }
  .feature-bullet {
    width: 22px !important;
    height: 22px !important;
    margin-right: 0.5em !important;
  }
}
@media (max-width: 600px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw;
  }
  .navbar {
    flex-direction: column !important;
    align-items: stretch !important;
    height: auto !important;
    padding: 0.7em 0.3em 0.7em 0.3em !important;
    gap: 0.2em !important;
  }
  .nav-links {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    padding: 0.5em 0 !important;
    gap: 0 !important;
  }
  .nav-links a {
    margin-bottom: 0.5em !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    text-align: left !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  .nav-links a:last-child {
    margin-bottom: 0 !important;
  }
  .logo {
    margin-bottom: 0.5em !important;
    text-align: left !important;
  }
  .section, .package-builder {
    margin-bottom: 1.2em !important;
    padding: 0.7em 0.3em !important;
    margin: 0.5rem 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }
  .catalogue-list {
    grid-template-columns: 1fr !important;
    gap: 0.5rem !important;
    margin: 0 !important;
    width: 100% !important;
  }
  .card, .subscription-card, .launch-offer-card {
    margin-bottom: 1.2em !important;
    padding: 0.7em 0.3em !important;
    margin: 0 0 1rem 0 !important;
    min-width: 0 !important;
    width: 100% !important;
    box-sizing: border-box;
    font-size: 0.9rem !important;
  }
  .card-title {
    font-size: 0.93rem !important;
  }
  .card-icon {
    width: 24px !important;
    height: 24px !important;
    font-size: 1rem !important;
  }
  .discount-sticker {
    font-size: 0.7rem !important;
    padding: 0.08rem 0.3rem !important;
    top: 0.1rem !important;
    right: 0.1rem !important;
  }
  .add-btn, .whatsapp-btn, .remove-btn {
    font-size: 0.9rem !important;
    padding: 0.3rem 0.7rem !important;
    margin-top: 0.15rem !important;
    min-height: 40px !important;
    width: 100%;
    box-sizing: border-box;
  }
  .selected-card {
    padding: 0.2rem 0.2rem !important;
    font-size: 0.9rem !important;
    gap: 0.2rem !important;
  }
  .package-summary {
    gap: 0.2rem !important;
    margin-top: 0.2rem !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .section-title {
    font-size: 1rem !important;
    margin-bottom: 0.3rem !important;
  }
  .hero-title {
    font-size: 1.1rem !important;
    margin-bottom: 0.3em !important;
  }
  #hero-subtext {
    font-size: 0.9rem !important;
    margin-bottom: 0.2em !important;
  }
  .cta-btn {
    font-size: 0.9rem !important;
    padding: 0.4em 0.7em !important;
    margin-top: 0.3rem !important;
    min-height: 40px !important;
    width: 100%;
    box-sizing: border-box;
  }
  .nav-links {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    gap: 0.1rem !important;
    margin-top: 0.1rem !important;
  }
  .nav-links a {
    display: block !important;
    width: 100% !important;
    padding: 0.7em 0.2em !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    min-height: 40px !important;
    box-sizing: border-box;
  }
  .logo {
    font-size: 1rem !important;
    margin-bottom: 0.2rem !important;
  }
  footer {
    font-size: 0.85rem !important;
    padding: 0.7rem 0 0.3rem 0 !important;
    margin-top: 0.7rem !important;
  }
}
@media (max-width: 400px) {
  .logo {
    font-size: 0.8rem !important;
  }
  .hero-title {
    font-size: 0.85rem !important;
  }
  .section-title {
    font-size: 0.8rem !important;
  }
  .card-title {
    font-size: 0.7rem !important;
  }
  .add-btn, .whatsapp-btn, .remove-btn, .cta-btn {
    font-size: 0.7rem !important;
    padding: 0.15rem 0.2rem !important;
    min-height: 36px !important;
  }
  .selected-card {
    font-size: 0.7rem !important;
  }
  .card, .subscription-card, .launch-offer-card {
    padding: 0.1rem 0.02rem !important;
    margin: 0 0 0.5rem 0 !important;
  }
  .section, .package-builder {
    padding: 0.5em 0.2em !important;
    margin-bottom: 0.7em !important;
  }
  .feature-bullet {
    width: 16px !important;
    height: 16px !important;
    margin-right: 0.3em !important;
  }
  .feature-list li {
    font-size: 0.8rem !important;
    margin-bottom: 0.2em !important;
  }
}

.launch-offer-card {
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end)) !important;
  color: #fff;
  border-radius: 18px;
  margin-bottom: 2.2rem;
  text-align: center;
  box-shadow: 0 4px 32px #a259ff88, 0 2px 12px #f246ff55;
  border: 2.5px solid #f246ff88;
  padding: 2rem 1.5rem 1.3rem 1.5rem;
  position: relative;
  z-index: 2;
  font-family: var(--font-main);
  animation: pop-glow 2.5s cubic-bezier(.39,.575,.56,1.000) infinite alternate;
  }
.launch-offer-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 16px #f246ffcc;
}
.launch-offer-desc {
    font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 8px #a259ffcc;
}
.launch-offer-note {
  font-size: 0.98rem;
  color: #fff;
  opacity: 0.92;
  margin-top: 0.3em;
  font-weight: 500;
  text-shadow: 0 1px 8px #a259ff88;
  }
@keyframes pop-glow {
  0% { box-shadow: 0 4px 32px #a259ff88, 0 2px 12px #f246ff55; }
  100% { box-shadow: 0 8px 48px #f246ffcc, 0 4px 24px #a259ffcc; }
  }
  
/* How We Work section - modern, not in a card */
#how-we-work.section {
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 2.5rem 0 2.5rem 0 !important;
  margin: 0 auto 2.5rem auto !important;
  max-width: 900px !important;
  position: relative;
}
#how-we-work .section-title {
  font-size: 2.1rem !important;
  font-weight: 800 !important;
  margin-bottom: 1.1rem !important;
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 16px #a020f055;
}
  .how-we-work-content {
  border-left: 6px solid;
  border-image: linear-gradient(180deg, var(--accent-start), var(--accent-end)) 1;
  padding-left: 2rem !important;
  margin-left: 0 !important;
  background: none !important;
  box-shadow: none !important;
  }
  .how-we-work-text {
  font-size: 1.35rem !important;
  font-weight: 600 !important;
  color: #EEE !important;
  text-align: center !important;
  max-width: 700px;
  margin: 0 auto !important;
  line-height: 1.7 !important;
}
.no-gimmicks-highlight {
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 800;
  }
  
/* Hero title styling */
.hero-title {
  font-size: 2.7rem !important;
  font-weight: 900 !important;
  color: #fff !important;
  text-align: center !important;
  line-height: 1.15 !important;
  margin-bottom: 0.7em !important;
  }
.cheapflix-brand, .no-gimmicks-highlight {
  font-size: inherit !important;
  font-weight: 900 !important;
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-transform: none !important;
  color: var(--accent-start) !important;
  }
  
/* Remove default purple glow from main tiles */
.card, .subscription-card, .launch-offer-card {
  box-shadow: 0 4px 24px rgba(0,0,0,0.7) !important;
  /* No purple glow by default */
}

/* Stronger purple glow on hover for YouTube and Spotify tiles */
.subscription-card.youtube:hover, .subscription-card.spotify:hover {
  box-shadow: 0 0 32px 8px #a259ffcc, 0 0 16px 4px #ff4dffcc, 0 2px 24px #a259ff99 !important;
  z-index: 2;
  transition: box-shadow 0.18s;
}

/* Card style to match attached image */
.subscription-card {
  background: #181824 !important;
  border-radius: 18px !important;
  box-shadow: 0 2px 16px 0 #000a, 0 1.5px 0 #fff1 !important;
  border: none !important;
  padding: 2rem 1.5rem 1.5rem 1.5rem !important;
  margin: 0 1.2rem 2.2rem 1.2rem !important;
  position: relative;
  min-width: 320px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  }

/* Feature list and custom bullet */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0 0;
}
.feature-list li {
  display: flex;
  align-items: center;
  font-size: 1.08rem;
  color: #fff;
  margin-bottom: 0.7em;
  font-weight: 500;
}
.feature-bullet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 0.7em;
  border-radius: 7px;
  background: #181824;
  box-shadow: 0 0 12px 2px #a259ffcc, 0 0 4px 1px #ff4dff99;
  border: 2px solid #a259ff;
  position: relative;
}
.feature-bullet svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* Center align all section headings */
.section-title, .company-name, .hero-title {
  text-align: center !important;
}

/* Remove purple radial-gradient overlays if present */
.main-bg, .main-overlay {
  background: none !important;
  box-shadow: none !important;
}

.container {
  box-shadow: none !important;
}

.flex-badge {
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
  color: #fff;
  font-size: 0.93em;
  font-weight: 700;
  border-radius: 7px;
  padding: 2px 8px;
  margin-left: 0.3em;
  align-self: flex-start;
  width: max-content;
  margin-top: 0;
}
@media (max-width: 600px) {
  .flex-badge {
    margin-top: 0.3em;
  }
} 
#first-month-animate {
  position: relative;
  display: inline-block;
  color: inherit;
  font-weight: inherit;
}
#first-month-animate::after {
  content: '';
  position: absolute;
  left: 0; bottom: -0.12em;
  width: 100%;
  height: 0.18em;
  background: linear-gradient(90deg, #a259ff 0%, #ff4dff 100%);
  border-radius: 1em;
  transform: scaleX(0);
  transform-origin: center;
  animation: underline-typewriter-center 1.4s cubic-bezier(.39,.575,.56,1.000) infinite;
  z-index: 1;
}
@keyframes underline-typewriter-center {
  0% { transform: scaleX(0); opacity: 1; }
  85% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(0); opacity: 0; }
  }
/* Remove the highlighter effect for #first-month-animate */
#first-month-animate::before { display: none !important; }
@keyframes highlight-bar-sweep { } 

.highlight {
  background: #fff89c;
  color: #222;
  padding: 0.08em 0.22em;
  border-radius: 0.18em;
  box-decoration-break: clone;
} 