/* ==========================================================================
   JEXPOT STUDIO — Core Component Styles & Agency UI System
   Theme: Modern Tech Blue & Slate
   Dedicated to Joomla 3, 4, 5, 6+ Extension Development & Maintenance
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Global Enhancements & Utility Classes
   -------------------------------------------------------------------------- */
.jexpot-gradient-text {
    background: linear-gradient(135deg, var(--jexpot-primary) 0%, var(--jexpot-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.jexpot-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--jexpot-primary);
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--jexpot-radius-full);
    margin-bottom: 1.25rem;
}

.jexpot-badge--pulse::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: jexpotPulse 2s infinite;
}

@keyframes jexpotPulse {
    0%   { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70%  { transform: scale(1);    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.jexpot-section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 3.5rem auto;
}

.jexpot-section-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.jexpot-section-header p {
    font-size: 1.125rem;
    color: var(--jexpot-text-secondary);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   2. Hero Section (.jexpot-hero)
   -------------------------------------------------------------------------- */
.jexpot-hero {
    position: relative;
    padding: 4.5rem 0 3.5rem 0;
    overflow: hidden;
}

.jexpot-hero__inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

.jexpot-hero__content h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.jexpot-hero__lead {
    font-size: 1.2rem;
    color: var(--jexpot-text-secondary);
    line-height: 1.65;
    margin-bottom: 2rem;
}

.jexpot-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.jexpot-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--jexpot-radius-md);
    cursor: pointer;
    transition: all var(--jexpot-transition-base);
    text-decoration: none;
    border: none;
}

.jexpot-btn--primary {
    background: linear-gradient(135deg, var(--jexpot-primary) 0%, var(--jexpot-secondary) 100%);
    color: #ffffff !important;
    box-shadow: 0 8px 20px -4px rgba(37, 99, 235, 0.4);
}

.jexpot-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -4px rgba(37, 99, 235, 0.55);
    color: #ffffff !important;
}

.jexpot-btn--secondary {
    background: var(--jexpot-surface);
    color: var(--jexpot-text) !important;
    border: 1px solid var(--jexpot-border);
    box-shadow: var(--jexpot-shadow-sm);
}

.jexpot-btn--secondary:hover {
    border-color: var(--jexpot-primary);
    color: var(--jexpot-primary) !important;
    transform: translateY(-2px);
    box-shadow: var(--jexpot-shadow-md);
}

/* Hero Stats Bar */
.jexpot-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--jexpot-border-light);
}

.jexpot-stat-item strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--jexpot-text);
    line-height: 1.2;
}

.jexpot-stat-item span {
    font-size: 0.875rem;
    color: var(--jexpot-text-secondary);
}

/* Hero Visual / Card Showcase */
/* Hero Visual / Express Triage Card */
.jexpot-hero-card {
    background: var(--jexpot-surface);
    border-radius: var(--jexpot-radius-xl);
    padding: 1.75rem;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(37, 99, 235, 0.1);
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all var(--jexpot-transition-normal);
}

.jexpot-hero-card:hover {
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.15), 0 0 0 1px rgba(37, 99, 235, 0.2);
}

.jexpot-triage-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--jexpot-border-light);
}

.jexpot-triage-card__status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #059669;
}

.jexpot-triage-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: triagePulse 2s infinite;
}

@keyframes triagePulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.jexpot-triage-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--jexpot-primary);
    border: 1px solid rgba(37, 99, 235, 0.18);
}

.jexpot-triage-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--jexpot-text);
    margin-bottom: 0.25rem;
    line-height: 1.35;
}

.jexpot-triage-card__subtitle {
    font-size: 0.8125rem;
    color: var(--jexpot-text-secondary);
    margin-bottom: 1.125rem;
    line-height: 1.4;
}

/* Triage Items List */
.jexpot-triage-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}

.jexpot-triage-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--jexpot-radius-md);
    text-decoration: none;
    color: inherit;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.jexpot-triage-item:hover {
    background: #ffffff;
    border-color: var(--jexpot-primary);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
    transform: translateX(4px);
    text-decoration: none;
    color: inherit;
}

.jexpot-triage-item__icon {
    font-size: 1.25rem;
    line-height: 1;
    width: 36px;
    height: 36px;
    border-radius: var(--jexpot-radius-sm);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.jexpot-triage-item:hover .jexpot-triage-item__icon {
    transform: scale(1.1);
    border-color: rgba(37, 99, 235, 0.3);
}

.jexpot-triage-item__body {
    flex: 1;
    min-width: 0;
}

.jexpot-triage-item__name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--jexpot-text);
    margin-bottom: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.15s ease;
}

