/**
 * WCPA Pro Showcase Stylesheet
 */

:root {
    --wcpa-pro-primary: #4f46e5;
    --wcpa-pro-primary-dark: #4338ca;
    --wcpa-pro-primary-light: #eef2ff;
    --wcpa-pro-primary-glow: rgba(79, 70, 229, 0.25);
    
    --wcpa-pro-accent: #0ea5e9;
    --wcpa-pro-success: #10b981;
    --wcpa-pro-success-light: #ecfdf5;

    --wcpa-pro-bg-page: #f8fafc;
    --wcpa-pro-bg-card: #ffffff;
    --wcpa-pro-bg-alt: #f1f5f9;

    --wcpa-pro-text-dark: #0f172a;
    --wcpa-pro-text-body: #334155;
    --wcpa-pro-text-muted: #64748b;
    --wcpa-pro-border: #e2e8f0;

    --wcpa-pro-radius-sm: 6px;
    --wcpa-pro-radius-md: 8px;
    --wcpa-pro-radius-lg: 12px;
    --wcpa-pro-radius-xl: 16px;

    --wcpa-pro-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --wcpa-pro-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --wcpa-pro-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    --wcpa-pro-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);

    --wcpa-pro-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --wcpa-pro-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 100vw Full-Width Viewport Breakout */
.wcpa-pro-page-wrapper {
    font-family: var(--wcpa-pro-font-sans);
    color: var(--wcpa-pro-text-body);
    background-color: var(--wcpa-pro-bg-page);
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    overflow-x: hidden;
    box-sizing: border-box;
}

.wcpa-pro-page-wrapper *,
.wcpa-pro-page-wrapper *::before,
.wcpa-pro-page-wrapper *::after {
    box-sizing: border-box;
}

.wcpa-pro-page-wrapper a {
    text-decoration: none !important;
}

.wcpa-pro-container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

/* =========================================================================
   Hero Section
   ========================================================================= */
.wcpa-pro-hero-section {
    padding: 72px 0 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid var(--wcpa-pro-border);
    width: 100%;
}

.wcpa-pro-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.wcpa-pro-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.wcpa-pro-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--wcpa-pro-primary-light);
    color: var(--wcpa-pro-primary);
    font-size: 0.84rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 9999px;
    margin-bottom: 20px;
    border: 1px solid rgba(79, 70, 229, 0.2);
    align-self: flex-start;
    width: fit-content;
    max-width: max-content;
}

.wcpa-pro-hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.18;
    color: var(--wcpa-pro-text-dark);
    margin: 0 0 20px;
    letter-spacing: -0.025em;
}

.wcpa-pro-hero-title span {
    background: linear-gradient(135deg, #4f46e5 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.wcpa-pro-hero-desc {
    font-size: 1.15rem;
    color: var(--wcpa-pro-text-body);
    line-height: 1.6;
    margin: 0 0 32px;
    max-width: 560px;
}

.wcpa-pro-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
}

.wcpa-pro-btn-primary {
    background: linear-gradient(135deg, var(--wcpa-pro-primary) 0%, #4338ca 100%);
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--wcpa-pro-radius-md);
    box-shadow: 0 4px 12px var(--wcpa-pro-primary-glow);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--wcpa-pro-transition);
}

.wcpa-pro-btn-primary:hover {
    background: linear-gradient(135deg, #4338ca 0%, #3730a3 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.35);
}

.wcpa-pro-btn-secondary {
    background: #ffffff;
    color: var(--wcpa-pro-text-dark) !important;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--wcpa-pro-radius-md);
    border: 1px solid var(--wcpa-pro-border);
    box-shadow: var(--wcpa-pro-shadow-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--wcpa-pro-transition);
}

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

.wcpa-pro-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.wcpa-pro-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--wcpa-pro-text-muted);
}

.wcpa-pro-trust-item svg {
    color: var(--wcpa-pro-success);
}

/* =========================================================================
   Hero Preview Card: Live Pricing Calculator
   ========================================================================= */
