/*
Theme Name: The Upgraid Theme
Theme URI: https://theupgraid.com
Author: Antigravity
Author URI: https://google.com
Description: Custom WordPress theme for The Upgraid, converted from static HTML/CSS.
Version: 1.9.1
Text Domain: theupgraid-theme
*/

:root {
    --primary-color: #6366f1;
    /* Indigo 500 */
    --primary-hover: #4f46e5;
    /* Indigo 600 */
    --secondary-color: #10b981;
    /* Emerald 500 */
    --bg-color: #ffffff;
    --bg-alt: #f8fafc;
    /* Slate 50 */
    --text-main: #0f172a;
    /* Slate 900 */
    --text-muted: #64748b;
    /* Slate 500 */
    --border-color: #e2e8f0;
    /* Slate 200 */
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5rem 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    /* Ensure no bullets */
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline-block;
    /* Fallback */
}

.nav-links li a,
.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: color 0.2s ease;
    display: block;
    /* Hit area */
}

.nav-links li a:hover,
.nav-links a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
}

/* --- Hero Section --- */
.hero {
    padding-top: 8rem;
    /* Space for fixed nav */
    padding-bottom: 5rem;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.1), transparent 40%),
        radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.1), transparent 40%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #eff6ff;
    color: var(--primary-color);
    border-radius: full;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid #dbeafe;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

/* --- Value Proposition (Features) --- */
.bg-light {
    background-color: var(--bg-alt);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header .badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #e0e7ff;
    color: var(--primary-color);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
	text-align:left;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--bg-alt);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Modules Section --- */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.module-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.module-card:hover::before {
    opacity: 1;
}

.module-content {
    padding: 2rem;
}

.module-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.module-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap 0.2s ease;
}

.btn-link:hover {
    gap: 0.5rem;
    color: var(--primary-hover);
}

/* Fixed Lint from previous step */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    /* Standard property */
    -webkit-text-fill-color: transparent;
}

/* --- Results Section --- */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.result-card {
    background: var(--bg-color);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.result-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.result-desc {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.result-tag {
    font-size: 0.8rem;
    color: var(--text-muted);
    background: var(--bg-alt);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

/* New Receipt Image Cards */
.receipt-card {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    /* Context for overlay */
}

.receipt-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.receipt-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.receipt-card:hover img {
    transform: scale(1.02);
}

.receipt-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.6) 80%, transparent);
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    pointer-events: none;
    /* Let clicks pass through if needed */
}

.win-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.win-tag {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    backdrop-filter: blur(2px);
}

.highlight-card {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
    border: none;
}

.highlight-card .car-model {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0.5rem 0;
}

