/*
 * mahadev Theme Styles System
 * Each style changes design language (shapes, shadows, spacing, animations).
 * Works independently of color skins.
 *
 * 1. Edge     – Sharp, angular, bold borders
 * 2. Soft     – Rounded, gentle shadows, airy
 * 3. Glass    – Frosted, translucent, glow
 * 4. Vivid    – Bold gradients, dramatic, energetic
 * 5. Sleek    – Minimalist, thin borders, refined
 * 6. Modern   – Clean lines, amber accents, fade-up animations
 */

/* ========================================
   1. Edge
   Sharp corners, bold 2px borders,
   uppercase headings, tight spacing.
   ======================================== */

body.style-edge {
  --border-radius--large: 0;
  --border-radius--medium: 0;
  --border-radius--small: 0;
  --style-shadow-card: none;
  --style-shadow-card-hover: none;
  --style-border-width: 2px;
  --style-border-color: rgba(255, 255, 255, 0.2);
  --style-letter-spacing: 0.05em;
  --style-heading-weight: 700;
  --style-transition-speed: 0.15s;
}

body.style-edge h1,
body.style-edge h2,
body.style-edge h3,
body.style-edge h4 {
  letter-spacing: 0.05em;
  font-weight: 700;
  text-transform: uppercase;
}

/* Header */
body.style-edge .site-header {
  border-bottom-width: 2px;
  border-bottom-color: var(--color-secondary);
}