.wcpa-pro-preview-card {
    background: var(--wcpa-pro-bg-card);
    border: 1px solid var(--wcpa-pro-border);
    border-radius: var(--wcpa-pro-radius-xl);
    box-shadow: var(--wcpa-pro-shadow-xl);
    padding: 28px 26px;
    position: relative;
}

.wcpa-pro-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--wcpa-pro-border);
    padding-bottom: 14px;
    margin-bottom: 8px;
}

.wcpa-pro-preview-product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--wcpa-pro-text-dark);
    margin: 0;
}

.wcpa-pro-base-price-tag {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--wcpa-pro-primary);
    background: var(--wcpa-pro-primary-light);
    padding: 4px 12px;
    border-radius: 9999px;
}

.wcpa-pro-preview-mock-button {
    background: linear-gradient(135deg, var(--wcpa-pro-primary) 0%, #4338ca 100%);
    color: #ffffff;
    text-align: center;
    padding: 13px;
    border-radius: var(--wcpa-pro-radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 10px;
    box-shadow: 0 4px 12px var(--wcpa-pro-primary-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: default;
    transition: var(--wcpa-pro-transition);
}

.wcpa-pro-preview-footnote {
    font-size: 0.78rem;
    color: var(--wcpa-pro-text-muted);
    text-align: center;
    margin: 8px 0 0 0;
    line-height: 1.4;
}

.wcpa-pro-preview-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wcpa-pro-preview-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wcpa-pro-field-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wcpa-pro-preview-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--wcpa-pro-text-dark);
    margin: 0;
}

.wcpa-pro-field-price-tag {
    font-size: 0.78rem;
    font-weight: 600;
    color: #4f46e5;
    background: #eef2ff;
    padding: 2px 8px;
    border-radius: 4px;
}

.wcpa-pro-preview-input {
    width: 100%;
    padding: 9px 12px;
    font-size: 0.88rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--wcpa-pro-radius-sm);
    background: #ffffff;
    color: #1e293b;
    font-family: inherit;
    transition: border-color 0.15s ease;
}

.wcpa-pro-preview-input:focus {
    border-color: var(--wcpa-pro-primary);
    outline: none;
    box-shadow: 0 0 0 1px var(--wcpa-pro-primary);
}

/* Swatch Grid */
.wcpa-pro-swatch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.wcpa-pro-swatch-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 4px;
    border: 1.5px solid var(--wcpa-pro-border);
    border-radius: var(--wcpa-pro-radius-sm);
    cursor: pointer;
    transition: var(--wcpa-pro-transition);
    background: #ffffff;
    text-align: center;
}

.wcpa-pro-swatch-item input {
    display: none;
}

.wcpa-pro-swatch-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-bottom: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.wcpa-swatch-steel { background: linear-gradient(135deg, #e2e8f0 0%, #94a3b8 100%); }
.wcpa-swatch-black { background: #1e293b; }
.wcpa-swatch-brass { background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%); }

.wcpa-pro-swatch-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--wcpa-pro-text-dark);
}

.wcpa-pro-swatch-price {
    font-size: 0.72rem;
    color: var(--wcpa-pro-text-muted);
}

.wcpa-pro-swatch-item.is-selected {
    border-color: var(--wcpa-pro-primary);
    background: var(--wcpa-pro-primary-light);
}

.wcpa-pro-swatch-item.is-selected .wcpa-pro-swatch-price {
    color: var(--wcpa-pro-primary);
    font-weight: 600;
}

/* Dropzone */
.wcpa-pro-dropzone {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border: 1.5px dashed #cbd5e1;
    border-radius: var(--wcpa-pro-radius-sm);
    background: #f8fafc;
    cursor: pointer;
    transition: var(--wcpa-pro-transition);
}

.wcpa-pro-dropzone svg {
    color: var(--wcpa-pro-primary);
    flex-shrink: 0;
}

.wcpa-pro-dropzone-text {
    display: flex;
    flex-direction: column;
}

.wcpa-pro-dropzone-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--wcpa-pro-text-dark);
}

.wcpa-pro-dropzone-hint {
    font-size: 0.72rem;
    color: var(--wcpa-pro-text-muted);
}

.wcpa-pro-dropzone.is-uploaded {
    border-color: var(--wcpa-pro-success);
    background: var(--wcpa-pro-success-light);
}