.jexpot-triage-item:hover .jexpot-triage-item__name {
    color: var(--jexpot-primary);
}

.jexpot-triage-item__desc {
    font-size: 0.75rem;
    color: var(--jexpot-text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.jexpot-triage-item__arrow {
    font-size: 1rem;
    color: #94a3b8;
    transition: all 0.2s ease;
    flex-shrink: 0;
    padding-left: 0.25rem;
}

.jexpot-triage-item:hover .jexpot-triage-item__arrow {
    color: var(--jexpot-primary);
    transform: translateX(3px);
}

/* Triage Footer */
.jexpot-triage-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.875rem;
    border-top: 1px solid var(--jexpot-border-light);
    font-size: 0.75rem;
    color: #64748b;
    flex-wrap: wrap;
}

.jexpot-triage-footer__item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.jexpot-triage-footer__item strong {
    color: var(--jexpot-text);
}

/* --------------------------------------------------------------------------
   3. Services Grid (.jexpot-services-grid)
   -------------------------------------------------------------------------- */
.jexpot-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.jexpot-service-card {
    background: var(--jexpot-surface);
    border-radius: var(--jexpot-radius-lg);
    padding: 2.25rem 2rem;
    border: 1px solid var(--jexpot-border);
    box-shadow: var(--jexpot-shadow-sm);
    transition: all var(--jexpot-transition-base);
    display: flex;
    flex-direction: column;
    position: relative;
}

.jexpot-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--jexpot-shadow-lg);
    border-color: rgba(37, 99, 235, 0.35);
}

.jexpot-service-card__icon {
    width: 58px;
    height: 58px;
    border-radius: var(--jexpot-radius-md);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    color: var(--jexpot-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: all var(--jexpot-transition-base);
}

.jexpot-service-card:hover .jexpot-service-card__icon {
    background: linear-gradient(135deg, var(--jexpot-primary) 0%, var(--jexpot-secondary) 100%);
    color: #ffffff;
    transform: scale(1.08);
}

.jexpot-service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.jexpot-service-card p {
    color: var(--jexpot-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.jexpot-service-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.jexpot-service-card__features li {
    font-size: 0.875rem;
    color: var(--jexpot-text);
    padding: 0.35rem 0 0.35rem 1.4rem;
    position: relative;
    display: block;
    line-height: 1.5;
}

.jexpot-service-card__features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.35rem;
    font-weight: 700;
    color: #10b981;
}

.jexpot-service-card__link {
    font-size: 0.925rem;
    font-weight: 600;
    color: var(--jexpot-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap var(--jexpot-transition-fast);
}

.jexpot-service-card:hover .jexpot-service-card__link {
    gap: 0.65rem;
}

/* --------------------------------------------------------------------------
   4. Why Choose JexPot (.jexpot-why-section)
   -------------------------------------------------------------------------- */
.jexpot-why-section {
    background: linear-gradient(180deg, var(--jexpot-bg-alt) 0%, var(--jexpot-bg) 100%);
    border-radius: var(--jexpot-radius-xl);
    padding: 4rem 3rem;
    margin: 4rem 0;
}

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

.jexpot-why-card {
    background: var(--jexpot-surface);
    padding: 2rem 1.75rem;
    border-radius: var(--jexpot-radius-md);
    box-shadow: var(--jexpot-shadow-sm);
    border: 1px solid var(--jexpot-border-light);
}

.jexpot-why-card__num {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(37, 99, 235, 0.2);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.jexpot-why-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.jexpot-why-card p {
    font-size: 0.9rem;
    color: var(--jexpot-text-secondary);
    line-height: 1.55;
    margin: 0;
}

/* --------------------------------------------------------------------------
   5. Interactive Audit Lead Box (.jexpot-audit-box)
   -------------------------------------------------------------------------- */
.jexpot-audit-box {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    border-radius: var(--jexpot-radius-xl);
    padding: 3.5rem 3rem;
    margin: 4rem 0;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.35);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.jexpot-audit-box::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.25) 0%, rgba(37, 99, 235, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.jexpot-audit-box__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.jexpot-audit-box h2 {
    color: #ffffff;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.jexpot-audit-box p {
    color: #bae6fd;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.jexpot-audit-form {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: var(--jexpot-radius-lg);
}

.jexpot-form-group {
    margin-bottom: 1.25rem;
}

.jexpot-form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #e0f2fe;
    margin-bottom: 0.35rem;
}

.jexpot-input,
.jexpot-select {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid transparent;
    border-radius: var(--jexpot-radius-md);
    color: #0f172a;
    outline: none;
    transition: all var(--jexpot-transition-fast);
}

.jexpot-input:focus,
.jexpot-select:focus {
    background: #ffffff;
    border-color: var(--jexpot-primary-light);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}

.jexpot-submit-btn:disabled {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none !important;
}

.jexpot-form-status {
    animation: jexpotFadeIn 0.3s ease;
}

@keyframes jexpotFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------------------------
   6. Pricing Cards (.jexpot-pricing)
   -------------------------------------------------------------------------- */
.jexpot-pricing {
    padding: 2rem 0;
}

.jexpot-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.jexpot-pricing-card {
    background: var(--jexpot-surface);
    border-radius: var(--jexpot-radius-lg);
    padding: 2.5rem 2rem;
    border: 1px solid var(--jexpot-border);
    box-shadow: var(--jexpot-shadow-sm);
    display: flex;
    flex-direction: column;
    transition: all var(--jexpot-transition-base);
    position: relative;
}

.jexpot-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--jexpot-shadow-lg);
}

.jexpot-pricing-card--featured {
    border-color: var(--jexpot-primary);
    box-shadow: var(--jexpot-shadow-lg), 0 0 0 1px var(--jexpot-primary);
    transform: scale(1.03);
}

.jexpot-pricing-card--featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.jexpot-pricing-card__popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--jexpot-primary) 0%, var(--jexpot-secondary) 100%);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 1.25rem;
    border-radius: var(--jexpot-radius-full);
    white-space: nowrap;
}