.highlight-card .member-name {
    font-size: 0.8rem;
    color: #94a3b8;
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

/* --- Pricing Section --- */
.pricing-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.pricing-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.pricing-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.pricing-amount {
    margin: 2rem 0;
}

.pricing-amount .currency {
    font-size: 1.5rem;
    vertical-align: top;
    font-weight: 600;
}

.pricing-amount .amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.pricing-amount .period {
    color: var(--text-muted);
    font-size: 1rem;
}

.pricing-features {
    text-align: left;
    margin: 0 auto 2.5rem;
    display: inline-block;
}

.pricing-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.guarantee {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- FAQ Section --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
}

.faq-item.active .faq-question::after {
    content: '−';
}

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

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Footer --- */
footer {
    background-color: #0f172a;
    /* Slate 900 */
    color: #e2e8f0;
    padding-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #334155;
}

.footer-logo {
    color: white;
    margin-bottom: 1rem;
    display: block;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.footer-col a {
    display: block;
    color: #94a3b8;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: white;
}

.copyright {
    padding: 2rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
}

* Backdrop */
.waitlist-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: none; /* hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

/* Modal box */
.waitlist-modal {
    background: #fff;
    color: #111;
    max-width: 420px;
    width: 100%;
    padding: 26px 26px 20px;
    border-radius: 18px;
    position: relative;
    animation: popin 0.25s ease;
}


@keyframes popin {
    from { transform: scale(0.92); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

/* Close button */
.waitlist-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: #333;
}

/* Text */
.waitlist-modal h3 {
    margin-top: 0;
    margin-bottom: 6px;
    font-weight: 700;
}

.waitlist-modal p {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 14px;
    color: #444;
}

/* Form fields */
.waitlist-modal .field {
    margin-bottom: 12px;
}

.waitlist-modal label {
    font-size: 13px;
    display: block;
    margin-bottom: 4px;
}

.waitlist-modal input[type="text"],
.waitlist-modal input[type="email"] {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}

/* Button */
.waitlist-modal .button.full {
    width: 100%;
    text-align: center;
    margin-top: 6px;
    background-color: #5e7366; /* matches your “Join Now” button theme */
    border-radius: 50px;
}

/* Success message */
.waitlist-success h4 {
    margin: 0 0 8px;
}

/* Backdrop */
.waitlist-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

/* Modal box */
.waitlist-modal {
  background: #fff;
  color: #111;
  max-width: 420px;
  width: 100%;
  padding: 22px 20px 18px;
  border-radius: 18px;
  position: relative;
  animation: popin 0.25s ease;
}

@keyframes popin {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* Close button */
.waitlist-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: #333;
}

/* Text */
.waitlist-modal h3 {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 700;
}

.waitlist-modal > p {
  margin: 0 0 12px;
  font-size: 13px;
  color: #555;
}

/* Override Brevo container inside modal */
.waitlist-modal .sib-form {
  text-align: left;
  background: transparent !important;
}

.waitlist-modal #sib-container {
  max-width: 100% !important;
  border-radius: 12px !important;
}

.waitlist-modal .sib-form-message-panel {
  margin-bottom: 10px;
}

/* Make button full width */
.waitlist-modal .sib-form-block__button {
  width: 100%;
  text-align: center !important;
}
/* Override Brevo input height + style inside modal */
.waitlist-modal .sib-form .input {
    height: 38px !important;          /* smaller + cleaner */
    padding: 8px 12px !important;      /* fix weird padding */
    font-size: 14px !important;
    border-radius: 8px !important;
    border: 1px solid #ccc !important;
    box-shadow: none !important;
}

/* Label spacing fix */
.waitlist-modal .sib-form .entry__label {
    margin-bottom: 4px !important;
    font-size: 12px !important;
    color: #333 !important;
}

/* Remove giant gaps Brevo forces */
.waitlist-modal .sib-form .sib-form-block {
    margin-bottom: 10px !important;
}

/* Override button height */
.waitlist-modal .sib-form-block__button {
/*     height: 42px !important; */
    border-radius: 999px !important;
    font-size: 15px !important;
    width: 100% !important;
	text-align:center!important;
	font-weight:bold!important;
}

/* Remove ugly gray background behind the embed container */
.waitlist-modal #sib-container {
    background: #fff !important;
    padding: 0 !important;
    border-radius: 12px !important;
    border: none !important;
    box-shadow: none !important;
}

/* Remove huge side padding Brevo adds on desktop */
.waitlist-modal .sib-container--large {
    padding: 0 !important;
}

/* Remove Brevo's outer background block */
.waitlist-modal .sib-form {
    background: transparent !important;
}


/* Mobile Adjustments */
@media (max-width: 768px) {
    .pricing-card {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.hero-text {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-lg {
    padding: 1rem 1rem;
    font-size: 0.9rem;
}

.btn-outline {
    border: 1px solid var(--border-color);
    background-color: transparent;
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--text-main);
    background-color: var(--bg-alt);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hero-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

.hero-img-main {
    width: 100%;
    height: auto;
    display: block;
}

* Backdrop */
.waitlist-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: none; /* hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

/* Modal box */
.waitlist-modal {
    background: #fff;
    color: #111;
    max-width: 420px;
    width: 100%;
    padding: 26px 26px 20px;
    border-radius: 18px;
    position: relative;
    animation: popin 0.25s ease;
}


@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .nav-links {
        display: none;
        /* Mobile menu to be implemented via JS */
    }

    .menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

/* --- Process Section (The Upgraid System) --- */
.process-wrapper {
    margin-top: 3rem;
}

.process-cards {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    margin-bottom: 4rem;
}

.process-card {
    flex: 1;
    text-align: center;
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-icon-wrapper {
    margin-bottom: 1.5rem;
    position: relative;
}

.process-icon {
    width: 64px;
    height: 64px;
    background-color: #2563eb;
    /* Blue 600 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.process-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.process-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.process-arrow {
    align-self: center;
    color: #3b82f6;
    /* Blue 500 */
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border: 1px solid #bfdbfe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    margin-top: -60px;
    /* Align with icons roughly */
}

.process-footer-box {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    background-color: #fafafa;
}

.process-footer-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #334155;
}

.process-footer-box p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* --- Who Is It For Section --- */
.bg-light-mesh {
    background: radial-gradient(circle at top left, #f8fafc, #f1f5f9);
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.badge-pill {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.badge-blue {
    background-color: #dbeafe;
    color: #1d4ed8;
}

.badge-gray {
    background-color: #f1f5f9;
    color: #475569;
}

.lead-text {
    font-size: 1.125rem;
    color: #334155;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.check-list,
.cross-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.check-list li,
.cross-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: 2px;
}

.cross-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-color: #cbd5e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    margin-top: 2px;
}

.not-for-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    /* Only top-right generic radius, customize if needed */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: relative;
    border-top-right-radius: 80px;
    /* Styling touch from screenshot */
}

/* Responsive Process & Who Section */
@media (max-width: 992px) {
    .process-cards {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: -1rem auto;
        z-index: 1;
    }

    .process-card {
        min-height: auto;
    }

    .who-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* --- Pricing Overlay --- */
.pricing-card {
    position: relative;
    /* Ensure overlay is contained */
}

.pricing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 41, 59, 0.6);
    /* Reduced opacity */
    backdrop-filter: blur(4px);
    /* Reduced blur */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: var(--radius-lg);
    z-index: 10;
    padding: 2rem;
    color: white;
	
}

.overlay-badge {
    background-color: #ef4444;
    /* Red 500 */
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.overlay-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.overlay-content p {
    font-size: 1.1rem;
    color: #e2e8f0;
    /* Slate 200 - slightly lighter for better readability on lighter overlay */
    margin-bottom: 2rem;
    line-height: 1.6;
}

.text-accent {
    color: #fca5a5;
    /* Red 300 */
    font-weight: 700;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
    /* Primary color glow */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.7);
    transform: translateY(-2px);
}

/* Pricing Header Updates */
.pricing-header {
    text-align: center;
    width: 100%;
    margin-bottom: 2rem;
}

.pricing-pill {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #eff6ff;
    /* Match .hero-badge */
    color: #2563eb;
    /* Blue 600 */
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid #dbeafe;
    /* Match .hero-badge border */
}

.pricing-sub {
    font-size: 1.5rem;
    color: var(--text-main);
    font-weight: 500;
}

.text-blue {
    color: #2563eb;
    font-weight: 700;
}

/* --- Global Design Tokens (V7 Fix) --- */
:root {
    /* Dimensions */
    --radius-md: 0.5rem;
    --radius-lg: 1rem;

    /* Colors */
    --bg-body: #ffffff;
    --bg-surface: #ffffff;
    --bg-surface-hover: #f8fafc;
    --bg-alt: #f1f5f9;

    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-inverse: #ffffff;

    --border-color: #e2e8f0;

    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    /* Shadows */
    --card-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

/* Hide Default Page Title on My Account to avoid duplication */
.woocommerce-account .entry-title,
.woocommerce-account .page-title {
    display: none;
}


/* --- WooCommerce Figma Redesign (V6) --- */

/* Wrapper Layout */
.woocommerce-account .woocommerce {
    display: flex;
    gap: 4rem;
    /* Wide gap per Figma */
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .woocommerce-account .woocommerce {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Sidebar Navigation (Figma: 288px width) */
.woocommerce-MyAccount-navigation {
    flex: 0 0 288px;
    width: 288px;
}

/* Sidebar Header */
.pv-nav-header {
    margin-bottom: 2rem;
    padding-left: 1rem;
}

.pv-nav-header h2 {
    font-size: 1.5rem;
    /* 24px */
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 0.5rem 0;
    font-family: 'Outfit', sans-serif;
}

.pv-nav-header p {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
}

/* Sidebar Links (Button Style) */
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
}

.woocommerce-MyAccount-navigation li {
    margin-bottom: 0.5rem;
    border: none;
}

.woocommerce-MyAccount-navigation li a {
    display: flex;
    align-items: center;
    padding: 0 1rem;
    height: 48px;
    /* Figma Height */
    border-radius: var(--radius-md);
    /* 8px? */
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    /* Prevent jump on hover if we add border */
}

/* Hover & Active States */
.woocommerce-MyAccount-navigation li a:hover {
    background: var(--bg-surface-hover);
    color: var(--text-main);
}

.woocommerce-MyAccount-navigation li.is-active a {
    background: var(--bg-surface);
    color: var(--primary);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
}

/* Icons (CSS Generated for prototype, ideally SVGs) */
.nav-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    background-color: currentColor;
    mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    opacity: 0.7;
}

.is-active .nav-icon {
    opacity: 1;
}

/* Icon Mappings (Simple Shapes or placeholders) */
/* Dashboard */
.nav-icon[data-icon="dashboard"] {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M4 13h6a1 1 0 001-1V4a1 1 0 00-1-1H4a1 1 0 00-1 1v8a1 1 0 001 1zm-1 7a1 1 0 001 1h6a1 1 0 001-1v-4a1 1 0 00-1-1H4a1 1 0 00-1 1v4zm10 0a1 1 0 001 1h6a1 1 0 001-1v-7a1 1 0 00-1-1h-6a1 1 0 00-1 1v7zm1-10h6a1 1 0 001-1V4a1 1 0 00-1-1h-6a1 1 0 00-1 1v5a1 1 0 001 1z" /></svg>');
}

/* Orders */
.nav-icon[data-icon="orders"] {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M16 11V7a4 4 0 00-8 0v4M5 9h14l1 12H4L5 9z" stroke="black" stroke-width="2" fill="none"/></svg>');
}

/* Logout */
.nav-icon[data-icon="customer-logout"] {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M17 16l4-4m0 0l-4-4m4 4H7m6 4v1a3 3 0 01-3 3H6a3 3 0 01-3-3V7a3 3 0 013-3h4a3 3 0 013 3v1" stroke="black" stroke-width="2" fill="none"/></svg>');
}

/* Vault/Generic */
.nav-icon {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10" stroke="black" stroke-width="2" fill="none"/></svg>');
}



/* Dashboard Content */
.woocommerce-MyAccount-content {
    flex: 1;
    padding-top: 1rem;
}

/* 0. Welcome Banner (V9) */
.pv-welcome-banner {
    background: linear-gradient(135deg, #4f46e5 0%, #9333ea 100%);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    color: #fff;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2), 0 2px 4px -1px rgba(79, 70, 229, 0.1);
}

.pv-welcome-banner h1 {
    color: #fff;
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.pv-welcome-banner p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

/* 1. Course Main Card */
.course-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--card-shadow);
    margin-bottom: 3rem;
    gap: 2rem;
}

@media (max-width: 768px) {
    .course-main {
        flex-direction: column;
        align-items: flex-start;
    }
}

.course-main .card-content {
    flex: 1;
    min-width: 0;
}

.course-main h3 {
    margin: 0 0 0.5rem 0;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
}

.course-main .btn {
    white-space: nowrap;
    padding: 0.75rem 2rem;
    height: 48px;
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
}


/* --- V8: Quick Links Grid --- */
.pv-wc-grid-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 900px) {
    .pv-wc-grid-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pv-wc-grid-links {
        grid-template-columns: 1fr;
    }
}

.pv-wc-grid-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem 1rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
}

.pv-wc-grid-card:hover {
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.grid-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #fff;
}

.grid-icon svg {
    width: 26px;
    height: 26px;
}

/* Colors */
.icon-orders {
    background: #e0e7ff;
    color: #4f46e5;
}

.icon-addresses {
    background: #f3e8ff;
    color: #9333ea;
}

.icon-account {
    background: #dbeafe;
    color: #2563eb;
}

.icon-subs {
    background: #dcfce7;
    color: #166534;
}

.pv-wc-grid-card h4 {
    color: var(--text-main);
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.pv-wc-grid-card span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* 2. Activity Feed */
.activity-header {
    font-size: 1.25rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-surface);
    /* Figma "Container" */
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all 0.2s;
}

.activity-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.act-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    /* Figma specific */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.act-icon-box.success {
    background: #dcfce7;
    color: #166534;
}

.act-icon-box.info {
    background: #eff6ff;
    color: #1e40af;
}

.act-details h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

.act-details p {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.act-time {
    font-size: 0.85rem;
    color: #94a3b8;
    /* Lighter text for timestamp */
}


/* --- V11: Lesson List Redesign --- */

.pv-module-layout {
    max-width: 900px;
    /* Aligns with Figma ~976px but responsive */
    margin: 0 auto;
    padding: 2rem 0;
}

/* Header */
.pv-module-header {
    margin-bottom: 2rem;
}

.pv-module-header h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1.75rem;
    color: var(--text-main);
    margin: 0 0 1rem 0;
}

.pv-module-header .pv-meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Progress Bar (Figma specific: Dark track) */
.pv-progress-wrap .pv-bar {
    height: 8px;
    background: #e2e8f0;
    /* Keeping consistent light gray, Figma used very dark #030213 for track? Use theme default for consistency */
    border-radius: 99px;
    overflow: hidden;
    width: 100%;
}

.pv-progress-wrap .pv-bar span {
    display: block;
    height: 100%;
    background: var(--primary);
    /* Keep theme primary */
}

/* Lesson List */
.pv-lesson-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Lesson Item Card */
.pv-lesson-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
    min-height: 72px;
}

.pv-lesson-item:hover {
    border-color: var(--primary-hover);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.pv-lesson-item .lesson-info {
    flex: 1;
}

.lesson-title {
    color: var(--text-main);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

/* Status Icons */
.status-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-left: 1rem;
}

.status-icon.play {
    color: var(--text-muted);
    background: var(--bg-body);
}

.status-icon.check {
    color: #10b981;
    /* Success Green */
    background: #dcfce7;
}

.pv-lesson-item.is-complete .lesson-title {
    color: var(--text-muted);
    /* Dim completed items */
}

/* Footer Button */
.pv-module-footer {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.btn-outline {
    background: #fff;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.btn-outline:hover {
    background: var(--bg-surface-hover);
    border-color: var(--text-muted);
    color: var(--text-main);
}


/* --- V13: Lesson Page Sidebar Redesign (Clean V13.4 + V13.5 Safety) --- */

/* 1. Layout Wrapper */
.pv-lesson-layout {
    display: flex;
    min-height: calc(100vh - 80px);
    /* Adjust based on header height, usually 80px */
    position: relative;
    overflow-x: hidden;
    /* Prevent horizontal scroll on transitions */
}

/* 2. Sidebar Base (Common) */
.pv-sidebar {
    background: var(--bg-surface);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s ease;
    z-index: 50;
    overflow: hidden;
    /* Clip content during resize */
    width: 320px;
    /* SAFETY NET DEFAULT */
}

/* 3. Header Areas */
.pv-sidebar-header-wrapper {
    height: 70px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    flex-shrink: 0;
    background: var(--bg-surface);
}

.pv-sb-header-open {
    display: flex;
    /* Flex by default */
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    height: 100%;
    width: 320px;
    /* Force width to avoid squashing */
}

.pv-sb-header-closed {
    display: none;
    /* Hidden by default */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface);
}

/* Buttons */
.pv-sidebar-close-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-muted);
    cursor: pointer;
}

.pv-sidebar-open-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
    display: block;
}

