/*
Theme Name: JurisClub
Theme URI: https://www.jurisclub.com.br
Author: JurisClub
Author URI: https://www.jurisclub.com.br
Description: Tema customizado do JurisClub - Plataforma de proteção jurídica inteligente para MEI, Freelancers e Criadores de Conteúdo.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jurisclub
Tags: one-column, custom-menu, custom-logo, featured-images, full-width-template
*/

/* ===== CSS VARIABLES ===== */
:root {
  --jc-primary: #003D52;
  --jc-primary-light: #004d66;
  --jc-primary-dark: #002a3a;
  --jc-accent: #00E6D3;
  --jc-accent-hover: #00d4c2;
  --jc-coral: #FF5A47;
  --jc-gold: #FFD166;
  --jc-bg: #FAFAF8;
  --jc-bg-white: #ffffff;
  --jc-text: #2C3539;
  --jc-text-light: rgba(44, 53, 57, 0.65);
  --jc-text-lighter: rgba(44, 53, 57, 0.55);
  --jc-text-muted: rgba(44, 53, 57, 0.40);
  --jc-text-faint: rgba(44, 53, 57, 0.30);
  --jc-white-80: rgba(255, 255, 255, 0.80);
  --jc-white-60: rgba(255, 255, 255, 0.60);
  --jc-white-45: rgba(255, 255, 255, 0.45);
  --jc-white-40: rgba(255, 255, 255, 0.40);
  --jc-white-30: rgba(255, 255, 255, 0.30);
  --jc-white-25: rgba(255, 255, 255, 0.25);
  --jc-white-15: rgba(255, 255, 255, 0.15);
  --jc-white-08: rgba(255, 255, 255, 0.08);
  --jc-white-06: rgba(255, 255, 255, 0.06);
  --jc-radius: 0.75rem;
  --jc-radius-lg: 1rem;
  --jc-radius-xl: 1.25rem;
  --jc-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --jc-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --jc-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--jc-text);
  background-color: var(--jc-bg);
  line-height: 1.6;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
.font-display {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.1;
  font-weight: 700;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 1280px;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: 'Source Sans 3', sans-serif;
}

.btn-primary {
  background-color: var(--jc-primary);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--jc-primary-dark);
  box-shadow: 0 10px 25px -5px rgba(0, 61, 82, 0.15);
}

.btn-accent {
  background-color: var(--jc-accent);
  color: var(--jc-primary);
  font-weight: 700;
}

.btn-accent:hover {
  background-color: var(--jc-accent-hover);
  box-shadow: 0 10px 25px -5px rgba(0, 230, 211, 0.2);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(0, 61, 82, 0.15);
  color: var(--jc-primary);
}

.btn-outline:hover {
  background-color: rgba(0, 61, 82, 0.05);
}

.btn-ghost-light {
  background: rgba(0, 61, 82, 0.05);
  color: var(--jc-primary);
}

.btn-ghost-light:hover {
  background: rgba(0, 61, 82, 0.1);
}

.btn svg,
.btn .arrow-icon {
  transition: transform 0.2s ease;
}

.btn:hover svg,
.btn:hover .arrow-icon {
  transform: translateX(2px);
}

/* ===== BADGE ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.badge-accent {
  background-color: rgba(0, 230, 211, 0.1);
  color: var(--jc-primary);
}

.badge-coral {
  background-color: rgba(255, 90, 71, 0.15);
  color: var(--jc-coral);
}

/* ===== SECTION LABEL ===== */
.section-label {
  display: inline-block;
  color: var(--jc-accent);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-label-white {
  color: var(--jc-accent);
}

/* ===== FORM INPUTS ===== */
.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 61, 82, 0.1);
  background: #fff;
  color: var(--jc-primary);
  font-size: 0.9375rem;
  font-family: 'Source Sans 3', sans-serif;
  transition: all 0.2s ease;
  outline: none;
}

.form-input::placeholder {
  color: var(--jc-text-muted);
}

.form-input:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px rgba(0, 230, 211, 0.4);
}