.jexpot-pricing-card__name {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--jexpot-text);
}

.jexpot-pricing-card__desc {
    font-size: 0.9rem;
    color: var(--jexpot-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.jexpot-pricing-card__price {
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--jexpot-border-light);
}

.jexpot-pricing-card__amount {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--jexpot-text);
    line-height: 1;
}

.jexpot-pricing-card__amount span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--jexpot-text-secondary);
}

.jexpot-pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.jexpot-pricing-card__features li {
    padding: 0.45rem 0;
    font-size: 0.9rem;
    color: var(--jexpot-text);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.45;
}

.jexpot-pricing-card__features li::before {
    content: "✓";
    font-weight: 700;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.jexpot-pricing-card__features li.disabled {
    color: var(--jexpot-text-muted);
    text-decoration: line-through;
}

.jexpot-pricing-card__features li.disabled::before {
    content: "✕";
    color: var(--jexpot-text-muted);
}

/* --------------------------------------------------------------------------
   7. Footer Columns (.jexpot-footer-grid)
   -------------------------------------------------------------------------- */
.jexpot-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(2, 1fr) 1.25fr;
    gap: 3rem;
}

.jexpot-footer-col h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

.jexpot-footer-col p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.jexpot-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jexpot-footer-col ul li {
    margin-bottom: 0.6rem;
}

.jexpot-footer-col ul li a {
    color: #94a3b8;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color var(--jexpot-transition-fast);
}

.jexpot-footer-col ul li a:hover {
    color: #ffffff;
}

.jexpot-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.jexpot-footer-brand__logo {
    width: 36px;
    height: 36px;
}

.jexpot-footer-brand__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.jexpot-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

.jexpot-footer-contact-item a {
    color: #94a3b8;
    text-decoration: none;
    transition: color var(--jexpot-transition-fast);
}

.jexpot-footer-contact-item a:hover {
    color: #ffffff;
}

.jexpot-footer-techs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.jexpot-footer-tech {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: var(--jexpot-radius-sm);
    background: rgba(255, 255, 255, 0.08);
    color: #64748b;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* --------------------------------------------------------------------------
   8. Multilingual Language Switcher
   -------------------------------------------------------------------------- */
.jexpot-lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--jexpot-surface);
    padding: 0.25rem 0.5rem;
    border-radius: var(--jexpot-radius-full);
    border: 1px solid var(--jexpot-border);
    font-size: 0.8125rem;
    font-weight: 600;
}

.jexpot-lang-switcher a {
    color: var(--jexpot-text-secondary);
    padding: 0.2rem 0.5rem;
    border-radius: var(--jexpot-radius-full);
    text-decoration: none;
    transition: all var(--jexpot-transition-fast);
}

.jexpot-lang-switcher a:hover,
.jexpot-lang-switcher a.active {
    color: var(--jexpot-primary);
    background: rgba(37, 99, 235, 0.1);
}