/* Body Content */
.pv-sidebar-body-container {
    flex: 1;
    overflow-y: auto;
    width: 320px;
    opacity: 1;
    transition: opacity 0.2s ease;
}

/* Sidebar Progress & Content Styles */
.pv-sidebar-progress {
    padding: 1.5rem;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border-color);
}

.pv-sb-track {
    height: 6px;
    background: var(--border-color);
    border-radius: 99px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.pv-sb-bar {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #10b981);
    transition: width 0.3s ease;
}

.pv-sb-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: right;
    font-weight: 600;
}

/* Accordion */
.pv-accordion-item {
    border-bottom: 1px solid var(--border-color);
}

.pv-accordion-trigger {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--text-main);
    transition: background 0.2s;
}

.pv-accordion-trigger:hover {
    background: var(--bg-surface-hover);
}

.pv-accordion-body {
    display: none;
    background: var(--bg-alt);
}

.pv-accordion-body ul {
    padding: 0;
    margin: 0;
}

.pv-accordion-body li a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.pv-accordion-body li a:hover {
    color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.pv-accordion-body li.current a {
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    border-left-color: var(--primary);
    font-weight: 600;
}

.l-status {
    width: 24px;
    margin-right: 0.5rem;
    font-size: 0.8rem;
    text-align: center;
}

/* 4. DESKTOP LOGIC (>= 900px) */
@media (min-width: 900px) {

    /* Main Content Area */
    .pv-lesson-content {
        flex: 1;
        padding: 3rem 4rem;
        min-width: 0;
    }

    /* Sticker Sidebar */
    .pv-sidebar {
        position: sticky;
        top: 80px;
        height: calc(100vh - 80px);
    }

    /* OPEN STATE (Default) */
    .pv-lesson-layout:not(.sidebar-closed) .pv-sidebar {
        width: 320px;
    }

    /* CLOSED STATE (Rail) */
    .pv-lesson-layout.sidebar-closed .pv-sidebar {
        width: 70px;
    }

    .pv-lesson-layout.sidebar-closed .pv-sb-header-open {
        display: none;
    }

    .pv-lesson-layout.sidebar-closed .pv-sb-header-closed {
        display: flex;
    }

    .pv-lesson-layout.sidebar-closed .pv-sidebar-body-container {
        opacity: 0;
        pointer-events: none;
    }

    /* Hide Mobile Controls on Desktop */
    .pv-mobile-header-bar {
        display: none !important;
    }
}

/* 5. MOBILE LOGIC (< 899px) */
@media (max-width: 899px) {
    /* Rail Logic meaningless here. Always 320px width, toggled via transform. */

    .pv-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        height: 100vh;
        width: 320px !important;
        /* Force full width */
        transform: translateX(-100%);
        /* Start hidden */
        box-shadow: var(--shadow-xl);
        z-index: 9999;
    }

    /* Force Open Class */
    .pv-sidebar.mobile-force-open {
        transform: translateX(0);
    }

    /* Content Area */
    .pv-lesson-content {
        padding: 2rem 1.5rem;
        width: 100%;
    }

    /* Mobile Header Trigger (Visible) */
    .pv-mobile-header-bar {
        display: flex;
        align-items: center;
        padding: 1rem 1.5rem;
        background: var(--bg-surface);
        border-bottom: 1px solid var(--border-color);
        margin: -2rem -1.5rem 2rem -1.5rem;
        /* Stretch full width relative to padding */
    }

    .pv-mobile-menu-btn {
        background: var(--bg-surface);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        padding: 0.5rem 1rem;
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        cursor: pointer;
    }

    /* Internal Header Logic for Mobile */
    /* Always show the "Open" header style (Title + X) inside the mobile drawer */
    .pv-sb-header-open {
        display: flex !important;
    }

    .pv-sb-header-closed {
        display: none !important;
    }

    /* Ensure body is visible */
    .pv-sidebar-body-container {
        opacity: 1 !important;
        pointer-events: auto !important;
    }
}