.form-input-dark {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.form-input-dark::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-input-dark:focus {
  box-shadow: 0 0 0 2px rgba(0, 230, 211, 0.5);
  border-color: transparent;
}

/* ===== SCROLL REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }
.delay-6 { transition-delay: 0.48s; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 61, 82, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 1024px) {
  .header-inner {
    height: 5rem;
  }
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.header-logo img {
  height: 2.25rem;
  width: auto;
}

@media (min-width: 1024px) {
  .header-logo img {
    height: 2.5rem;
  }
}

.header-logo span {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--jc-primary);
  letter-spacing: -0.02em;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .header-nav {
    display: flex;
  }
}

.header-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(44, 53, 57, 0.7);
}

.header-nav a:hover {
  color: var(--jc-primary);
}

.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
}

.mobile-toggle {
  display: block;
  padding: 0.5rem;
  color: var(--jc-primary);
}

@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid rgba(0, 61, 82, 0.05);
  overflow: hidden;
}

.mobile-menu.open {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu nav {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu a {
  padding: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(44, 53, 57, 0.8);
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.mobile-menu a:hover {
  color: var(--jc-primary);
  background: rgba(0, 230, 211, 0.05);
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero-section {
    padding-top: 8rem;
    padding-bottom: 6rem;
  }
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--jc-bg) 0%, var(--jc-bg) 70%, rgba(0, 230, 211, 0.05) 100%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-heading {
  font-size: 2.5rem;
  line-height: 1.1;
  color: var(--jc-primary);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-heading {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-heading {
    font-size: 3.5rem;
  }
}

.hero-heading .highlight {
  position: relative;
  display: inline;
}

.hero-heading .highlight::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 0;
  right: 0;
  height: 0.75rem;
  background: rgba(0, 230, 211, 0.2);
  border-radius: 2px;
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(44, 53, 57, 0.7);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 32rem;
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-social-proof {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar-stack {
  display: flex;
}

.avatar-stack .avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border: 2px solid #fff;
  margin-left: -0.5rem;
}

.avatar-stack .avatar:first-child {
  margin-left: 0;
}

.avatar-stack .avatar:nth-child(1) { background: linear-gradient(135deg, rgba(0, 230, 211, 0.4), rgba(0, 61, 82, 0.3)); }
.avatar-stack .avatar:nth-child(2) { background: linear-gradient(135deg, rgba(0, 230, 211, 0.5), rgba(0, 61, 82, 0.2)); }
.avatar-stack .avatar:nth-child(3) { background: linear-gradient(135deg, rgba(0, 61, 82, 0.3), rgba(0, 230, 211, 0.4)); }
.avatar-stack .avatar:nth-child(4) { background: linear-gradient(135deg, rgba(0, 61, 82, 0.2), rgba(0, 230, 211, 0.5)); }

.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper img {
  width: 100%;
  border-radius: var(--jc-radius-xl);
  box-shadow: var(--jc-shadow-xl);
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 61, 82, 0.1), transparent);
  border-radius: var(--jc-radius-xl);
  pointer-events: none;
}

.hero-floating-card {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: #fff;
  border-radius: var(--jc-radius);
  box-shadow: var(--jc-shadow-lg);
  padding: 1rem;
  border: 1px solid rgba(0, 61, 82, 0.05);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .hero-floating-card {
    left: -2rem;
  }
}

.hero-floating-card .icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(0, 230, 211, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jc-accent);
}

/* ===== PAIN SECTION ===== */
.pain-section {
  padding: 5rem 0;
  background: #fff;
}

@media (min-width: 1024px) {
  .pain-section {
    padding: 7rem 0;
  }
}

.pain-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .pain-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pain-image {
  order: 2;
}

@media (min-width: 1024px) {
  .pain-image {
    order: 1;
  }
}

.pain-image img {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  border-radius: var(--jc-radius-xl);
}

@media (min-width: 1024px) {
  .pain-image img {
    max-width: none;
  }
}

.pain-content {
  order: 1;
}

@media (min-width: 1024px) {
  .pain-content {
    order: 2;
  }
}

.pain-heading {
  font-size: 1.875rem;
  color: var(--jc-primary);
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .pain-heading {
    font-size: 2.75rem;
  }
}

.pain-heading .text-coral {
  color: var(--jc-coral);
}

.pain-cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .pain-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.pain-card {
  padding: 1rem;
  border-radius: var(--jc-radius);
  border: 1px solid rgba(255, 90, 71, 0.1);
  background: rgba(255, 90, 71, 0.02);
  transition: border-color 0.2s ease;
}

.pain-card:hover {
  border-color: rgba(255, 90, 71, 0.2);
}

.pain-card svg {
  color: var(--jc-coral);
  margin-bottom: 0.625rem;
}

.pain-card h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--jc-primary);
  margin-bottom: 0.25rem;
}