/* Buttons */
body.style-edge .btn-theme,
body.style-edge .btn-wa {
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

body.style-edge .nav_cta-btn-wrapper .btn-theme {
  border-radius: 0;
}

/* Cards */
body.style-edge .glass-card {
  border-radius: 0;
  border-width: 2px;
  border-color: var(--color-secondary);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.style-edge .features__card {
  border-radius: 0;
  border: 2px solid var(--style-border-color);
  border-top: 3px solid var(--color-secondary);
  transition: transform var(--style-transition-speed) ease;
}

body.style-edge .features__card:hover {
  box-shadow: none;
}

body.style-edge .features__cards--4 .features__card {
  border-top: 3px solid var(--color-secondary);
}

body.style-edge .features__cards--4 .features__card-icon {
  border-radius: 0;
}

body.style-edge .security__card-icon {
  border-radius: 0;
}

/* Journey */
body.style-edge .journey__step-num {
  border-radius: 0;
}

/* FAQ */
body.style-edge .our-faq__icon {
  border-radius: 0;
}

body.style-edge .our-faq__answer {
  border-radius: 0;
}

/* What Is */
body.style-edge .what-is__image img {
  border-radius: 0;
}

body.style-edge .what-is__header ul {
  border-radius: 0;
}

/* Payment */
body.style-edge .payment__logo {
  border-radius: 0;
  border-width: 2px;
}

/* Author */
body.style-edge .author-block__avatar {
  border-radius: 4px;
}

body.style-edge .author-block__inner {
  border-radius: 0;
}

body.style-edge .author-position {
  border-radius: 0;
}

/* Trust */
body.style-edge .trust__text {
  border-radius: 0;
}

/* Footer */
body.style-edge .footer-block {
  border-top-width: 3px;
  border-top-color: var(--color-secondary);
}

/* Responsible */
body.style-edge .responsible-box {
  border-radius: 0;
}

/* ========================================
   2. Soft
   Extra rounded, soft shadows,
   airy spacing, pill buttons.
   ======================================== */

body.style-soft {
  --border-radius--large: 1.5rem;
  --border-radius--medium: 1rem;
  --border-radius--small: 0.5rem;
  --style-shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
  --style-shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.12);
  --style-border-width: 0;
  --style-border-color: transparent;
  --style-transition-speed: 0.4s;
}

/* Cards */
body.style-soft .glass-card {
  border-radius: 1.5rem;
  box-shadow: var(--style-shadow-card);
  border: none;
}

body.style-soft .features__card {
  border-radius: 1.5rem;
  box-shadow: var(--style-shadow-card);
  border: none;
}

body.style-soft .features__card:hover {
  box-shadow: var(--style-shadow-card-hover);
  transform: translateY(-0.375em);
}

body.style-soft .features__cards--4 .features__card {
  border-top: none;
  border-radius: 1.5rem;
  box-shadow: var(--style-shadow-card);
}

body.style-soft .features__cards--4 .features__card-icon {
  border-radius: 50%;
}

body.style-soft .security__card-icon {
  border-radius: 50%;
}

/* Buttons */
body.style-soft .btn-theme,
body.style-soft .btn-wa {
  border-radius: 2em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

body.style-soft .nav_cta-btn-wrapper .btn-theme {
  border-radius: 2em;
}

/* Journey */
body.style-soft .journey__step-num {
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* FAQ */
body.style-soft .our-faq__icon {
  border-radius: 50%;
}

body.style-soft .our-faq__answer {
  border-radius: 1rem;
}

body.style-soft .our-faq__item {
  border-bottom-color: rgba(255, 255, 255, 0.04);
}

/* What Is */
body.style-soft .what-is__image img {
  border-radius: 1.5rem;
}

body.style-soft .what-is__header ul {
  border-radius: 1.5rem;
}

/* Payment */
body.style-soft .payment__logo {
  border-radius: 1rem;
  border: none;
  box-shadow: var(--style-shadow-card);
}

/* Author */
body.style-soft .author-block__inner {
  border-radius: 1.5rem;
  border: none;
  box-shadow: var(--style-shadow-card);
  overflow: hidden;
}

body.style-soft .author-position {
  border-radius: 2em;
}

/* Trust */
body.style-soft .trust__text {
  border-radius: 1.5rem;
}

/* Responsible */
body.style-soft .responsible-box {
  border-radius: 1.5rem;
}

/* ========================================
   3. Glass
   Glassmorphism — blur, transparency,
   glow effects, frosted cards.
   ======================================== */

body.style-glass {
  --style-shadow-card: 0 8px 32px rgba(0, 0, 0, 0.2);
  --style-border-color: rgba(255, 255, 255, 0.15);
  --style-transition-speed: 0.35s;
}

/* Header */
body.style-glass .site-header {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Glass card base */
body.style-glass .features__card,
body.style-glass .payment__logo,
body.style-glass .author-block__inner {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

body.style-glass .features__card--style-1 {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body.style-glass .features__card--style-2 {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

body.style-glass .features__card--style-2 h3,
body.style-glass .features__card--style-2 p,
body.style-glass .features__card--style-2 li {
  color: var(--color-white);
}

body.style-glass .features__card--style-2 .features__list--check svg {
  color: var(--color-secondary);
}

body.style-glass .features__card--style-3 {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

body.style-glass .features__card:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

body.style-glass .features__cards--4 .features__card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.style-glass .features__cards--4 .features__card-icon {
  background-color: rgba(255, 255, 255, 0.08);
}

body.style-glass .security__card-icon {
  background-color: rgba(255, 255, 255, 0.08);
}

/* Journey */
body.style-glass .journey__step-num {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-secondary);
}

/* FAQ */
body.style-glass .our-faq__answer {
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body.style-glass .our-faq__answer p {
  color: var(--color-light);
}

/* Trust */
body.style-glass .trust__text {
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

body.style-glass .trust__text > * {
  color: var(--color-light);
}

/* What Is */
body.style-glass .what-is__header ul {
  background-color: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Payment */
body.style-glass .payment__logo {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Author */
body.style-glass .author-block__inner {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

body.style-glass .author-block__inner::before {
  display: none;
}

body.style-glass .author-block {
  background: var(--color-dark);
}

body.style-glass .author-block__meta {
  color: var(--color-light);
}

body.style-glass .author-block__name {
  color: var(--color-secondary);
}

body.style-glass .author-block__date {
  color: var(--color-light);
}

body.style-glass .author-position {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-secondary);
}

/* ========================================
   4. Vivid
   Bold gradients, dramatic shadows,
   scale-on-hover, pulse animations.
   ======================================== */

body.style-vivid {
  --style-shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
  --style-shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.4);
  --style-transition-speed: 0.25s;
}

/* Cards */
body.style-vivid .features__card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

body.style-vivid .features__card:hover {
  transform: translateY(-0.5em) scale(1.02);
  box-shadow: var(--style-shadow-card-hover);
}

body.style-vivid .features__card--style-1 {
  background: linear-gradient(
    135deg,
    var(--color-card-dark),
    var(--color-primary)
  );
}

body.style-vivid .features__card--style-3 {
  background: linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-accent)
  );
  color: var(--color-black);
}

body.style-vivid .features__card--style-3 h3 {
  color: var(--color-black);
}

body.style-vivid .features__cards--4 .features__card:hover {
  transform: translateY(-0.5em) scale(1.02);
}

body.style-vivid .glass-card:hover {
  transform: translateY(-0.5em) scale(1.02);
}

/* Buttons */
body.style-vivid .btn-theme,
body.style-vivid .btn-wa {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

body.style-vivid .btn-theme:hover,
body.style-vivid .btn-wa:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Hero */
body.style-vivid .hero-block h1 {
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Journey */
body.style-vivid .journey__step-num {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: vivid-pulse 2s ease-in-out infinite;
}

@keyframes vivid-pulse {
  0%,
  100% {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
  }
}

/* FAQ */
body.style-vivid .our-faq__top:hover {
  transform: translateX(0.5em);
}

/* Payment */
body.style-vivid .payment__logo:hover {
  transform: scale(1.1);
}

/* Headings */
body.style-vivid h2 {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* WhatsApp */
body.style-vivid .whatsapp-sticky a {
  animation: vivid-wa-bounce 2s ease-in-out infinite;
}

@keyframes vivid-wa-bounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

/* ========================================
   5. Sleek
   Minimalist, thin 1px borders,
   refined letter-spacing, generous whitespace.
   ======================================== */

body.style-sleek {
  --border-radius--large: 0.25rem;
  --border-radius--medium: 0.125rem;
  --border-radius--small: 0.125rem;
  --style-shadow-card: none;
  --style-shadow-card-hover: none;
  --style-border-width: 1px;
  --style-border-color: rgba(255, 255, 255, 0.06);
  --style-letter-spacing: 0.03em;
  --style-heading-weight: 500;
  --style-transition-speed: 0.3s;
  --padding-global--padding-global: 3em;
}

/* Typography */
body.style-sleek h1,
body.style-sleek h2,
body.style-sleek h3,
body.style-sleek h4 {
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* Cards */
body.style-sleek .features__card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: none;
  border-radius: 0.25rem;
}

body.style-sleek .features__card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
  transform: translateY(-2px);
}

body.style-sleek .features__cards--4 .features__card {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.style-sleek .features__cards--4 .features__card-icon {
  border-radius: 0.125rem;
}

body.style-sleek .security__card-icon {
  border-radius: 0.125rem;
}

body.style-sleek .glass-card {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

/* Buttons */
body.style-sleek .btn-theme,
body.style-sleek .btn-wa {
  border-radius: 0.125rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}

body.style-sleek .nav_cta-btn-wrapper .btn-theme {
  border-radius: 0.125rem;
}

/* Journey */
body.style-sleek .journey__step-num {
  border-radius: 0.25rem;
  font-weight: 500;
}

/* FAQ */
body.style-sleek .our-faq__icon {
  border-radius: 0.125rem;
}

body.style-sleek .our-faq__answer {
  border-radius: 0.125rem;
}

body.style-sleek .our-faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* What Is */
body.style-sleek .what-is__image img {
  border-radius: 0.25rem;
}

body.style-sleek .what-is__header ul {
  border-radius: 0.25rem;
}

/* Payment */
body.style-sleek .payment__logo {
  border-radius: 0.125rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* Author */
body.style-sleek .author-block__inner {
  border-radius: 0.25rem;
  border-width: 1px;
}

body.style-sleek .author-position {
  border-radius: 0.125rem;
}

/* Header / Footer */
body.style-sleek .site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

body.style-sleek .footer-block {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* Trust */
body.style-sleek .trust__text {
  border-radius: 0.25rem;
}

/* Responsible */
body.style-sleek .responsible-box {
  border-radius: 0.25rem;
}

@media screen and (max-width: 767px) {
  body.style-sleek {
    --padding-global--padding-global: 1.5em;
  }
}

/* ========================================
   6. Modern
   Clean lines, refined spacing, subtle
   gradients, amber glow accents, fade-up
   animations. Inspired by mahadev-redesign.
   ======================================== */

body.style-modern {
  --border-radius--large: 0.875rem;
  --border-radius--medium: 0.75rem;
  --border-radius--small: 0.5rem;
  --style-shadow-card:
    0 1px 3px rgba(0, 0, 0, 0.12), 0 4px 20px rgba(0, 0, 0, 0.08);
  --style-shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.2);
  --style-border-width: 1px;
  --style-border-color: rgba(255, 255, 255, 0.06);
  --style-letter-spacing: -0.01em;
  --style-heading-weight: 700;
  --style-transition-speed: 0.3s;
}

/* Typography */
body.style-modern h1,
body.style-modern h2,
body.style-modern h3,
body.style-modern h4 {
  font-weight: 700;
  letter-spacing: -0.01em;
}

body.style-modern h1 {
  letter-spacing: -0.02em;
}

/* Header */
body.style-modern .site-header {
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Cards */
body.style-modern .glass-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.875rem;
}

body.style-modern .glass-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

body.style-modern .features__card {
  border-radius: 0.875rem;
  transition: all 0.3s ease;
}

body.style-modern .features__card:hover {
  transform: translateY(-0.25em);
  box-shadow: var(--style-shadow-card-hover);
}

body.style-modern .features__card--style-1 {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
}

body.style-modern .features__cards--4 .features__card {
  border-top: 2px solid var(--color-secondary);
  border-radius: 0.875rem;
}

body.style-modern .features__cards--4 .features__card:hover {
  border-color: var(--color-secondary);
}

body.style-modern .features__cards--4 .features__card-icon {
  border-radius: 0.625rem;
}

body.style-modern .security__card-icon {
  border-radius: 0.625rem;
}

/* Buttons */
body.style-modern .btn-theme {
  border-radius: 0.5rem;
  font-weight: 600;
  letter-spacing: 0;
  transition: all 0.2s ease;
}

body.style-modern .btn-wa {
  border-radius: 0.5rem;
}

body.style-modern .nav_cta-btn-wrapper .btn-theme {
  border-radius: 2em;
}

body.style-modern .btn-outline {
  border-radius: 0.5rem;
  border-color: rgba(255, 255, 255, 0.2);
}

body.style-modern .btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Hero */
body.style-modern .hero-block__overlay {
  background: linear-gradient(
    180deg,
    rgba(10, 14, 23, 0.7) 0%,
    rgba(10, 14, 23, 0.9) 100%
  );
  opacity: 1;
}

body.style-modern .hero-block__badge {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.25);
  color: var(--color-secondary);
}

body.style-modern .hero-block__stats {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.875rem;
  padding: 1.5em 2em;
  margin-top: 2em;
  border-top: none;
}

/* Journey */
body.style-modern .journey__step-num {
  border-radius: 0.625rem;
}

body.style-modern .journey {
  background: linear-gradient(
    180deg,
    var(--color-dark) 0%,
    var(--color-primary) 100%
  );
}

/* FAQ */
body.style-modern .our-faq__icon {
  border-radius: 0.5rem;
}

body.style-modern .our-faq__answer {
  border-radius: 0.75rem;
}

body.style-modern .faq {
  background: linear-gradient(
    180deg,
    var(--color-dark) 0%,
    var(--color-primary) 100%
  );
}

/* What Is */
body.style-modern .what-is__image img {
  border-radius: 0.875rem;
}

body.style-modern .what-is__header ul {
  border-radius: 0.75rem;
}

/* Payment */
body.style-modern .payment__logo {
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.03);
}

/* Author */
body.style-modern .author-block__inner {
  border-radius: 0.875rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

body.style-modern .author-position {
  border-radius: 0.375rem;
}

/* Trust */
body.style-modern .trust__text {
  border-radius: 0.875rem;
}

/* Footer */
body.style-modern .footer-block {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Responsible */
body.style-modern .responsible-box {
  border-radius: 0.75rem;
}

/* Fade-up animation base */
body.style-modern .fade-up {
  opacity: 0;
  transform: translateY(1.5em);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

body.style-modern .fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Style Overrides for New Blocks
   (Stats, Testimonials, Comparison)
   ======================================== */

/* --- Edge --- */
body.style-edge .stats__item {
  border-radius: 0;
  border: 2px solid var(--style-border-color);
  border-top: 3px solid var(--color-secondary);
}

body.style-edge .testimonials__card {
  border-radius: 0;
  border: 2px solid var(--style-border-color);
}

body.style-edge .testimonials__avatar {
  border-radius: 4px;
}

body.style-edge .comparison__table {
  border-radius: 0;
  border: 2px solid rgba(0, 0, 0, 0.15);
}

/* --- Soft --- */
body.style-soft .stats__item {
  border-radius: 1.5rem;
  box-shadow: var(--style-shadow-card);
  border: none;
}

body.style-soft .stats__item:hover {
  box-shadow: var(--style-shadow-card-hover);
}

body.style-soft .testimonials__card {
  border-radius: 1.5rem;
  box-shadow: var(--style-shadow-card);
  border: none;
}

body.style-soft .testimonials__card:hover {
  box-shadow: var(--style-shadow-card-hover);
}

body.style-soft .comparison__table {
  border-radius: 1.5rem;
  box-shadow: var(--style-shadow-card);
  border: none;
  overflow: hidden;
}

/* --- Glass --- */
body.style-glass .stats__item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

body.style-glass .testimonials__card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

body.style-glass .comparison__table {
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

body.style-glass .comparison__row:nth-child(odd) {
  background: rgba(255, 255, 255, 0.04);
}

body.style-glass .comparison__row:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

body.style-glass .comparison__label,
body.style-glass .comparison__value {
  color: var(--color-light);
}

body.style-glass .comparison__header h2,
body.style-glass .comparison__header p {
  color: var(--color-light);
}

body.style-glass .comparison__label {
  border-right-color: rgba(255, 255, 255, 0.06);
}

body.style-glass .comparison__row {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

/* --- Vivid --- */
body.style-vivid .stats__item:hover {
  transform: translateY(-0.5em) scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

body.style-vivid .stats__number {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

body.style-vivid .testimonials__card:hover {
  transform: translateY(-0.5em) scale(1.02);
}

body.style-vivid .comparison__row--highlight {
  background: linear-gradient(
    90deg,
    var(--color-secondary),
    var(--color-accent)
  ) !important;
}

/* --- Sleek --- */
body.style-sleek .stats__item {
  border-radius: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

body.style-sleek .testimonials__card {
  border-radius: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

body.style-sleek .testimonials__author {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

body.style-sleek .comparison__table {
  border-radius: 0.25rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* --- Modern --- */
body.style-modern .stats__item {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.875rem;
}

body.style-modern .stats__item:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--style-shadow-card-hover);
}

body.style-modern .testimonials__card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.875rem;
}

body.style-modern .testimonials__card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--style-shadow-card-hover);
}

body.style-modern .testimonials__author {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.style-modern .comparison__table {
  border-radius: 0.875rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

body.style-modern .comparison__row--highlight {
  background: linear-gradient(
    90deg,
    var(--color-secondary),
    var(--color-accent)
  ) !important;
}

/* =============================================================================
   TREND RADAR BLOCK
   acf/trend-radar — Market Intelligence dashboard with gold/dark aesthetic
   ============================================================================= */

/* ── Design tokens scoped to the block ── */
.trend-radar,
.strategy-guide {
  --tr-gold: #e9ba59;
  --tr-gold-dark: #bd803c;
  --tr-gold-dim: rgba(233, 186, 89, 0.14);
  --tr-gold-border: rgba(233, 186, 89, 0.25);
  --tr-glass: rgba(255, 255, 255, 0.04);
  --tr-glass-hover: rgba(255, 255, 255, 0.07);
  --tr-text-1: #ffffff;
  --tr-text-2: rgba(255, 255, 255, 0.65);
  --tr-text-3: rgba(255, 255, 255, 0.38);
  --tr-g-gold: linear-gradient(135deg, #bd803c, #e9ba59);
  --tr-g-glass: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  --tr-shadow-card: 0 4px 24px rgba(0, 0, 0, 0.55);
  --tr-shadow-hover:
    0 12px 40px rgba(0, 0, 0, 0.75), 0 0 28px rgba(233, 186, 89, 0.12);
  --tr-radius: 1rem;
  --tr-speed: 0.28s;
}

/* ── Keyframes ── */
@keyframes tr-radar-expand {
  0% {
    transform: translate(-50%, -50%) scale(0.55);
    opacity: 0.45;
  }
  60% {
    opacity: 0.12;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.45);
    opacity: 0;
  }
}
@keyframes tr-pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  70% {
    transform: scale(2.4);
    opacity: 0;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}
@keyframes tr-pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes tr-fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Outer section ── */
.trend-radar {
  position: relative;
  background-color: #000000;
  background-image: radial-gradient(
    ellipse 80% 50% at 50% -5%,
    rgba(233, 186, 89, 0.07) 0%,
    transparent 70%
  );
  padding-top: clamp(3rem, 8vw, 5rem);
  padding-bottom: clamp(3.5rem, 9vw, 6rem);
  overflow: hidden;
  contain: layout style;
}

/* ── Radar ring background ── */
.trend-radar__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.trend-radar__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #000 0%,
    transparent 15%,
    transparent 85%,
    #000 100%
  );
  pointer-events: none;
}
.radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(233, 186, 89, 0.09);
  animation: tr-radar-expand 6.5s ease-out infinite;
  will-change: transform, opacity;
}
.radar-ring--1 {
  width: 280px;
  height: 280px;
  animation-delay: 0s;
  animation-duration: 6s;
}
.radar-ring--2 {
  width: 520px;
  height: 520px;
  animation-delay: 1.2s;
  animation-duration: 6.5s;
}
.radar-ring--3 {
  width: 800px;
  height: 800px;
  animation-delay: 2.4s;
  animation-duration: 7s;
}
.radar-ring--4 {
  width: 1080px;
  height: 1080px;
  animation-delay: 3.6s;
  animation-duration: 7.5s;
}
.radar-ring--5 {
  width: 1400px;
  height: 1400px;
  animation-delay: 4.8s;
  animation-duration: 8s;
}

/* ── Inner wrapper ── */
.trend-radar__inner {
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.trend-radar__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}
@media screen and (min-width: 768px) {
  .trend-radar__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.trend-radar__header-left {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Live badge */
.tr-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.2rem 0.7rem;
  background: rgba(233, 186, 89, 0.08);
  border: 1px solid rgba(233, 186, 89, 0.3);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tr-gold);
  width: fit-content;
}
.tr-live-badge__dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tr-gold);
  flex-shrink: 0;
  animation: tr-pulse-dot 1.8s ease-in-out infinite;
}
.tr-live-badge__dot::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: rgba(233, 186, 89, 0.4);
  animation: tr-pulse-ring 1.8s ease-out infinite;
}

/* Section title */
.trend-radar__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--tr-text-1);
  margin-bottom: 0;
}
.tr-text-gold {
  background: var(--tr-g-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.trend-radar__subtitle {
  font-size: 0.875rem;
  color: var(--tr-text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── Card grid ── */
.trend-radar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media screen and (min-width: 640px) {
  .trend-radar__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Trend card ── */
.tr-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 1.5rem 1.25rem;
  background: var(--tr-g-glass);
  background-color: var(--tr-glass);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 2px solid var(--tr-gold);
  border-radius: var(--tr-radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--tr-shadow-card);
  transition:
    transform var(--tr-speed) cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow var(--tr-speed) cubic-bezier(0.4, 0, 0.2, 1),
    background-color var(--tr-speed) ease;
  contain: layout style;
  /* JS animates to visible */
  opacity: 0;
}
.tr-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2px;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--tr-gold-border),
    transparent
  );
  border-radius: var(--tr-radius) var(--tr-radius) 0 0;
  opacity: 0;
  transition: opacity var(--tr-speed) ease;
}
.tr-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--tr-shadow-hover);
  background-color: var(--tr-glass-hover);
}
.tr-card:hover::before {
  opacity: 1;
}
/* JS adds this class when card enters viewport */
.tr-card--visible {
  animation: tr-fade-up 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}
/* Card icon */
.tr-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 0.625rem;
  background: linear-gradient(
    135deg,
    rgba(189, 128, 60, 0.12),
    rgba(233, 186, 89, 0.06)
  );
  border: 1px solid var(--tr-gold-border);
  color: var(--tr-gold);
  flex-shrink: 0;
}
.tr-card__icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
/* Category label */
.tr-card__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tr-gold);
  opacity: 0.8;
  margin-bottom: 0.25rem;
  line-height: 1;
}
/* Card heading */
.tr-card__title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--tr-text-1);
  margin-bottom: 0;
  font-family: "Inter", sans-serif;
}
/* Card description */
.tr-card__body {
  font-size: 0.875rem;
  color: var(--tr-text-2);
  line-height: 1.65;
  flex-grow: 1;
}
/* Card footer */
.tr-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.tr-card__stat {
  font-size: 0.72rem;
  color: var(--tr-text-3);
}
.tr-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--tr-gold);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition:
    gap 0.15s ease,
    color 0.15s ease;
}
.tr-card__link:hover,
.tr-card__link:focus-visible {
  gap: 0.625rem;
  color: #f0ca7b;
  text-decoration: none;
}
.tr-card__link:focus-visible {
  outline: 2px solid var(--tr-gold);
  outline-offset: 3px;
  border-radius: 3px;
}
.tr-card__link svg {
  transition: transform 0.15s ease;
}
.tr-card__link:hover svg {
  transform: translateX(3px);
}

/* =============================================================================
   STRATEGY GUIDE BLOCK
   acf/strategy-guide — Premium educational content hub with scroll animations
   ============================================================================= */

/* ── Outer section ── */
.strategy-guide {
  position: relative;
  background-color: #000000;
  padding-top: clamp(3rem, 8vw, 5rem);
  padding-bottom: clamp(3.5rem, 9vw, 6rem);
  overflow: hidden;
  contain: layout style;
}
/* Top gold separator */
.strategy-guide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--tr-gold-border),
    transparent
  );
}