.wcpa-pro-dropzone.is-uploaded svg {
    color: var(--wcpa-pro-success);
}

/* Checkbox Card */
.wcpa-pro-checkbox-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border: 1px solid var(--wcpa-pro-border);
    border-radius: var(--wcpa-pro-radius-sm);
    cursor: pointer;
    transition: var(--wcpa-pro-transition);
    background: #ffffff;
}

.wcpa-pro-checkbox-card input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--wcpa-pro-primary);
    cursor: pointer;
    margin: 0;
}

.wcpa-pro-checkbox-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.wcpa-pro-checkbox-title {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--wcpa-pro-text-dark);
}

.wcpa-pro-checkbox-sub {
    font-size: 0.72rem;
    color: var(--wcpa-pro-text-muted);
}

.wcpa-pro-checkbox-price {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--wcpa-pro-primary);
}

/* Pricing Summary Box */
.wcpa-pro-pricing-summary {
    background: #f8fafc;
    border: 1px solid var(--wcpa-pro-border);
    border-radius: var(--wcpa-pro-radius-sm);
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 4px;
}

.wcpa-pro-price-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--wcpa-pro-text-muted);
}

.wcpa-pro-summary-val {
    font-weight: 600;
    color: var(--wcpa-pro-text-dark);
}

.wcpa-pro-addons-val {
    color: var(--wcpa-pro-primary);
}

.wcpa-pro-total-row {
    border-top: 1px solid #e2e8f0;
    padding-top: 10px;
    margin-top: 6px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
}

.wcpa-pro-total-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--wcpa-pro-primary);
}

.wcpa-pro-preview-mock-button {
    background: linear-gradient(135deg, var(--wcpa-pro-primary) 0%, #4338ca 100%);
    color: #ffffff;
    text-align: center;
    padding: 12px;
    border-radius: var(--wcpa-pro-radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 4px;
    box-shadow: 0 4px 12px var(--wcpa-pro-primary-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.wcpa-pro-preview-footnote {
    font-size: 0.75rem;
    color: var(--wcpa-pro-text-muted);
    text-align: center;
    margin: 8px 0 0 0;
    line-height: 1.4;
}

/* =========================================================================
   Sections Common Header
   ========================================================================= */
.wcpa-pro-section {
    padding: 80px 0;
    width: 100%;
}

.wcpa-pro-section-alt {
    background-color: var(--wcpa-pro-bg-alt);
    border-top: 1px solid var(--wcpa-pro-border);
    border-bottom: 1px solid var(--wcpa-pro-border);
}

.wcpa-pro-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
}

.wcpa-pro-section-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--wcpa-pro-primary);
    margin-bottom: 10px;
}

.wcpa-pro-section-title {
    font-size: 2.15rem;
    font-weight: 800;
    color: var(--wcpa-pro-text-dark);
    line-height: 1.25;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}

.wcpa-pro-section-subtitle {
    font-size: 1.05rem;
    color: var(--wcpa-pro-text-muted);
    line-height: 1.55;
    margin: 0;
}

/* =========================================================================
   8 Feature Cards
   ========================================================================= */
.wcpa-pro-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.wcpa-pro-feature-card {
    background: var(--wcpa-pro-bg-card);
    border: 1px solid var(--wcpa-pro-border);
    border-radius: var(--wcpa-pro-radius-lg);
    padding: 24px;
    box-shadow: var(--wcpa-pro-shadow-sm);
    transition: var(--wcpa-pro-transition);
    display: flex;
    flex-direction: column;
}

.wcpa-pro-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--wcpa-pro-shadow-lg);
    border-color: rgba(79, 70, 229, 0.3);
}

.wcpa-pro-feature-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.wcpa-pro-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--wcpa-pro-radius-md);
    background: var(--wcpa-pro-primary-light);
    color: var(--wcpa-pro-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wcpa-pro-feature-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 9999px;
}

.wcpa-pro-feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--wcpa-pro-text-dark);
    margin: 0 0 8px;
}

.wcpa-pro-feature-desc {
    font-size: 0.88rem;
    color: var(--wcpa-pro-text-muted);
    line-height: 1.55;
    margin: 0;
}