/* --- V13.6 RESTORED CONTENT STYLES --- */

/* Typography & Elements */
.pv-lesson-head-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.pv-lesson-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
}

/* Video Wrapper */
.pv-video-wrapper {
    aspect-ratio: 16/9;
    background: #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
    width: 100%;
    /* Ensure it fills container */
}

.pv-video-wrapper iframe {
    width: 100%;
    height: 100%;
}

/* Transcript */
.pv-transcript-toggle {
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1rem;
    cursor: pointer;
}

.pv-transcript-toggle summary {
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

/* Resources */
.pv-resources-block {
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
}

.pv-resources-block h3 {
    margin-top: 0;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.pv-resources-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pv-resources-block li {
    margin-bottom: 0.5rem;
}

/* Footer Nav */
.pv-lesson-footer-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.pv-lesson-footer-nav a {
    text-decoration: none;
    font-weight: 600;
    color: var(--primary);
}

/* Restored: Reflection Section */
.pv-reflection-section {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.pv-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pv-steps li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pv-step-num {
    background: var(--primary);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.pv-step-content {
    flex: 1;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Restored: Exercise Band */
.pv-exercise-band {
    margin-top: 3rem;
    background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
    padding: 2rem;
    border-radius: var(--radius-lg);
    color: #fff;
}

.pv-exercise-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.5rem;
}

.pv-exercise-body {
    font-size: 1.1rem;
    line-height: 1.6;
}

.pv-exercise-body p {
    margin-bottom: 1rem;
}

.pv-exercise-body p:last-child {
    margin-bottom: 0;
}/* --- V13.7 RESTORED PROGRESS & LOCK STYLES --- */

/* Module Mini Progress (Sidebar) */
.mod-mini-progress {
    width: 100%;
    max-width: 120px;
    height: 4px;
    background: var(--bg-hover);
    border-radius: 99px;
    overflow: hidden;
    margin-top: 4px;
}

.mod-mini-bar {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #10b981);
    opacity: 0.8;
}

/* Locked Content (Padlock) */
.pv-accordion-body li a.locked {
    opacity: 0.6;
    pointer-events: none;
    /* Prevent clicking */
    cursor: not-allowed;
}

.pv-accordion-body li a.locked .l-status {
    font-size: 0.9rem;
    /* Adjust if emoji/icon needs size */
}

/* Complete Button State */
.pv-mark-complete.disabled,
.pv-mark-complete[disabled] {
    background: var(--bg-hover);
    color: var(--text-muted);
    cursor: default;
    border-color: transparent;
}

 /* --- System Builder Interstitial (Full Width) --- */
 .system-builder-card {
    grid-column: 1 / -1;
    /* Spans full width of the modules grid */
    background: #f0f7ff;
    /* Very light blue background like screenshot */
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid #dbeafe;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.sb-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.sb-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.sb-icons-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.sb-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 120px;
}

.sb-icon-box {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #e0eaff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sb-icon-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.sb-icon-box svg {
    color: #2563eb;
    /* Bright blue color */
}

.sb-icon-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    text-align: center;
    line-height: 1.2;
}

.btn-wide {
    padding-left: 3rem;
    padding-right: 3rem;
    font-weight: 600;
}
/* Locked State for System Builder */
.system-builder-card {
    position: relative;
    /* Ensure overlay fits */
}

.system-builder-card.locked {
    filter: grayscale(1) opacity(0.8);
    border-style: dashed;
    pointer-events: none;
    /* Disable clicks on the whole card */
    user-select: none;
}

.locked-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: #0f172a;
    font-weight: 600;
    font-size: 1.25rem;
    background: rgba(255, 255, 255, 0.5);
    /* Semi-transparent cover */
    backdrop-filter: blur(2px);
    border-radius: var(--radius-lg);
}

.lock-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

    
 /* --- V16 PRODUCT ROADMAP PAGE --- */

.roadmap-page-wrapper {
    background-color: #fff;
    padding-bottom: 4rem;
}

/* Header */
.roadmap-header {
    padding: 6rem 1rem 4rem;
}

.roadmap-title {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #4f46e5 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.roadmap-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Timeline */
.roadmap-timeline-section {
    position: relative;
    padding: 2rem 0;
    overflow: hidden;
}

.roadmap-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Vertical Line */
.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg, #4f46e5 0%, #e2e8f0 100%);
    transform: translateX(-50%);
}

.roadmap-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
    position: relative;
    width: 100%;
}

.roadmap-item:last-child {
    margin-bottom: 0;
}

/* Content Box */
.roadmap-content {
    width: 45%;
    position: relative;
}

.roadmap-item.left {
    justify-content: flex-start;
}

.roadmap-item.left .roadmap-content {
    text-align: right;
}

.roadmap-item.right {
    justify-content: flex-end;
}

.roadmap-item.right .roadmap-content {
    text-align: left;
}

/* Marker Dot */
.roadmap-marker {
    position: absolute;
    left: 50%;
    top: 24px;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: #6366f1;
    border: 3px solid #e0e7ff;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 4px #fff;
}

/* Phase Label */
.roadmap-phase-label {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.roadmap-item.left .roadmap-phase-label {
    justify-content: flex-end;
}

.roadmap-item.right .roadmap-phase-label {
    justify-content: flex-start;
}

/* Card */
.roadmap-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.roadmap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.roadmap-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.5;
}

.roadmap-list li:last-child {
    margin-bottom: 0;
}

/* Icons */
.icon-check {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236366f1'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.badge-live {
    background: #dcfce7;
    color: #166534;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 99px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid #bbf7d0;
}

/* Road map */
/* CTA Section */
.roadmap-cta-section {
    padding: 6rem 1rem;
    background: #fff;
}

.roadmap-cta-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.roadmap-cta-section p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
    transition: box-shadow 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
}