.pain-card p {
  font-size: 0.875rem;
  color: var(--jc-text-lighter);
  line-height: 1.6;
}

/* ===== SOLUTION SECTION ===== */
.solution-section {
  padding: 5rem 0;
  background: var(--jc-bg);
}

@media (min-width: 1024px) {
  .solution-section {
    padding: 7rem 0;
  }
}

.solution-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .solution-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.solution-heading {
  font-size: 1.875rem;
  color: var(--jc-primary);
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .solution-heading {
    font-size: 2.75rem;
  }
}

.solution-heading .text-accent {
  color: var(--jc-accent);
}

.ai-callout {
  font-size: 0.9375rem;
  color: var(--jc-text-lighter);
  line-height: 1.6;
  background: rgba(0, 230, 211, 0.04);
  border: 1px solid rgba(0, 230, 211, 0.1);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  margin-bottom: 2rem;
}

.ai-callout strong {
  color: var(--jc-primary);
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.benefit-item svg {
  color: var(--jc-accent);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.benefit-item span {
  color: rgba(44, 53, 57, 0.8);
  font-size: 1rem;
  line-height: 1.6;
}

.solution-image img {
  width: 100%;
  max-width: 32rem;
  margin: 0 auto;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: 5rem 0;
  background: var(--jc-primary);
}

@media (min-width: 1024px) {
  .features-section {
    padding: 7rem 0;
  }
}

.features-heading {
  font-size: 1.875rem;
  color: #fff;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .features-heading {
    font-size: 2.75rem;
  }
}

.features-heading .text-accent {
  color: var(--jc-accent);
}

.features-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.feature-card {
  padding: 1.5rem 2rem;
  border-radius: var(--jc-radius-xl);
  background: var(--jc-white-06);
  border: 1px solid var(--jc-white-08);
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--jc-white-15);
}

.feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--jc-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--jc-white-45);
  line-height: 1.6;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-section {
  padding: 5rem 0;
  background: #fff;
}

@media (min-width: 1024px) {
  .how-section {
    padding: 7rem 0;
  }
}

.how-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .how-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
  }
}

.how-step {
  position: relative;
  text-align: center;
}

.how-step .step-number-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  margin-bottom: 1.5rem;
}

.how-step .step-bg {
  position: absolute;
  inset: 0;
  border-radius: var(--jc-radius-xl);
  background: rgba(0, 230, 211, 0.08);
  transform: rotate(6deg);
}

.how-step .step-fg {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--jc-radius-xl);
  background: rgba(0, 230, 211, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-step .step-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--jc-primary);
}

.how-step h3 {
  font-size: 1.25rem;
  color: var(--jc-primary);
  margin-bottom: 0.75rem;
}

.how-step p {
  color: var(--jc-text-light);
  line-height: 1.6;
  max-width: 20rem;
  margin: 0 auto;
}

/* Connector line between steps */
@media (min-width: 768px) {
  .how-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 3rem;
    left: 60%;
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, rgba(0, 230, 211, 0.3), transparent);
  }
}

/* ===== LEAD MAGNET SECTION ===== */
.leadmagnet-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--jc-primary) 0%, var(--jc-primary-light) 100%);
}

@media (min-width: 1024px) {
  .leadmagnet-section {
    padding: 7rem 0;
  }
}

.leadmagnet-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .leadmagnet-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.leadmagnet-heading {
  font-size: 1.875rem;
  color: #fff;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .leadmagnet-heading {
    font-size: 2.75rem;
  }
}

.leadmagnet-heading .text-accent {
  color: var(--jc-accent);
}

.leadmagnet-includes {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.leadmagnet-includes .include-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.leadmagnet-includes svg {
  color: var(--jc-accent);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.leadmagnet-includes span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
}

.leadmagnet-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .leadmagnet-form {
    flex-direction: row;
  }
}

.leadmagnet-form input {
  flex: 1;
}

.leadmagnet-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(0, 230, 211, 0.15);
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 230, 211, 0.2);
}

.leadmagnet-success svg {
  color: var(--jc-accent);
}

.leadmagnet-success span {
  color: #fff;
  font-weight: 500;
}