/* =========================================================================
   6 Demo Product Cards
   ========================================================================= */
.wcpa-pro-demos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.wcpa-pro-demo-card {
    background: var(--wcpa-pro-bg-card);
    border: 1px solid var(--wcpa-pro-border);
    border-radius: var(--wcpa-pro-radius-xl);
    overflow: hidden;
    box-shadow: var(--wcpa-pro-shadow-sm);
    transition: var(--wcpa-pro-transition);
    display: flex;
    flex-direction: column;
}

.wcpa-pro-demo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--wcpa-pro-shadow-xl);
    border-color: rgba(79, 70, 229, 0.35);
}

.wcpa-pro-demo-header {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--wcpa-pro-border);
}

.wcpa-pro-demo-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--wcpa-pro-primary);
    background: #ffffff;
    padding: 4px 10px;
    border-radius: 9999px;
    box-shadow: var(--wcpa-pro-shadow-sm);
}

.wcpa-pro-demo-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--wcpa-pro-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--wcpa-pro-shadow-sm);
}

.wcpa-pro-demo-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.wcpa-pro-demo-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--wcpa-pro-text-dark);
    margin: 0 0 8px;
}

.wcpa-pro-demo-desc {
    font-size: 0.88rem;
    color: var(--wcpa-pro-text-muted);
    line-height: 1.5;
    margin: 0 0 16px;
    flex-grow: 1;
}

.wcpa-pro-demo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.wcpa-pro-tag {
    font-size: 0.75rem;
    font-weight: 500;
    color: #475569;
    background: #f1f5f9;
    padding: 3px 8px;
    border-radius: 4px;
}

.wcpa-pro-demo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--wcpa-pro-radius-md);
    background: var(--wcpa-pro-primary-light);
    color: var(--wcpa-pro-primary) !important;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--wcpa-pro-transition);
}

.wcpa-pro-demo-link:hover {
    background: var(--wcpa-pro-primary);
    color: #ffffff !important;
}

/* =========================================================================
   3 Steps How It Works
   ========================================================================= */
.wcpa-pro-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.wcpa-pro-step-card {
    background: var(--wcpa-pro-bg-card);
    border: 1px solid var(--wcpa-pro-border);
    border-radius: var(--wcpa-pro-radius-lg);
    padding: 28px;
    box-shadow: var(--wcpa-pro-shadow-sm);
    position: relative;
}

.wcpa-pro-step-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--wcpa-pro-primary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 12px;
}

.wcpa-pro-step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--wcpa-pro-text-dark);
    margin: 0 0 8px;
}

.wcpa-pro-step-desc {
    font-size: 0.9rem;
    color: var(--wcpa-pro-text-muted);
    line-height: 1.55;
    margin: 0;
}

/* =========================================================================
   Feature Matrix 4 Groups
   ========================================================================= */
.wcpa-pro-groups-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.wcpa-pro-group-card {
    background: var(--wcpa-pro-bg-card);
    border: 1px solid var(--wcpa-pro-border);
    border-radius: var(--wcpa-pro-radius-lg);
    padding: 24px;
    box-shadow: var(--wcpa-pro-shadow-sm);
    display: flex;
    flex-direction: column;
}

.wcpa-pro-group-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--wcpa-pro-border);
}

.wcpa-pro-group-icon {
    color: var(--wcpa-pro-primary);
    display: flex;
    align-items: center;
}

.wcpa-pro-group-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--wcpa-pro-text-dark);
    margin: 0;
}

.wcpa-pro-group-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wcpa-pro-group-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--wcpa-pro-text-body);
    line-height: 1.35;
}

.wcpa-pro-group-item svg {
    color: var(--wcpa-pro-success);
    flex-shrink: 0;
    margin-top: 2px;
}

.wcpa-pro-matrix-cta {
    text-align: center;
}

/* =========================================================================
   Bottom CTA Banner
   ========================================================================= */
.wcpa-pro-cta-banner-section {
    padding: 0 0 80px;
    width: 100%;
}

