/* ========== LEISTUNGEN ROUTE ========== */
.services-route {
    background: #ffffff;
}

.route-timeline {
    position: relative;
    padding-left: 3rem;
}

.route-timeline::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #7c3aed, #cbd5e1, #e4e4e7);
}

.route-node {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.node-marker {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.node-dot {
    width: 20px;
    height: 20px;
    background: #7c3aed;
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #7c3aed;
    z-index: 2;
    position: relative;
}

.node-line {
    width: 2px;
    height: 80px;
    background: #cbd5e1;
    margin-top: 8px;
}

.node-line.line-end {
    height: 0;
}

.node-card {
    flex: 1;
    background: #fafafa;
    border: 1px solid #e4e4e7;
    border-radius: 1.5rem;
    padding: 1.8rem;
    transition: all 0.3s ease;
}

.node-card:hover {
    transform: translateX(8px);
    border-color: #7c3aed;
}

.node-icon {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

.node-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #18181b;
}

.node-card p {
    color: #52525b;
    font-size: 0.9rem;
}

/* ========== ABLAUF ========== */
.how-it-works {
    background: #fafafa;
}

.steps-connector {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.step-connector {
    flex: 1;
    position: relative;
    text-align: center;
}

.step-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.step-line {
    position: absolute;
    top: 30px;
    left: 50%;
    width: calc(100% - 60px);
    height: 2px;
    background: linear-gradient(90deg, #7c3aed, #cbd5e1);
    z-index: 1;
}

.line-last {
    background: #cbd5e1;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #18181b;
}

.step-content p {
    color: #52525b;
    font-size: 0.9rem;
}

/* ========== PREISE & PRODUKTE ========== */
.pricing-products {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

/* --- TABS SYSTEM --- */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(228, 228, 231, 0.3);
    padding: 0.4rem;
    border-radius: 2rem;
    max-width: fit-content;
    margin: 0 auto 3.5rem auto;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
}

.pricing-tabs::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

[data-theme="dark"] .pricing-tabs {
    background: rgba(15, 23, 42, 0.4);
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-btn.active {
    background: #ffffff;
    color: #7c3aed;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.12);
}

[data-theme="dark"] .tab-btn.active {
    background: #1e1b4b;
    color: #a78bfa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* --- TAB GRID ACCORDION / TOGGLE --- */
.pricing-tab-grid {
    display: none;
}

.pricing-tab-grid.active {
    display: block;
    animation: tabFadeIn 0.4s ease-out forwards;
}

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

.pricing-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.pricing-products-grid-3,
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 380px));
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.product-card,
.package-card {
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 1.5rem;
    padding: 1.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.product-card:hover,
.package-card:hover {
    transform: translateY(-6px);
    border-color: #cbd5e1;
}

.featured-product,
.package-card.featured {
    border-color: #7c3aed;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.08);
}

.product-card.recommended {
    border: 3px solid #dc2626;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.1), 0 20px 25px -12px rgba(0, 0, 0, 0.1);
    position: relative;
    background: linear-gradient(145deg, #ffffff, #fef2f2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card.recommended::before {
    content: "🎯 EMPFOHLEN FÜR DICH";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #dc2626;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 1rem;
    border-radius: 30px;
    white-space: nowrap;
}

.product-card.recommended:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 30px 40px -15px rgba(220, 38, 38, 0.3);
}

.product-card.recommended:hover .btn-product {
    background: #dc2626;
    color: white;
    transition: all 0.3s ease;
}

.product-badge,
.package-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    margin-bottom: 1rem;
    width: fit-content;
}

.product-badge.starter,
.package-badge.starter {
    background: #dcfce7;
    color: #166534;
}

.product-badge.business,
.package-badge.business {
    background: #dbeafe;
    color: #1e40af;
}

.product-badge.pro,
.package-badge.pro {
    background: #f3e8ff;
    color: #6b21a5;
}

.product-badge.premium,
.package-badge.premium {
    background: #fee2e2;
    color: #991b1b;
}

.product-badge.quickfix {
    background: #e6f7e6;
    color: #2b6e2f;
}

.product-badge.update {
    background: #e0f2fe;
    color: #0c4a6e;
}

.product-badge.upgrade {
    background: #fee2e2;
    color: #b91c1c;
}

.product-badge.basic,
.package-badge.basic {
    background: #e0f2fe;
    color: #075985;
}

.product-badge.standard,
.package-badge.standard {
    background: #dbeafe;
    color: #1e3a8a;
}

.product-badge.premium-care,
.package-badge.premium-care {
    background: #fae8ff;
    color: #86198f;
}

.product-price,
.package-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #18181b;
    margin-bottom: 0.5rem;
}

.product-price span,
.package-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #71717a;
}

.price-prefix {
    font-size: 0.95rem;
    font-weight: 600;
    color: #71717a;
    margin-right: 0.25rem;
    text-transform: lowercase;
}

.product-quote,
.package-quote {
    font-size: 0.75rem;
    font-weight: 500;
    color: #7c3aed;
    font-style: italic;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f4f4f5;
    line-height: 1.4;
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.package-target {
    font-size: 0.7rem;
    color: #a1a1aa;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f4f4f5;
}

.product-features,
.package-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
    padding: 0;
}

.product-features li,
.package-features li {
    font-size: 0.8rem;
    color: #52525b;
    margin-bottom: 0.5rem;
}

.product-goal,
.package-goal {
    font-size: 0.75rem;
    font-weight: 600;
    background: #f4f4f5;
    padding: 0.5rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 1rem;
}

.package-footnote {
    font-size: 0.7rem;
    color: #a1a1aa;
    text-align: center;
    margin-bottom: 1rem;
}

.btn-package {
    display: block;
    text-align: center;
    background: #f4f4f5;
    padding: 0.7rem;
    border-radius: 40px;
    text-decoration: none;
    color: #18181b;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.btn-package:hover {
    background: #e4e4e7;
}

.btn-package-primary {
    background: #7c3aed;
    color: white;
}

.btn-package-primary:hover {
    background: #6d28d9;
}

.subsection-title {
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.subsection-icon {
    font-size: 1.8rem;
    display: inline-block;
    margin-right: 0.75rem;
    vertical-align: middle;
}

.subsection-title h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #18181b;
    display: inline-block;
    vertical-align: middle;
}

.subsection-desc {
    color: #52525b;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.explanation-box {
    display: flex;
    gap: 1.5rem;
    background: linear-gradient(135deg, #f3e8ff 0%, #ffffff 100%);
    border: 1px solid #e4e4e7;
    border-radius: 1.5rem;
    padding: 1.8rem;
    margin-top: 2rem;
}

.explanation-icon {
    font-size: 2.5rem;
}

.explanation-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #18181b;
}

.explanation-content p {
    color: #52525b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.explanation-content strong {
    color: #7c3aed;
}

.back-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.back-button-designed {
    background: #f4f4f5;
    border: 1px solid #e4e4e7;
    border-radius: 60px;
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #18181b;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}.back-button-designed:hover {
    background: #e4e4e7;
    border-color: #7c3aed;
    transform: translateY(-2px);
}

/* ========== GARANTIEN / SICHERHEIT ========== */
.guarantees {
    padding: 7rem 0 !important;
    background-color: var(--bg-secondary) !important;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.guarantee-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.guarantee-box:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.05);
}

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

.guarantee-box h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.guarantee-box p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ========== MOBILE OVERRIDES ========== */
@media (max-width: 768px) {
    /* Premium Mobile Timeline: Spacious horizontal flow with elegant vertical connector line */
    .route-timeline::before {
        display: none !important; /* Hide old absolute background line */
    }
    
    .route-timeline {
        padding-left: 0 !important;
    }
    
    .route-node {
        display: flex !important;
        flex-direction: row !important;
        gap: 0.8rem !important;
        margin-bottom: 1.5rem !important;
        position: relative !important;
        align-items: stretch !important;
        width: 100% !important;
    }
    
    .node-marker {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        flex-shrink: 0 !important;
        align-self: stretch !important;
        width: 20px !important;
    }
    
    .node-dot {
        width: 14px !important;
        height: 14px !important;
        border: 3px solid white !important;
        box-shadow: 0 0 0 2px #7c3aed !important;
        z-index: 2 !important;
    }
    
    .node-line {
        width: 2px !important;
        flex: 1 !important;
        background: linear-gradient(180deg, #7c3aed, #cbd5e1) !important;
        margin-top: 4px !important;
        z-index: 1 !important;
    }
    
    .node-card {
        flex: 1 !important;
        padding: 1.2rem !important;
        text-align: left !important;
        transform: none !important;
        border-radius: 1rem !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
    }
    
    .node-card:hover {
        transform: translateY(-2px) !important;
    }
    
    .node-icon {
        font-size: 1.8rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .node-card h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.35rem !important;
    }
    
    .node-card p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }

    /* Premium Mobile Steps Stepper layout: compact, left-aligned, connected vertical line */
    .steps-connector {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        position: relative !important;
        padding-left: 0.5rem !important;
    }
    
    .step-connector {
        display: flex !important;
        flex-direction: row !important;
        gap: 1.2rem !important;
        align-items: flex-start !important;
        text-align: left !important;
        padding-bottom: 1.4rem !important;
        position: relative !important;
        flex: auto !important;
    }
    
    .step-connector:last-child {
        padding-bottom: 0 !important;
    }
    
    .step-circle {
        width: 38px !important;
        height: 38px !important;
        font-size: 1.1rem !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        z-index: 2 !important;
        box-shadow: 0 0 0 4px #fafafa !important; /* blends perfectly with background #fafafa */
    }
    
    /* Elegant vertical connector line */
    .step-connector::before {
        content: '' !important;
        position: absolute !important;
        left: 19px !important; /* Center of the 38px circle */
        top: 38px !important;
        bottom: 0 !important;
        width: 2px !important;
        background: linear-gradient(180deg, #7c3aed, #cbd5e1) !important;
        z-index: 1 !important;
    }
    
    .step-connector:last-child::before {
        display: none !important;
    }
    
    .step-line {
        display: none !important;
    }
    
    .step-content {
        flex: 1 !important;
        padding-top: 0.2rem !important; /* align with top of the circle */
    }
    
    .step-content h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.35rem !important;
        line-height: 1.3 !important;
    }
    
    .step-content p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }

    /* Fix packages stretching on mobile */
    .pricing-products-grid,
    .pricing-products-grid-3,
    .packages-grid {
        grid-template-columns: 1fr !important;
    }

    /* Fix pricing tabs overflow/buggy alignment on mobile */
    .pricing-tabs {
        justify-content: flex-start !important;
        max-width: 100% !important;
    }

    /* Guarantees: 2 on top, 1 centered below */
    .guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guarantee-box.center-on-mobile {
        grid-column: 1 / -1;
        width: 60%;
        justify-self: center;
    }
}