/* --------------------------------------------------------------------------
   9. Service Landing Pages Components (.jexpot-sp-*)
   -------------------------------------------------------------------------- */
.jexpot-service-page {
    padding: 2.5rem 0 5rem 0;
}

.jexpot-sp-hero {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(14, 165, 233, 0.04) 100%);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: var(--jexpot-radius-xl);
    padding: 3.5rem 3rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.jexpot-sp-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.jexpot-sp-hero__lead {
    font-size: 1.2rem;
    color: var(--jexpot-text-secondary);
    line-height: 1.65;
    max-width: 820px;
    margin-bottom: 2rem;
}

.jexpot-sp-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.25rem;
}

.jexpot-sp-tag {
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: var(--jexpot-radius-full);
    background: #ffffff;
    color: var(--jexpot-text);
    border: 1px solid var(--jexpot-border);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

/* Pain points & Solutions Grid */
.jexpot-sp-section {
    margin-bottom: 4.5rem;
}

.jexpot-sp-section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.jexpot-sp-section-sub {
    font-size: 1.1rem;
    color: var(--jexpot-text-secondary);
    margin-bottom: 2.5rem;
    max-width: 760px;
    line-height: 1.6;
}

.jexpot-pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
}

.jexpot-pain-card {
    background: var(--jexpot-surface);
    border-radius: var(--jexpot-radius-lg);
    padding: 2rem;
    border: 1px solid var(--jexpot-border);
    box-shadow: var(--jexpot-shadow-sm);
    transition: transform var(--jexpot-transition-base);
}

.jexpot-pain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--jexpot-shadow-md);
}

.jexpot-pain-card__icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.jexpot-pain-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.jexpot-pain-card p {
    font-size: 0.95rem;
    color: var(--jexpot-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Process Timeline */
.jexpot-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    position: relative;
}

.jexpot-process-step {
    background: var(--jexpot-surface);
    border-radius: var(--jexpot-radius-lg);
    padding: 2rem 1.75rem;
    border: 1px solid var(--jexpot-border);
    position: relative;
}

.jexpot-process-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--jexpot-primary) 0%, var(--jexpot-secondary) 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.jexpot-process-step h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.jexpot-process-step p {
    font-size: 0.9rem;
    color: var(--jexpot-text-secondary);
    line-height: 1.55;
    margin: 0;
}

/* FAQ Accordion Items */
.jexpot-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 860px;
}

.jexpot-faq-item {
    background: var(--jexpot-surface);
    border-radius: var(--jexpot-radius-md);
    padding: 1.5rem 1.75rem;
    border: 1px solid var(--jexpot-border);
}

.jexpot-faq-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--jexpot-text);
}

.jexpot-faq-item p {
    font-size: 0.95rem;
    color: var(--jexpot-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* --------------------------------------------------------------------------
   10. Interactive Cost Calculator & Brief Builder (.jexpot-calc-*)
   -------------------------------------------------------------------------- */
.jexpot-calculator {
    padding: 3rem 0;
}

.jexpot-calc-container {
    background: var(--jexpot-surface);
    border: 1px solid var(--jexpot-border);
    border-radius: var(--jexpot-radius-xl);
    box-shadow: var(--jexpot-shadow-lg);
    max-width: 960px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.jexpot-calc-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.jexpot-calc-header h2 {
    color: #ffffff;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.jexpot-calc-header p {
    color: #94a3b8;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

/* Steps Progress Bar */
.jexpot-calc-nav {
    display: flex;
    justify-content: space-between;
    background: #f8fafc;
    border-bottom: 1px solid var(--jexpot-border);
    padding: 1rem 2.5rem;
}

.jexpot-calc-step-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #94a3b8;
    background: none;
    border: none;
    cursor: default;
    padding: 0.25rem 0.5rem;
    transition: all var(--jexpot-transition-fast);
}

.jexpot-calc-step-btn__num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all var(--jexpot-transition-fast);
}

.jexpot-calc-step-btn.active {
    color: var(--jexpot-primary);
}

.jexpot-calc-step-btn.active .jexpot-calc-step-btn__num {
    background: var(--jexpot-primary);
    color: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.jexpot-calc-step-btn.completed {
    color: var(--jexpot-text);
}

.jexpot-calc-step-btn.completed .jexpot-calc-step-btn__num {
    background: #10b981;
    color: #ffffff;
}

/* Step Content Area */
.jexpot-calc-body {
    padding: 2.5rem;
}

.jexpot-calc-step {
    display: none;
    animation: jexpotFadeIn 0.35s ease;
}

.jexpot-calc-step.active {
    display: block;
}

.jexpot-calc-step__title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--jexpot-text);
}

.jexpot-calc-step__subtitle {
    font-size: 0.95rem;
    color: var(--jexpot-text-secondary);
    margin-bottom: 1.75rem;
}

/* Choice Cards Grid */
.jexpot-calc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.jexpot-calc-card {
    background: #ffffff;
    border: 2px solid var(--jexpot-border);
    border-radius: var(--jexpot-radius-lg);
    padding: 1.5rem 1.25rem;
    cursor: pointer;
    transition: all var(--jexpot-transition-fast);
    position: relative;
    user-select: none;
    display: flex;
    flex-direction: column;
}

.jexpot-calc-card:hover {
    border-color: var(--jexpot-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--jexpot-shadow-md);
}

.jexpot-calc-card.selected {
    border-color: var(--jexpot-primary);
    background: rgba(37, 99, 235, 0.03);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

.jexpot-calc-card__icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.jexpot-calc-card__name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--jexpot-text);
}