.wcpa-pro-cta-banner-card {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
    border-radius: var(--wcpa-pro-radius-xl);
    padding: 56px 40px;
    text-align: center;
    color: #ffffff;
    box-shadow: var(--wcpa-pro-shadow-xl);
    max-width: 960px;
    margin: 0 auto;
}

.wcpa-pro-banner-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 9999px;
    margin-bottom: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.wcpa-pro-cta-banner-card h2,
.wcpa-pro-cta-banner-card .wcpa-pro-banner-title,
.wcpa-pro-banner-title {
    color: #ffffff !important;
    font-size: 2.25rem;
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.wcpa-pro-cta-banner-card p,
.wcpa-pro-cta-banner-card .wcpa-pro-banner-sub,
.wcpa-pro-banner-sub {
    font-size: 1.05rem;
    color: #e0e7ff !important;
    max-width: 620px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.wcpa-pro-banner-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.wcpa-pro-btn-white {
    background: #ffffff;
    color: #1e1b4b !important;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: var(--wcpa-pro-radius-md);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--wcpa-pro-transition);
}

.wcpa-pro-btn-white:hover {
    transform: translateY(-2px);
    background: #f8fafc;
}

.wcpa-pro-btn-outline-white {
    background: transparent;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--wcpa-pro-radius-md);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--wcpa-pro-transition);
}

.wcpa-pro-btn-outline-white:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* =========================================================================
   Responsive Breakpoints
   ========================================================================= */
@media (max-width: 1024px) {
    .wcpa-pro-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .wcpa-pro-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .wcpa-pro-demos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .wcpa-pro-groups-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wcpa-pro-hero-title {
        font-size: 2.15rem;
    }
    .wcpa-pro-demos-grid,
    .wcpa-pro-features-grid,
    .wcpa-pro-steps-grid,
    .wcpa-pro-groups-grid {
        grid-template-columns: 1fr;
    }
    .wcpa-pro-cta-banner-card {
        padding: 40px 24px;
    }
    .wcpa-pro-cta-banner-card h2,
.wcpa-pro-cta-banner-card .wcpa-pro-banner-title,
.wcpa-pro-banner-title {
    color: #ffffff !important;
    font-size: 2.25rem;
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
}

/* =========================================================================
   Authentic WCPA Pro Form Styles (Matching Screenshot)
   ========================================================================= */
.wcpa-pro-form-wrapper {
    background: #ffffff;
    border: 1px solid var(--wcpa-pro-border);
    border-radius: var(--wcpa-pro-radius-xl);
    box-shadow: var(--wcpa-pro-shadow-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.wcpa-pro-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.wcpa-pro-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #3b4975;
    margin: 0;
    line-height: 1.3;
}

.wcpa-pro-field-sub {
    font-size: 0.82rem;
    color: #64748b;
    margin: 0 0 2px 0;
    line-height: 1.3;
}

/* Swatches Row */
.wcpa-pro-swatches-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 4px;
}

.wcpa-pro-swatch-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    text-align: center;
}

.wcpa-pro-swatch-box input {
    display: none;
}