.leadmagnet-image img {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  border-radius: var(--jc-radius-xl);
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 5rem 0;
  background: var(--jc-bg);
}

@media (min-width: 1024px) {
  .stats-section {
    padding: 6rem 0;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}

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

.stat-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--jc-primary);
}

@media (min-width: 1024px) {
  .stat-value {
    font-size: 3rem;
  }
}

.stat-label {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--jc-text-lighter);
  line-height: 1.4;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  padding: 5rem 0;
  background: #fff;
}

@media (min-width: 1024px) {
  .pricing-section {
    padding: 7rem 0;
  }
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
}

.pricing-card {
  position: relative;
  padding: 1.5rem 2rem;
  border-radius: var(--jc-radius-xl);
  border: 1px solid rgba(0, 61, 82, 0.08);
  background: #fff;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: rgba(0, 61, 82, 0.15);
  box-shadow: var(--jc-shadow-lg);
}

.pricing-card.highlighted {
  border-color: var(--jc-accent);
  background: var(--jc-primary);
  box-shadow: var(--jc-shadow-xl);
  transform: scale(1.02);
}

.pricing-card .popular-badge {
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  background: var(--jc-accent);
  color: var(--jc-primary);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
}

.pricing-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.pricing-card .price {
  margin-bottom: 1.5rem;
}

.pricing-card .price .currency {
  font-size: 0.875rem;
}

.pricing-card .price .amount {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
}

.pricing-card .price .period {
  font-size: 0.875rem;
}

.pricing-card .features-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pricing-card .features-list .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.pricing-card .features-list svg {
  color: var(--jc-accent);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

/* Default card colors */
.pricing-card h3 { color: var(--jc-primary); }
.pricing-card .desc { color: var(--jc-text-lighter); font-size: 0.875rem; margin-bottom: 1.25rem; }
.pricing-card .currency, .pricing-card .period { color: var(--jc-text-muted); }
.pricing-card .amount { color: var(--jc-primary); }
.pricing-card .features-list span { color: var(--jc-text-light); font-size: 0.875rem; }

/* Highlighted card colors */
.pricing-card.highlighted h3 { color: #fff; }
.pricing-card.highlighted .desc { color: rgba(255, 255, 255, 0.5); }
.pricing-card.highlighted .currency, .pricing-card.highlighted .period { color: rgba(255, 255, 255, 0.5); }
.pricing-card.highlighted .amount { color: #fff; }
.pricing-card.highlighted .features-list span { color: rgba(255, 255, 255, 0.75); }

.pricing-cta {
  display: block;
  text-align: center;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}

.pricing-cta-default {
  background: rgba(0, 61, 82, 0.05);
  color: var(--jc-primary);
}

.pricing-cta-default:hover {
  background: rgba(0, 61, 82, 0.1);
}

.pricing-cta-highlight {
  background: var(--jc-accent);
  color: var(--jc-primary);
}

.pricing-cta-highlight:hover {
  background: var(--jc-accent-hover);
}

/* ===== BLOG PREVIEW SECTION ===== */
.blog-section {
  padding: 5rem 0;
  background: var(--jc-bg);
}

@media (min-width: 1024px) {
  .blog-section {
    padding: 7rem 0;
  }
}

.blog-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .blog-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.blog-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
}

.blog-card {
  cursor: pointer;
}

.blog-card .blog-image {
  position: relative;
  border-radius: var(--jc-radius);
  overflow: hidden;
  margin-bottom: 1rem;
  aspect-ratio: 16 / 10;
}

.blog-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-card .blog-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.625rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  color: var(--jc-primary);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0.375rem;
}

.blog-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--jc-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.blog-card:hover h3 {
  color: var(--jc-accent);
}

.blog-card .excerpt {
  font-size: 0.875rem;
  color: var(--jc-text-lighter);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.blog-card .read-time {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--jc-text-muted);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 5rem 0;
  background: #fff;
}

@media (min-width: 1024px) {
  .faq-section {
    padding: 7rem 0;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(0, 61, 82, 0.08);
  border-radius: var(--jc-radius);
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.faq-item.open {
  border-color: rgba(0, 230, 211, 0.3);
  background: rgba(0, 230, 211, 0.02);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--jc-primary);
  cursor: pointer;
  background: none;
  border: none;
}

.faq-question svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
  color: var(--jc-text-muted);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 1.25rem 1rem;
  font-size: 0.9375rem;
  color: var(--jc-text-light);
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 5rem 0;
  background: var(--jc-bg);
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .cta-section {
    padding: 7rem 0;
  }
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(0, 230, 211, 0.05);
  border-radius: 9999px;
  filter: blur(48px);
  transform: translate(50%, -50%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20rem;
  height: 20rem;
  background: rgba(0, 61, 82, 0.05);
  border-radius: 9999px;
  filter: blur(48px);
  transform: translate(-50%, 50%);
  pointer-events: none;
}

.cta-form {
  max-width: 28rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta-success {
  max-width: 28rem;
  margin: 0 auto;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--jc-radius-xl);
  border: 1px solid rgba(0, 230, 211, 0.2);
  box-shadow: 0 10px 25px -5px rgba(0, 230, 211, 0.05);
  text-align: center;
}

.cta-success .success-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: rgba(0, 230, 211, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--jc-accent);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--jc-primary);
  color: #fff;
}