.jexpot-calc-card__desc {
    font-size: 0.85rem;
    color: var(--jexpot-text-secondary);
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 0.75rem;
}

.jexpot-calc-card__badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--jexpot-primary);
    background: rgba(37, 99, 235, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: var(--jexpot-radius-full);
    display: inline-block;
    align-self: flex-start;
}

.jexpot-calc-card__check {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: transparent;
    transition: all var(--jexpot-transition-fast);
}

.jexpot-calc-card.selected .jexpot-calc-card__check {
    background: var(--jexpot-primary);
    border-color: var(--jexpot-primary);
    color: #ffffff;
}

/* Real-time Summary Box */
.jexpot-calc-summary-banner {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(14, 165, 233, 0.06) 100%);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--jexpot-radius-lg);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.jexpot-calc-summary-val {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--jexpot-primary);
    line-height: 1.1;
}

.jexpot-calc-summary-timeline {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--jexpot-text-secondary);
}

/* Footer Actions */
.jexpot-calc-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--jexpot-border);
    padding-top: 1.75rem;
    gap: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .jexpot-calc-nav {
        padding: 0.75rem 1.25rem;
        overflow-x: auto;
    }
    .jexpot-calc-nav span.jexpot-calc-step-label {
        display: none;
    }
    .jexpot-calc-header,
    .jexpot-calc-body {
        padding: 1.5rem;
    }
    .jexpot-calc-summary-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}
/* --------------------------------------------------------------------------
   10b. Calculator v2 — Trust, Chips, Bonus, Guarantee, Social Proof
   -------------------------------------------------------------------------- */
.jexpot-trust-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: -0.5rem auto 2rem auto;
    max-width: 820px;
}
.jexpot-trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 999px;
    padding: 0.45rem 1rem;
}
.jexpot-trust-icon { font-size: 1rem; }

/* Live Selection Chips */
.jexpot-calc-live-chips {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    min-height: 1.75rem;
    margin-top: 0.5rem;
}
.jexpot-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.65rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 999px;
    background: #e2e8f0;
    color: #334155;
    animation: chipIn 0.2s ease;
}
.jexpot-chip--primary {
    background: rgba(37, 99, 235, 0.12);
    color: #2563eb;
    border: 1px solid rgba(37, 99, 235, 0.2);
}
@keyframes chipIn {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
}

/* Bonus Offer Banner */
.jexpot-bonus-banner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(37, 99, 235, 0.06) 100%);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 12px;
    font-size: 0.9rem;
    color: #065f46;
    line-height: 1.5;
}
.jexpot-bonus-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* Guarantee Footer */
.jexpot-guarantee-footer {
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

/* Social Proof */
.jexpot-social-proof {
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 1.5rem;
    padding: 0.75rem 1rem;
}

/* --------------------------------------------------------------------------
   11. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
    .jexpot-hero__inner,
    .jexpot-audit-box__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .jexpot-hero { padding: 3rem 0 2rem 0; }
    .jexpot-audit-box { padding: 2.5rem 1.75rem; }
    .jexpot-why-section { padding: 3rem 1.5rem; }
    .jexpot-pricing-card--featured { transform: none; }
    .jexpot-pricing-card--featured:hover { transform: translateY(-4px); }
    .jexpot-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .jexpot-hero-stats { grid-template-columns: 1fr; gap: 1rem; }
    .jexpot-hero__actions { flex-direction: column; }
    .jexpot-btn { width: 100%; }
    .jexpot-footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .jexpot-pricing-grid { grid-template-columns: 1fr; }
}
