/* ========================================
   MARKETING PAGE
   ======================================== */

.mkt-glow {
  text-shadow: 0 0 40px rgba(139, 92, 246, 0.4), 0 0 80px rgba(139, 92, 246, 0.2), 0 0 120px rgba(139, 92, 246, 0.1);
}

/* MARKETING HERO — full-screen, centered, no scroll */
.mkt-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 24px 48px;
  position: relative;
}

.mkt-hero .sales-hero-content {
  max-width: 980px;
  text-align: center;
}

.mkt-footer {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  width: 100%;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

/* TWO GLOWING ANIMATED CHOICE BUTTONS */
.mkt-choice {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 56px;
}

.mkt-choice-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 360px;
  height: 96px;
  padding: 0 32px;
  border-radius: 22px;
  text-decoration: none;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.01em;
  text-align: center;
  background: linear-gradient(135deg, rgba(20, 14, 36, 0.92) 0%, rgba(40, 22, 78, 0.92) 100%);
  border: 1.5px solid rgba(139, 92, 246, 0.6);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.45), 0 0 60px rgba(139, 92, 246, 0.2);
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  -webkit-animation: mktChoiceFloat 6s ease-in-out infinite, mktChoiceGlow 4s ease-in-out infinite;
  animation: mktChoiceFloat 6s ease-in-out infinite, mktChoiceGlow 4s ease-in-out infinite;
}

@-webkit-keyframes mktChoiceGlow {
  0%, 100% { box-shadow: 0 0 30px rgba(139, 92, 246, 0.45), 0 0 60px rgba(139, 92, 246, 0.2); }
  50%      { box-shadow: 0 0 40px rgba(192, 132, 252, 0.7), 0 0 90px rgba(139, 92, 246, 0.35); }
}
@keyframes mktChoiceGlow {
  0%, 100% { box-shadow: 0 0 30px rgba(139, 92, 246, 0.45), 0 0 60px rgba(139, 92, 246, 0.2); }
  50%      { box-shadow: 0 0 40px rgba(192, 132, 252, 0.7), 0 0 90px rgba(139, 92, 246, 0.35); }
}

.mkt-choice-btn:nth-child(2) {
  animation-delay: -3s;
}

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

/* Pulsing aura behind the button — wide-browser-safe with linear-gradient */
.mkt-choice-aura {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 22px;
  z-index: 0;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.6) 0%,
    rgba(192, 132, 252, 0.85) 50%,
    rgba(139, 92, 246, 0.6) 100%
  );
  background-size: 300% 300%;
  -webkit-filter: blur(8px);
  filter: blur(8px);
  opacity: 0.4;
  -webkit-animation: mktAuraSweep 6s ease-in-out infinite;
  animation: mktAuraSweep 6s ease-in-out infinite;
  pointer-events: none;
}

@-webkit-keyframes mktAuraSweep {
  0%, 100% { background-position: 0% 50%; opacity: 0.35; }
  50%      { background-position: 100% 50%; opacity: 0.6; }
}
@keyframes mktAuraSweep {
  0%, 100% { background-position: 0% 50%; opacity: 0.35; }
  50%      { background-position: 100% 50%; opacity: 0.6; }
}

/* Inner shimmer that sweeps across */
.mkt-choice-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 22px;
  z-index: 1;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 40%,
    rgba(192, 132, 252, 0.22) 50%,
    transparent 60%,
    transparent 100%
  );
  background-size: 200% 100%;
  background-position: 200% 0;
  -webkit-animation: mktShimmer 3.5s ease-in-out infinite;
  animation: mktShimmer 3.5s ease-in-out infinite;
  pointer-events: none;
}

@-webkit-keyframes mktShimmer {
  0%   { background-position: 200% 0; }
  60%  { background-position: -100% 0; }
  100% { background-position: -100% 0; }
}

@keyframes mktShimmer {
  0%   { background-position: 200% 0; }
  60%  { background-position: -100% 0; }
  100% { background-position: -100% 0; }
}

.mkt-choice-label {
  position: relative;
  z-index: 2;
  display: inline-block;
  white-space: nowrap;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 16px rgba(192, 132, 252, 0.45);
}

/* Hover */
.mkt-choice-btn:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(192, 132, 252, 0.9);
}

.mkt-choice-btn:hover .mkt-choice-aura {
  opacity: 0.85;
  filter: blur(20px);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .mkt-choice-btn,
  .mkt-choice-aura,
  .mkt-choice-shimmer {
    animation: none;
  }
}

.mkt-problem-copy {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.mkt-solution-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: -36px;
  margin-bottom: 48px;
}

/* ACCORDION */
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.accordion {
  background: rgba(10, 10, 15, 0.5);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.accordion.open {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.12);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: rgba(139, 92, 246, 0.05);
}

.accordion-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.accordion-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  background: rgba(139, 92, 246, 0.1);
  border-radius: 10px;
  flex-shrink: 0;
}

.accordion-icon svg {
  width: 22px;
  height: 22px;
}

.accordion-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.accordion-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.accordion-arrow {
  color: rgba(255, 255, 255, 0.3);
  transition: transform 0.4s ease, color 0.3s ease;
  flex-shrink: 0;
}

.accordion.open .accordion-arrow {
  transform: rotate(180deg);
  color: var(--purple);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding: 0 28px;
}

.accordion.open .accordion-body {
  max-height: 800px;
  padding: 0 28px 28px;
}

.acc-section {
  margin-bottom: 20px;
}

.acc-section h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.acc-section p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.acc-section ul {
  list-style: none;
  padding: 0;
}

.acc-section ul li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.acc-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  opacity: 0.6;
}

.acc-cta {
  display: inline-block;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: var(--white);
  background: transparent;
  border: 1.5px solid rgba(139, 92, 246, 0.5);
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.acc-cta:hover {
  background: rgba(139, 92, 246, 0.15);
  border-color: #8b5cf6;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

/* FINAL SUB */
.final-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: -32px;
  margin-bottom: 32px;
}

/* ========================================
   MOBILE
   ======================================== */
@media (max-width: 768px) {
  .mkt-choice {
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }

  .mkt-choice-btn {
    width: 100%;
    max-width: 320px;
    font-size: 16px;
    height: 78px;
    padding: 0 24px;
  }

  .mkt-problem-copy {
    font-size: 16px;
  }

  .accordion-header {
    padding: 18px 20px;
  }

  .accordion-title {
    font-size: 16px;
  }

  .accordion-tagline {
    font-size: 12px;
  }

  .accordion.open .accordion-body {
    padding: 0 20px 20px;
  }

  .final-sub {
    font-size: 15px;
  }
}