.footer-inner {
  padding: 4rem 0 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
  }
}

.footer-brand {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .footer-brand {
    grid-column: span 1;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

.footer-logo img {
  height: 2.5rem;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-logo span {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--jc-white-45);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--jc-white-25);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  padding-left: 0.75rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-social a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: var(--jc-white-08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.footer-social a:hover {
  background: var(--jc-white-15);
}

.footer-links h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--jc-white-80);
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--jc-white-40);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  border-top: 1px solid var(--jc-white-08);
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--jc-white-30);
}

/* ===== BLOG ARCHIVE / SINGLE ===== */
.blog-archive {
  padding: 6rem 0 4rem;
}

.blog-archive-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .blog-archive-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .blog-archive-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.blog-single {
  padding: 6rem 0 4rem;
}

.blog-single-content {
  max-width: 48rem;
  margin: 0 auto;
}

.blog-single-content h1 {
  font-size: 2rem;
  color: var(--jc-primary);
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .blog-single-content h1 {
    font-size: 2.5rem;
  }
}

.blog-single-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: var(--jc-text-muted);
}

.blog-single-featured {
  width: 100%;
  border-radius: var(--jc-radius-xl);
  margin-bottom: 2rem;
}

.blog-single-body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--jc-text);
}

.blog-single-body h2 {
  font-size: 1.5rem;
  color: var(--jc-primary);
  margin: 2rem 0 1rem;
}

.blog-single-body h3 {
  font-size: 1.25rem;
  color: var(--jc-primary);
  margin: 1.5rem 0 0.75rem;
}

.blog-single-body p {
  margin-bottom: 1.25rem;
}

.blog-single-body ul, .blog-single-body ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.blog-single-body li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.blog-single-body ol li {
  list-style: decimal;
}

.blog-single-body blockquote {
  border-left: 3px solid var(--jc-accent);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(0, 230, 211, 0.04);
  border-radius: 0 0.5rem 0.5rem 0;
  font-style: italic;
  color: var(--jc-text-light);
}

.blog-single-body a {
  color: var(--jc-accent);
  text-decoration: underline;
}

.blog-single-body img {
  border-radius: var(--jc-radius);
  margin: 1.5rem 0;
}

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.pagination a {
  background: rgba(0, 61, 82, 0.05);
  color: var(--jc-primary);
}

.pagination a:hover {
  background: rgba(0, 61, 82, 0.1);
}

.pagination span.current {
  background: var(--jc-primary);
  color: #fff;
}

/* ===== 404 PAGE ===== */
.page-404 {
  padding: 8rem 0;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-404 h1 {
  font-size: 6rem;
  color: var(--jc-primary);
  opacity: 0.15;
  margin-bottom: 1rem;
}

.page-404 h2 {
  font-size: 1.5rem;
  color: var(--jc-primary);
  margin-bottom: 1rem;
}

.page-404 p {
  color: var(--jc-text-light);
  margin-bottom: 2rem;
}

/* ===== SIDEBAR ===== */
.sidebar .widget {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--jc-radius);
  border: 1px solid rgba(0, 61, 82, 0.08);
}