/* FAQ Section */
.roadmap-faq-section {
    padding: 4rem 1rem 6rem;
    background: #fafafa;
    border-top: 1px solid #e2e8f0;
}

.roadmap-faq-title {
    margin-bottom: 3rem;
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(90deg, #d946ef 0%, #4f46e5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.roadmap-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.roadmap-faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.roadmap-faq-question {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background 0.2s;
}

.roadmap-faq-question:hover {
    background: #f8fafc;
}

.roadmap-faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.roadmap-faq-item.active .roadmap-faq-icon {
    transform: rotate(45deg);
}

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

.roadmap-faq-item.active .roadmap-faq-answer {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem;
}

.roadmap-faq-answer p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .roadmap-header {
        padding-top: 8rem;
    }

    .roadmap-title {
        font-size: 2.5rem;
    }

    .roadmap-timeline::before {
        left: 20px;
    }

    .roadmap-item {
        flex-direction: column;
        padding-left: 50px;
    }

    .roadmap-content {
        width: 100%;
        text-align: left !important;
    }

    .roadmap-item.left .roadmap-content,
    .roadmap-item.right .roadmap-content {
        text-align: left;
    }

    .roadmap-marker {
        left: 20px;
    }

    .roadmap-phase-label {
        justify-content: flex-start !important;
    }

    .roadmap-item.left .roadmap-phase-label,
    .roadmap-item.right .roadmap-phase-label {
        justify-content: flex-start;
    }
}