/* ── Header ── */
.strategy-guide__header {
  max-width: 540px;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}
/* Eyebrow */
.sg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tr-gold);
  margin-bottom: 1rem;
  line-height: 1;
}
.sg-eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--tr-gold);
  flex-shrink: 0;
}
/* Title */
.strategy-guide__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: var(--font-size--h2);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--tr-text-1);
  margin-bottom: 0.75rem;
}
/* Subtitle */
.strategy-guide__subtitle {
  font-size: 0.95rem;
  color: var(--tr-text-2);
  line-height: 1.65;
}

/* ── Journey wrapper ── */
.strategy-guide__journey {
  position: relative;
}

/* ── Card track: stacked on mobile, 3-col grid on desktop ── */
.sg-track {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
/* Horizontal snap scroll on mobile */
@media screen and (max-width: 767px) {
  .sg-track {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-inline: var(--padding-global--padding-global, 1.25rem);
    margin-inline: calc(-1 * var(--padding-global--padding-global, 1.25rem));
    padding-bottom: 0.75rem;
    scrollbar-width: thin;
    scrollbar-color: var(--tr-gold-border) transparent;
  }
  .sg-track::-webkit-scrollbar {
    height: 3px;
  }
  .sg-track::-webkit-scrollbar-track {
    background: transparent;
  }
  .sg-track::-webkit-scrollbar-thumb {
    background: var(--tr-gold-border);
    border-radius: 3px;
  }
}
/* 3-column grid on tablet+ */
@media screen and (min-width: 768px) {
  .sg-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  /* Last two cards in left columns — natural flow */
}

/* ── Strategy module card ── */
.sg-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem 1.5rem 1.5rem;
  background: var(--tr-g-glass);
  background-color: var(--tr-glass);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.25rem;
  box-shadow: var(--tr-shadow-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  min-width: 280px; /* mobile horizontal scroll */
  scroll-snap-align: start;
  contain: layout style;
  /* Scroll animation starting state — JS transitions to final state */
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.28s ease;
}
/* Bottom gold bar sweeps in on hover */
.sg-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--tr-g-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.sg-card:hover {
  transform: translateY(-8px) !important; /* override JS inline transform */
  box-shadow: var(--tr-shadow-hover);
  background-color: var(--tr-glass-hover);
}
.sg-card:hover::after {
  transform: scaleX(1);
}
.sg-card:focus-within {
  outline: 2px solid var(--tr-gold);
  outline-offset: 3px;
}
/* Module number badge */
.sg-card__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #000000;
  border: 1.5px solid var(--tr-gold-border);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--tr-gold);
  flex-shrink: 0;
  transition:
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}
.sg-card:hover .sg-card__number {
  border-color: var(--tr-gold);
  background: var(--tr-gold-dim);
  box-shadow: 0 0 18px rgba(233, 186, 89, 0.22);
}
/* Module icon */
.sg-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 0.875rem;
  background: linear-gradient(
    135deg,
    rgba(189, 128, 60, 0.12),
    rgba(233, 186, 89, 0.06)
  );
  border: 1px solid var(--tr-gold-border);
  color: var(--tr-gold);
  flex-shrink: 0;
}
.sg-card__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
/* Module title */
.sg-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--tr-text-1);
  letter-spacing: -0.01em;
  margin-bottom: 0;
  font-family: "Inter", sans-serif;
}
/* Bullet list */
.sg-card__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
  padding: 0;
  margin: 0;
}
.sg-card__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.85rem;
  color: var(--tr-text-2);
  line-height: 1.55;
  font-weight: 400;
}
.sg-card__bullets li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--tr-gold);
  flex-shrink: 0;
  margin-top: 8px;
  opacity: 0.7;
}
/* Reading time + progress bar */
.sg-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.sg-card__time {
  font-size: 0.72rem;
  color: var(--tr-text-3);
  font-weight: 500;
  white-space: nowrap;
}
.sg-progress {
  flex-grow: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
}
.sg-progress__fill {
  height: 100%;
  width: var(--bar-width, 60%);
  background: var(--tr-g-gold);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}