@media (max-width: 480px) {
    /* For very small phones, the 2-column guarantees might be tight, so let's stack them fully if the screen is super small */
    .guarantees-grid {
        grid-template-columns: 1fr;
    }
    .guarantee-box.center-on-mobile {
        width: 100%;
    }
}

/* ========== SERVICES HERO BANNER ========== */
.services-hero {
    position: relative;
    padding: 8rem 0 8rem;
    overflow: hidden;
    background: radial-gradient(circle at 15% 50%, rgba(124, 58, 237, 0.06), transparent 25%),
                radial-gradient(circle at 85% 30%, rgba(37, 99, 235, 0.06), transparent 25%),
                linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

[data-theme="dark"] .services-hero {
    background: radial-gradient(circle at 15% 50%, rgba(124, 58, 237, 0.1), transparent 25%),
                radial-gradient(circle at 85% 30%, rgba(37, 99, 235, 0.1), transparent 25%),
                linear-gradient(135deg, #090d16 0%, #0f172a 100%);
}

.services-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.services-hero-content {
    position: relative;
    z-index: 1;
}

.services-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .services-main-title {
        font-size: 1.8rem !important;
    }
}

.services-hero-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Statistikkarten Container */
.services-hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-top: 3.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Statistikkarten im Hero */
.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem 2.5rem;
    border-radius: 1.5rem;
    min-width: 180px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

[data-theme="dark"] .stat-item {
    background: rgba(30, 41, 59, 0.6);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #7c3aed;
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
}

/* ========== CONTENT WRAPPERS & SPACING ========== */
.services-wrapper {
    padding: 7rem 0 !important; /* Großzügiges vertikales Padding für maximale Atmungsaktivität */
    border-bottom: 1px solid var(--border-color);
    position: relative;
    background-color: var(--bg-primary);
}

/* Wechselnde Hintergrundfarben für bessere visuelle Trennung */
.services-wrapper:nth-of-type(even) {
    background-color: var(--bg-secondary) !important;
}

/* Spezifischer Fix für die geklebten Blöcke durch .pricing-products Überschreibung */
.services-wrapper.pricing-products {
    padding: 7rem 0 !important;
    background: var(--bg-primary) !important;
}

.services-wrapper.pricing-products:nth-of-type(even) {
    background: var(--bg-secondary) !important;
}

[data-theme="dark"] .services-wrapper.pricing-products {
    background: var(--bg-primary) !important;
}

[data-theme="dark"] .services-wrapper.pricing-products:nth-of-type(even) {
    background: var(--bg-secondary) !important;
}

/* Sektions-Header */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.section-header .section-sub {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== ALTERNATING SHOWCASE (PAKETINFORMATIONEN) ========== */
.showcase-section {
    padding: 6rem 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.showcase-section.alternate {
    background: var(--bg-secondary);
}

.showcase-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.showcase-visual {
    flex: 1;
    min-width: 320px;
}

.showcase-content {
    flex: 1;
    min-width: 320px;
}

.showcase-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.showcase-badge.website {
    background: #f3e8ff;
    color: #7c3aed;
}
[data-theme="dark"] .showcase-badge.website {
    background: rgba(167, 139, 250, 0.15);
    color: #c4b5fd;
}

.showcase-badge.fixes {
    background: #fee2e2;
    color: #ef4444;
}
[data-theme="dark"] .showcase-badge.fixes {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
}

.showcase-badge.care {
    background: #e0f2fe;
    color: #0284c7;
}
[data-theme="dark"] .showcase-badge.care {
    background: rgba(14, 165, 233, 0.15);
    color: #7dd3fc;
}

.showcase-badge.branding {
    background: #dcfce7;
    color: #16a34a;
}
[data-theme="dark"] .showcase-badge.branding {
    background: rgba(22, 163, 74, 0.15);
    color: #86efac;
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.showcase-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 2rem;
    font-style: italic;
}

.showcase-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.showcase-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.showcase-bullet-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

[data-theme="dark"] .showcase-bullet-item {
    color: #cbd5e1;
}

.showcase-bullet-icon {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.showcase-goal-card {
    background: var(--bg-tertiary);
    border-left: 4px solid var(--accent-purple);
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
}

.showcase-goal-card.fixes {
    border-left-color: #ef4444;
}

.showcase-goal-card.care {
    border-left-color: #0284c7;
}

.showcase-goal-card.branding {
    border-left-color: #16a34a;
}

.showcase-goal-title {
    display: block;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.showcase-goal-text {
    color: var(--text-secondary);
}

.showcase-visual-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
}

.showcase-badge-overlay {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--card-bg);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid var(--border-color);
}

.showcase-badge-dot {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
}

.showcase-badge-text {
    font-weight: 700;
    color: var(--text-primary);
}

/* Alternate flex direction for alternating layouts */
.showcase-section:nth-of-type(even) .showcase-container {
    flex-direction: row-reverse;
}

@media (max-width: 900px) {
    .showcase-container {
        gap: 2rem;
    }
    .showcase-section:nth-of-type(even) .showcase-container {
        flex-direction: column;
    }
    .showcase-bullets {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
}