/* --- V17 STUDENT ROAD MAP PAGE --- */

.s-roadmap-section {
    padding: 4rem 1rem 6rem;
    background: #fff;
}

.s-roadmap-container {
    max-width: 800px;
    /* Narrower for focus */
    margin: 0 auto;
}

.s-roadmap-timeline {
    position: relative;
    padding-top: 2rem;
}

.s-roadmap-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    /* Reduced margin for tighter flow */
    position: relative;
}

/* Number Column */
.s-roadmap-number-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    /* Fixed width for alignment */
}

.s-roadmap-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    /* Enriched: Gradient Background matching brand */
    background: linear-gradient(135deg, #4f46e5 0%, #d946ef 100%);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2);
    /* Colored shadow */
    z-index: 2;
    position: relative;
}

/* Connecting Line */
.s-roadmap-line {
    flex-grow: 1;
    width: 2px;
    background: #e2e8f0;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Content Column */
.s-roadmap-content-col {
    flex-grow: 1;
    padding-bottom: 2rem;
    /* Space between items visually */
}



.s-step-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.s-step-subtitle {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    /* Highlight color */
    margin-bottom: 1rem;
    font-style: italic;
}

.s-step-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.s-step-outcome {
    display: inline-block;
}

.badge-outcome {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #f0fdf4;
    /* Light green bg */
    color: #166534;
    /* Green text */
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    border: 1px solid #bbf7d0;
}

.badge-outcome::before {
    content: '→';
    margin-right: 0.5rem;
    font-weight: 800;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .s-roadmap-item {
        gap: 1rem;
    }

    .s-roadmap-number-col {
        min-width: 40px;
    }

    .s-roadmap-number {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .s-step-title {
        font-size: 1.5rem;
    }
}

* --- V18 ABOUT PAGE --- */

.about-page-wrapper {
    background: #fff;
    color: var(--text-color);
}

.s-section {
    padding: 4rem 1rem;
}

.s-container {
    max-width: 800px;
    /* Text-focused width */
    margin: 0 auto;
}

/* Typography */
.about-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.05em;
    background: -webkit-linear-gradient(135deg, #0f172a, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 2rem;
}

.about-intro-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000;
}

/* Lists */
.about-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.about-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.about-list li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* .check-list li::before {
    content: "✓";
    color: #10b981;
    /* Green 
} */

/* Philosophy */
.philosophy-item {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.philosophy-item:last-child {
    border-bottom: none;
}

.ph-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ph-num {
    color: var(--text-muted);
    margin-right: 0.5rem;
}

.ph-meta {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.comp-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 2px solid #000;
    padding-bottom: 0.5rem;
}

.comp-list {
    list-style: none;
    padding-left: 0;
}

.comp-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.is-list li::before {
    content: "+";
    color: #10b981;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.is-not-list li::before {
    content: "−";
    color: #ef4444;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Mobile */
@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }

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

/* Utilities */
.text-muted {
    color: #64748b;
}

.bg-gray-50 {
    background-color: #f8fafc;
}

.my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.gap-4 {
    gap: 1rem;
}

.flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.font-bold {
    font-weight: 700;
}

.text-xl {
    font-size: 1.25rem;
}


/* --- V19 INSIDE UPGRAID PAGE --- */

.inside-hero {
    background: linear-gradient(158.989deg, #4f39f6 0%, #9810fa 50%, #432dd7 100%);
    color: #fff;
    padding: 11rem 1rem 8rem;
}

.inside-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.inside-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.button-white {
    background: #fff;
    color: #4f39f6;
    border: none;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: transform 0.2s;
}

.button-white:hover {
    transform: translateY(-2px);
    background: #f8fafc;
    color: #432dd7;
}

/* Features Rows */
.feature-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.feature-row.reversed {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-visual {
    flex: 1;
}

.feature-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.visual-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: #f1f5f9;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    /* In production, replace bg with actual image URL */
    background-size: cover;
    background-position: center;
}

/* Curriculum Grid */
.module-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.module-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.module-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.module-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.module-meta {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.module-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.module-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Interstitial */
.system-builder-row {
    background: #fff;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    padding: 3rem 1rem;
    margin: 3rem 0;
}

.sys-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.sys-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.sys-icons span {
    font-size: 2rem;
    margin: 0 1rem;
    opacity: 0.8;
}

/* Community CTA */
.discord-card {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    /* Discord Colors */
    border-radius: 16px;
    padding: 4rem 2rem;
    color: #fff;
    box-shadow: 0 20px 25px -5px rgba(88, 101, 242, 0.3);
}

.d-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}


/* Mobile */
@media (max-width: 768px) {
    .inside-title {
        font-size: 2.5rem;
    }

    .feature-row,
    .feature-row.reversed {
        flex-direction: column;
        gap: 2rem;
    }

    .module-grid {
        grid-template-columns: 1fr;
    }
}

/* --- V19.2 Refinements --- */

/* Consistent Spacing (80px) */
.inside-features,
.inside-curriculum,
.learning-features,
.community-cta,
.final-cta-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Learning Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.learn-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    /* Flex to center content */
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.learn-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.learn-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Icon Colors */
.icon-purple,
.icon-purple-pale {
    background-color: #f3e8ff;
    /* Light purple */
    color: #9333ea;
}

.icon-blue,
.icon-blue-pale {
    background-color: #dbeafe;
    /* Light blue */
    color: #2563eb;
}

.icon-pink-pale {
    background-color: #fce7f3;
    /* Light pink */
    color: #db2777;
}

/* Community Benefits Updates */
.comm-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    text-align: center;
}

.comm-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    /* Larger icon size */
}

.comm-icon-text {
    line-height: 1;
}

/* Final CTA Card Style */
.final-cta-section {
    background: transparent;
    /* Reset bg */
    padding-top: 0;
}

.final-cta-section .container {
    background: #fff;
    padding: 4rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    /* Subtle shadow per design */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .features-grid, .comm-benefits-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}


/* --- V19.4 Design Polish --- */

/* Thinner, Larger Headings */

.section-title-main {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    /* Larger */
    font-weight: 400;
    /* Thinner (was likely 700 default) */
    text-align: center;

    color: #1e293b;
	line-height:3rem;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    /* Larger */
    font-weight: 500;
    /* Thinner (was likely 700 default) */
    text-align: center;
    margin-bottom: 2rem;
    color: #1e293b;
}

/* Discord Card Centering */
.discord-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* Ensure existing styles are preserved/overridden correctly */
    padding: 5rem 2rem;
}

.discord-card .d-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
}