/* Trigger progress bar fill when card is visible */
.sg-card--visible .sg-progress__fill {
  transform: scaleX(1);
}
/* CTA button */
.sg-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1.125rem;
  background: transparent;
  border: 1px solid var(--tr-gold-border);
  border-radius: 0.625rem;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  color: var(--tr-gold);
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  align-self: flex-start;
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    gap 0.15s ease,
    box-shadow 0.28s ease;
}
.sg-card__cta:hover {
  background: var(--tr-gold-dim);
  border-color: var(--tr-gold);
  box-shadow: 0 0 16px rgba(233, 186, 89, 0.15);
  gap: 0.625rem;
  text-decoration: none;
  color: var(--tr-gold);
}
.sg-card__cta:focus-visible {
  outline: 2px solid var(--tr-gold);
  outline-offset: 3px;
}
.sg-card__cta svg {
  transition: transform 0.15s ease;
  flex-shrink: 0;
}
.sg-card__cta:hover svg {
  transform: translateX(3px);
}

/* ── Mobile scroll indicator dots ── */
.sg-dots {
  display: none;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .sg-dots {
    display: flex;
  }
}
.sg-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  transition:
    background 0.28s ease,
    transform 0.28s ease;
}
.sg-dot--active {
  background: var(--tr-gold);
  transform: scale(1.35);
}

/* ── Reduced motion overrides ── */
@media (prefers-reduced-motion: reduce) {
  .radar-ring,
  .tr-live-badge__dot,
  .tr-live-badge__dot::before {
    animation: none !important;
  }
  .tr-card {
    opacity: 1 !important;
    transform: none !important;
  }
  .sg-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .sg-progress__fill {
    transform: scaleX(1) !important;
  }
}

/* ── Focus states (accessibility) ── */
.tr-card:focus-within {
  outline: 2px solid var(--tr-gold);
  outline-offset: 3px;
}