.sidebar .widget h3 {
  font-size: 1rem;
  color: var(--jc-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(0, 230, 211, 0.2);
}

.sidebar .widget ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar .widget a {
  font-size: 0.875rem;
  color: var(--jc-text-light);
}

.sidebar .widget a:hover {
  color: var(--jc-accent);
}

/* ===== WORDPRESS SPECIFIC ===== */
.wp-block-image {
  margin: 1.5rem 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-accent { color: var(--jc-accent); }
.text-coral { color: var(--jc-coral); }
.text-primary { color: var(--jc-primary); }
.text-white { color: #fff; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-10 { margin-top: 2.5rem; }
.hidden { display: none; }

@media (min-width: 640px) {
  .sm-inline { display: inline; }
  .sm-block { display: block; }
}

/* ===== LEAD MAGNET DOWNLOAD BOX ===== */
.jc-download-box {
  max-width: 48rem;
  margin: 3rem auto;
  border-radius: var(--jc-radius-xl);
  overflow: hidden;
  background: var(--jc-bg-white);
  border: 1px solid rgba(0, 61, 82, 0.08);
  box-shadow: var(--jc-shadow-lg);
  position: relative;
}

.jc-download-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--jc-lm-color, var(--jc-primary)), var(--jc-accent));
}

.jc-download-box__inner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
}

.jc-download-box__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--jc-radius);
  background: linear-gradient(135deg, var(--jc-lm-color, var(--jc-primary)), rgba(0, 61, 82, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.jc-download-box__content {
  flex: 1;
  min-width: 0;
}

.jc-download-box__badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  background: rgba(0, 230, 211, 0.12);
  color: var(--jc-primary);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 9999px;
  margin-bottom: 0.625rem;
}

.jc-download-box__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--jc-primary);
  margin-bottom: 0.375rem;
  line-height: 1.3;
}

.jc-download-box__desc {
  font-size: 0.9375rem;
  color: var(--jc-text-light);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.jc-download-box__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.jc-download-box__fields {
  display: flex;
  gap: 0.625rem;
}

.jc-download-box__input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 61, 82, 0.15);
  border-radius: var(--jc-radius);
  font-size: 0.9375rem;
  font-family: 'Source Sans 3', sans-serif;
  color: var(--jc-text);
  background: var(--jc-bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.jc-download-box__input:focus {
  border-color: var(--jc-accent);
  box-shadow: 0 0 0 3px rgba(0, 230, 211, 0.15);
}

.jc-download-box__input::placeholder {
  color: var(--jc-text-muted);
}

.jc-download-box__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--jc-lm-color, var(--jc-primary)), rgba(0, 61, 82, 0.85));
  color: #fff;
  border: none;
  border-radius: var(--jc-radius);
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  text-decoration: none;
}

.jc-download-box__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 61, 82, 0.25);
  opacity: 0.95;
  color: #fff;
}

.jc-download-box__btn:active {
  transform: translateY(0);
}

.jc-download-box__btn--alt {
  background: transparent;
  color: var(--jc-primary);
  border: 1px solid rgba(0, 61, 82, 0.15);
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
  margin-top: 0.5rem;
}

.jc-download-box__btn--alt:hover {
  background: rgba(0, 61, 82, 0.04);
  color: var(--jc-primary);
  box-shadow: none;
}

.jc-download-box__btn--loading {
  pointer-events: none;
  opacity: 0.7;
}

.jc-download-box__privacy {
  font-size: 0.75rem;
  color: var(--jc-text-muted);
  text-align: center;
  margin: 0;
}

/* Success state */
.jc-download-box__success {
  text-align: center;
  padding: 1rem 0;
}

.jc-download-box__success-icon {
  color: #00B8A9;
  margin-bottom: 0.75rem;
}

.jc-download-box__success-icon svg {
  width: 48px;
  height: 48px;
}

.jc-download-box__success-text {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--jc-primary);
  margin-bottom: 0.75rem;
}

/* Responsive */
@media (max-width: 640px) {
  .jc-download-box__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
  }

  .jc-download-box__fields {
    flex-direction: column;
  }

  .jc-download-box__title {
    font-size: 1.125rem;
  }

  .jc-download-box__desc {
    font-size: 0.875rem;
  }
}

/* Animation for the download box appearing */
.jc-download-box {
  animation: jcDownloadSlideIn 0.5s ease-out;
}

@keyframes jcDownloadSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Spinner for loading state */
.jc-download-box__spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: jcSpin 0.6s linear infinite;
}

@keyframes jcSpin {
  to { transform: rotate(360deg); }
}