.discord-card h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Ensure background colors for benefits icons are vivid enough */
.comm-benefits-grid .comm-title {
    font-weight: 600;
    margin-top: 1rem;
}

/* --- Admin Bar Fix --- */
body.admin-bar .navbar {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .navbar {
        top: 46px;
    }
}


/* --- Waitlist Page / Upgraid Formula Styles --- */
.formula-header {
    background: linear-gradient(135deg, #7c3aed, #4f46e5); /* Purple to Indigo */
    padding: 6rem 0 4rem;
    color: white;
    text-align: center;
}

.formula-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    backdrop-filter: blur(5px);
}

.formula-header h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: white;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.formula-section {
    padding: 5rem 0;
    background: white;
}

.formula-lead {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.reality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.reality-card {
    background: white;
    border: 1px solid var(--border-color);
    border-left: 4px solid #ef4444; /* Red border */
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    font-weight: 500;
    color: var(--text-muted);
}

.trap-box {
    background: #e0e7ff; /* Indigo 100 */
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    font-weight: 700;
    color: var(--primary-color);
    max-width: 900px;
    margin: 0 auto 5rem;
    border-left: 4px solid var(--primary-color);
}

.divide-section {
    text-align: center;
    margin-bottom: 3rem;
}

.divide-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.card-consumer {
    background: #fef2f2; /* Red 50 */
    border-color: #fca5a5;
}

.card-creator {
    background: #f0fdf4; /* Green 50 */
    border-color: #86efac;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.icon-bad {
    color: #ef4444;
    background: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fca5a5;
}

.icon-good {
    color: #10b981;
    background: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #86efac;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.dot-red {
    color: #ef4444;
    font-weight: bold;
}

.dot-green {
    color: #10b981;
    font-weight: bold;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.open .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 5px; 
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
    z-index: 10;
}

.modal-close:hover {
    color: var(--text-main);
}


/* --- Brevo Form Fixes --- */
.sib-icon, .sib-notification__icon {
    width: 32px !important;
    height: 32px !important;
    display: block;
    margin: 0 auto 10px;
}

.sib-form-block__button {
    background-color: #6366f1 !important; /* Indigo 500 */
    color: white !important;
    border-radius: 8px !important;
    padding: 12px 24px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border: none !important;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.2s;
}

.sib-form-block__button:hover {
    background-color: #4f46e5 !important; /* Indigo 600 */
}

/* Hide loader icon by default if not needed or style it smaller */
.sib-hide-loader-icon {
    display: none !important;
}

.sib-form-message-panel {
    padding: 15px !important;
    margin-bottom: 15px !important;
}

/* --- Brevo Logic Fixes --- */
.sib-form-message-panel {
    display: none; /* Hide by default, JS will show it */
}

/* Ensure labels are left aligned for better readability */
.form__label-row label {
    text-align: left !important;
    display: block;
    margin-bottom: 0.5rem;
}

/* --- WooCommerce Checkout Styles --- */

/* Layout */
.woocommerce-checkout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.woocommerce-checkout .col2-set {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
    margin-bottom: 2rem;
}

.woocommerce-checkout .col-1, 
.woocommerce-checkout .col-2 {
    flex: 1 1 45%;
    max-width: 100%;
    float: none !important;
    width: auto !important;
}

/* Headings */
.woocommerce-checkout h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

/* Forms & Inputs */
.woocommerce-input-wrapper {
    display: block;
}

.woocommerce form .form-row {
    margin-bottom: 1.25rem;
}

.woocommerce form .form-row label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-main);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container .select2-selection--single {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px; /* var(--radius-md) fallback */
    font-size: 1rem;
    background-color: #f9fafb; /* Light bg */
    color: var(--text-main);
    height: auto;
    min-height: 48px;
    box-shadow: none;
    transition: all 0.2s ease;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    background-color: white;
    outline: none;
}