.wcpa-pro-swatch-thumb {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    border: 2px solid transparent;
    transition: var(--wcpa-pro-transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.wcpa-swatch-steel {
    background: linear-gradient(135deg, #bdc3c7 0%, #8e9eab 50%, #bdc3c7 100%);
}

.wcpa-swatch-black {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
}

.wcpa-swatch-brass {
    background: linear-gradient(135deg, #d4af37 0%, #aa7c11 50%, #d4af37 100%);
}

.wcpa-pro-swatch-box.is-selected .wcpa-pro-swatch-thumb {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.25);
}

.wcpa-pro-swatch-label {
    font-size: 0.82rem;
    color: #3b4975;
    font-weight: 500;
}

/* Field Cost Indicator on Right */
.wcpa-pro-field-cost {
    text-align: right;
    font-size: 0.88rem;
    color: #475569;
    font-weight: 500;
    margin-top: 2px;
}

/* Input Fields */
.wcpa-pro-input {
    width: 100%;
    padding: 10px 14px;
    font-size: 0.9rem;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    background: #ffffff;
    color: #1e293b;
    font-family: inherit;
    transition: border-color 0.15s ease;
}

.wcpa-pro-input::placeholder {
    color: #94a3b8;
}

.wcpa-pro-input:focus {
    border-color: #2563eb;
    outline: none;
    box-shadow: 0 0 0 1px #2563eb;
}

/* File Upload Bar (Input + Button) */
.wcpa-pro-upload-bar {
    display: flex;
    align-items: stretch;
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    overflow: hidden;
    background: #ffffff;
}

.wcpa-pro-upload-input {
    flex-grow: 1;
    border: none !important;
    padding: 9px 12px;
    font-size: 0.88rem;
    background: transparent;
    color: #1e293b;
    outline: none;
    font-family: inherit;
    cursor: pointer;
}

.wcpa-pro-upload-btn {
    background: #2b4cd9 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 0 20px !important;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
    border-radius: 0 !important;
    font-family: inherit;
    box-shadow: none !important;
}

.wcpa-pro-upload-btn:hover {
    background: #1e3bb3 !important;
}

/* Checkbox Inline */
.wcpa-pro-checkbox-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #3b4975;
    font-weight: 500;
    cursor: pointer;
}

.wcpa-pro-checkbox-inline input[type="checkbox"] {
    width: 17px;
    height: 17px;
    accent-color: #2563eb;
    margin: 0;
    border-radius: 2px;
    cursor: pointer;
}

/* Pricing Table */
.wcpa-pro-pricing-table {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
}

.wcpa-pro-table-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #3b4975;
}

.wcpa-pro-table-label {
    font-weight: 500;
}

.wcpa-pro-table-val {
    font-weight: 500;
}



.wcpa-pro-total-row {
    border-top: 1px solid #e2e8f0;
    padding-top: 10px;
    margin-top: 6px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
}

.wcpa-pro-total-label {
    font-weight: 800;
}

.wcpa-pro-total-val {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
}

/* Quantity & Add to Cart Row */
.wcpa-pro-cart-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.wcpa-pro-qty {
    width: 48px;
    height: 38px;
    border: 1px solid #cbd5e1;
    border-radius: 2px;
    text-align: center;
    font-size: 0.95rem;
    font-family: inherit;
    color: #1e293b;
    padding: 2px;
}

.wcpa-pro-qty:focus {
    border-color: #0073aa;
    outline: none;
}

.wcpa-pro-add-to-cart-btn {
    background: #0073aa !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 2px;
    height: 38px;
    padding: 0 22px !important;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s ease;
    box-shadow: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wcpa-pro-add-to-cart-btn:hover {
    background: #005a87 !important;
}

/* =========================================================================
   FAQ Accordion Section Styles
   ========================================================================= */
.wcpa-pro-faq-accordion {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.wcpa-pro-faq-item {
    background: var(--wcpa-pro-bg-card);
    border: 1px solid var(--wcpa-pro-border);
    border-radius: var(--wcpa-pro-radius-lg);
    overflow: hidden;
    box-shadow: var(--wcpa-pro-shadow-sm);
    transition: var(--wcpa-pro-transition);
}

.wcpa-pro-faq-item:hover {
    border-color: rgba(79, 70, 229, 0.3);
}

.wcpa-pro-faq-item.is-open {
    border-color: var(--wcpa-pro-primary);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.08);
}

.wcpa-pro-faq-question {
    width: 100%;
    background: transparent !important;
    border: none !important;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--wcpa-pro-text-dark) !important;
    cursor: pointer;
    font-family: inherit;
    gap: 16px;
    box-shadow: none !important;
}

.wcpa-pro-faq-question:hover {
    color: var(--wcpa-pro-primary) !important;
}

.wcpa-pro-faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--wcpa-pro-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease, background-color 0.2s ease, color 0.2s ease;
}

.wcpa-pro-faq-item.is-open .wcpa-pro-faq-icon {
    transform: rotate(180deg);
    background: var(--wcpa-pro-primary-light);
    color: var(--wcpa-pro-primary);
}

.wcpa-pro-faq-answer {
    padding: 0 22px 20px;
}

.wcpa-pro-faq-answer p {
    font-size: 0.95rem;
    color: var(--wcpa-pro-text-body);
    line-height: 1.65;
    margin: 0;
}