/* Order Review Section */
#order_review_heading {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}

.woocommerce-checkout-review-order-table tfoot th {
    background-color: #f9fafb;
    font-weight: 600;
}

.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
    background-color: #eff6ff; /* Light indigo tint */
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.1rem;
    border-bottom: none;
}

/* Payment Box */
#payment {
    background: #f9fafb;
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

#payment ul.payment_methods {
    padding: 0;
    margin: 0 0 2rem;
    list-style: none;
    border-bottom: 1px solid var(--border-color);
}

#payment ul.payment_methods li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

#payment ul.payment_methods li:last-child {
    border-bottom: none;
}

#payment ul.payment_methods li input {
    margin-right: 0.5rem;
    accent-color: var(--primary-color);
}

#payment ul.payment_methods li label {
    font-weight: 600;
    color: var(--text-main);
    display: inline-block;
    cursor: pointer;
}

#payment div.payment_box {
    background-color: white;
    padding: 1rem;
    margin-top: 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    position: relative;
}

#payment div.payment_box::before {
    content: '';
    display: block;
    position: absolute;
    top: -10px;
    left: 20px;
    width: 0; 
    height: 0; 
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--border-color);
}

/* Place Order Button */
#place_order {
    background-color: var(--primary-color) !important;
    color: white !important;
    font-weight: 700 !important;
    padding: 1.25rem 2rem !important;
    font-size: 1.1rem !important;
    border-radius: 8px !important;
    width: 100%;
    margin-top: 1rem;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
}

#place_order:hover {
    background-color: var(--primary-dark) !important;
}
/* --- Brevo Honeypot Hide --- */
.input--hidden {
    display: none !important;
    visibility: hidden;
    position: absolute;
    left: -9999px;
}
