/* ============================================
   PRODUCT PAGES STYLES
   Styles for product-specific pages (The Core, The Shield, The Gun)

   Contains:
   - Shared component styles (content wrappers, positioning)
   - Hero sections with product-specific themes
   - Product-specific color schemes and glows
   - Background images and overlays
   - Custom animations (pulse-glow)
   - Product feature sections
   - CTA buttons and components

   ORGANIZATION:
   1. Shared components (at top)
   2. Hero sections (product-specific)
   3. Product-specific features and styles
   ============================================ */

/* ==============================================
   SHARED COMPONENT STYLES
   ============================================== */

.content-wrapper {
    position: relative;
    z-index: 2;
}

.content-relative {
    position: relative;
    z-index: 2;
}

/* ==============================================
   HERO SECTIONS (PRODUCT PAGES)
   ============================================== */

/* The Core - Green Theme */
.hero-block .primary-text {
    color: var(--primary-color);
}

.hero-block .primary-bg {
    background-color: var(--primary-color);
}

.hero-block .primary-bg:hover {
    background-color: var(--primary-hover);
}

.hero-block .custom-glow {
    box-shadow: 0 0 20px var(--glow-color), 0 0 40px var(--glow-color);
    animation: pulse-glow 3s infinite ease-in-out;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px var(--glow-color), 0 0 40px var(--glow-color);
    }
    50% {
        box-shadow: 0 0 40px var(--glow-color), 0 0 80px var(--glow-color);
    }
}

/* Green Section Background */
.green-section {
    position: relative;
    background-image: url('https://development.daily-marketing.de/wp-content/uploads/2025/10/gChatGPT-Image-8_imgupscaler.ai_General_4K-scaled-1.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.green-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 700px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 20%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0.95) 80%, rgba(0,0,0,1) 100%);
    pointer-events: none;
    z-index: 0;
}

/* Shield Section Background */
.shield-section {
    position: relative;
    background-image: url('https://development.daily-marketing.de/wp-content/uploads/2025/10/pChatGPT-Image-8_imgupscaler.ai_General_4Ksdsd-2-scaled-1.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

.shield-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 700px;
    background: linear-gradient(to top, transparent 0%, rgba(0,0,0,0.5) 20%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0.95) 80%, rgba(0,0,0,1) 100%);
    pointer-events: none;
    z-index: 1;
}

.shield-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 500px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 30%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0.9) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Gun Section Background */
.component-section {
    position: relative;
    min-height: 100vh;
    background-color: #000;
    background-image: url('https://dev.wirsindaerzte.com/wp-content/uploads/2025/10/ChatGPT-Image-https://development.daily-marketing.de/wp-content/uploads/2025/10/ChatGPT-Image-8_imgupscaler.ai_General_4K-1-scaled-1.jpg.ai_General_4K-scaled.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Removed gradient overlays - gradients now applied to individual boxes only */
/* .component-section::before - REMOVED */
/* .component-section::after - REMOVED */

/* Service Page Specific Backgrounds */
body[data-page="gun"] .component-section {
    background-image: url('https://development.daily-marketing.de/wp-content/uploads/2025/10/ChatGPT-Image-8_imgupscaler.ai_General_4K-1-scaled-1.jpg');
}

body[data-page="shield"] .component-section {
    background-image: url('https://development.daily-marketing.de/wp-content/uploads/2025/10/pChatGPT-Image-8_imgupscaler.ai_General_4Ksdsd-2-scaled-1.jpg');
}

body[data-page="core"] .component-section {
    background-image: url('https://development.daily-marketing.de/wp-content/uploads/2025/10/gChatGPT-Image-8_imgupscaler.ai_General_4K-scaled-1.jpg');
}

/* Service Pages - Ensure content is above gradient overlays */
body[data-page="gun"] .component-section > *,
body[data-page="shield"] .component-section > *,
body[data-page="core"] .component-section > * {
    position: relative;
    z-index: 10;
}

/* ==============================================
   PRODUCT-SPECIFIC BUTTONS & ANIMATIONS
   ============================================== */

/* The Core - Green/Turquoise Button */
.core-cta-button {
    background: #88e8c2 !important;
    border: none !important;
    color: #000000 !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(136, 232, 194, 0.6),
                0 0 60px rgba(136, 232, 194, 0.3) !important;
    animation: luxury-pulse 3s infinite ease-in-out;
    padding: 20px 60px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: var(--service-button-text-large-size);
}

.core-cta-button-small {
    padding: 16px 40px;
    font-size: var(--service-button-text-size);
}

.core-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent);
    transition: left 0.6s ease;
}

.core-cta-button:hover::before {
    left: 100%;
}

.core-cta-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 0 40px rgba(136, 232, 194, 0.8),
                0 0 80px rgba(136, 232, 194, 0.5),
                0 0 120px rgba(136, 232, 194, 0.3) !important;
    background: #9aefd0 !important;
}

/* The Gun - Gold Button */
.gun-cta-button {
    background: #e4b183 !important;
    border: none !important;
    color: #000000 !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(228, 177, 131, 0.6),
                0 0 60px rgba(228, 177, 131, 0.3) !important;
    animation: luxury-pulse-gold 3s infinite ease-in-out;
    padding: 20px 60px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: var(--service-button-text-large-size);
}

.gun-cta-button-large {
    padding: 1.5rem 4rem;
}

.gun-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent);
    transition: left 0.6s ease;
}

.gun-cta-button:hover::before {
    left: 100%;
}

.gun-cta-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 0 40px rgba(228, 177, 131, 0.8),
                0 0 80px rgba(228, 177, 131, 0.5),
                0 0 120px rgba(228, 177, 131, 0.3) !important;
    background: #d4a173 !important;
}

/* The Shield - Lavender Button */
.shield-cta-button {
    background: #d7d3ff !important;
    border: none !important;
    color: #000000 !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(215, 211, 255, 0.6),
                0 0 60px rgba(215, 211, 255, 0.3) !important;
    animation: luxury-pulse-lavender 3s infinite ease-in-out;
    padding: 20px 60px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: var(--service-button-text-large-size);
}

.shield-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent);
    transition: left 0.6s ease;
}

.shield-cta-button:hover::before {
    left: 100%;
}

.shield-cta-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 0 40px rgba(215, 211, 255, 0.8),
                0 0 80px rgba(215, 211, 255, 0.5),
                0 0 120px rgba(215, 211, 255, 0.3) !important;
    background: #c7c3ef !important;
}

/* ==============================================
   CARDS & BOXES - HOVER EFFECTS
   ============================================== */

/* The Core - Green hover effects */
.number-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.1));
    border: 2px solid rgba(34, 197, 94, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #22C55E;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.pillar-card:hover .number-circle {
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.8), 0 0 60px rgba(34, 197, 94, 0.5);
    border-color: rgba(34, 197, 94, 0.8);
}

.benefit-box {
    transition: all 0.3s ease;
}

.benefit-box:hover {
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.6), 0 0 50px rgba(34, 197, 94, 0.3);
    border-color: rgba(34, 197, 94, 0.6);
}

.nested-box {
    transition: all 0.3s ease;
}

.nested-box:hover {
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.6), 0 0 50px rgba(34, 197, 94, 0.3);
    border-color: rgba(34, 197, 94, 0.6);
}

/* Timeline effects */
.timeline-item {
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-box {
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.6), 0 0 50px rgba(34, 197, 94, 0.3) !important;
    border-color: rgba(34, 197, 94, 0.6) !important;
}

.timeline-item:hover .timeline-dot {
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.8), 0 0 60px rgba(34, 197, 94, 0.5) !important;
    border-color: rgba(34, 197, 94, 0.8) !important;
}

.timeline-item:hover .connector-line {
    opacity: 1;
}

.timeline-dot {
    transition: all 0.3s ease;
    transform-origin: center center;
}

.timeline-box {
    transition: all 0.3s ease;
}

.connector-line {
    opacity: 0;
    transition: opacity 0.3s ease;
    height: 2px;
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.8), rgba(34, 197, 94, 0.3));
    position: absolute;
    top: 50%;
    pointer-events: none;
}

.connector-line-left {
    right: calc(50% + 8px);
    left: calc(41.666% + 12px);
}

.connector-line-right {
    left: calc(50% + 8px);
    right: calc(41.666% + 12px);
}

/* The Gun - Red hover effects */
.testimonial-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.5), 0 0 60px rgba(239, 68, 68, 0.3), inset 0 0 20px rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.6);
}

.stat-number-gun {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.program-feature {
    transition: all 0.3s ease;
}

.program-feature:hover {
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.5), 0 0 60px rgba(239, 68, 68, 0.3), inset 0 0 20px rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.6);
}

.kpi-box {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.kpi-box:hover {
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.5), 0 0 60px rgba(239, 68, 68, 0.3), inset 0 0 20px rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.6);
    transform: translateY(-2px);
}

.stat-box {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-box:hover {
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.5), 0 0 60px rgba(239, 68, 68, 0.3), inset 0 0 20px rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.6);
    transform: translateY(-2px);
}

.pillar-box {
    transition: all 0.3s ease;
}

.pillar-box:hover {
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.5), 0 0 60px rgba(239, 68, 68, 0.3), inset 0 0 20px rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.6);
}

.pillar-icon {
    transition: all 0.3s ease;
}

/* The Shield - Purple hover effects */
.box-in-box {
    transition: all 0.3s ease-in-out;
}

.box-in-box:hover {
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5), 0 0 60px rgba(139, 92, 246, 0.3), inset 0 0 20px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.6);
}

.shield-experience-outer {
    transition: all 0.3s ease-in-out;
}

.shield-experience-outer:hover {
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5), 0 0 60px rgba(139, 92, 246, 0.3), inset 0 0 20px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.6);
}

.shield-glow {
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4), 0 0 60px rgba(139, 92, 246, 0.2);
}

/* Disable hover effects */
.no-hover-glow {
    transition: none !important;
    box-shadow: none !important;
}

.no-hover-glow:hover {
    box-shadow: none !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* ==============================================
   PRODUCT SELECTION CTA SECTION
   ============================================== */

.cta-container {
    width: 100%;
    background-color: #000000;
    padding: 64px 16px;
    font-family: var(--font-family-primary);
}

.cta-wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.header-section {
    text-align: center;
    margin-bottom: 32px;
}

.main-heading {
    font-size: 3.75rem;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.1;
    font-family: var(--font-family-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.divider {
    height: 1px;
    width: 5rem;
    background: linear-gradient(to right, transparent, #ffffff, transparent);
    margin: 2rem auto;
}

.description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 896px;
    margin: 0 auto;
    line-height: 1.75;
    font-family: var(--font-family-primary);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.product-card {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3), transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 48px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5),
                0 0 60px rgba(255, 255, 255, 0.3),
                inset 0 0 20px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

.product-image-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 11px;
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.product-title {
    font-size: 2.25rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: var(--font-family-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-divider {
    height: 2px;
    width: 64px;
    margin-bottom: 20px;
}

.gun-divider {
    background: linear-gradient(to right, #10b981, transparent);
}

.shield-divider {
    background: linear-gradient(to right, #8b5cf6, transparent);
}

.product-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 32px;
    flex-grow: 1;
    font-family: var(--font-family-primary);
}

.product-button {
    width: 100%;
    padding: 20px 24px;
    font-size: 1.125rem;
    border: none;
    border-radius: 11px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background-color: #ffffff;
    color: #000000;
    font-family: var(--font-family-primary);
    position: relative;
    overflow: hidden;
}

.product-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(0, 0, 0, 0.1),
        transparent);
    transition: left 0.6s ease;
}

.product-button:hover::before {
    left: 100%;
}

.product-button:hover {
    background-color: #d1d5db;
    transform: translateY(-2px);
}

.arrow-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.product-button:hover .arrow-icon {
    transform: translateX(8px);
}

/* ==============================================
   FOOTER STYLES
   ============================================== */

.logo-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.logo-container:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

/* ==============================================
   ANIMATIONS
   ============================================== */

@keyframes shield-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* ==============================================
   MISCELLANEOUS
   ============================================== */

/* Removed unused timeline-connector and journey-item classes - not used in any HTML files */

/* Removed .stat-number box styling - display numbers cleanly without glow/border */

.text-shadow-glow {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4),
                0 0 40px rgba(255, 255, 255, 0.2);
}

.icon-circle:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6),
                0 0 60px rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.icon-circle svg {
    width: 50px;
    height: 50px;
    fill: white;
}

.vision-card {
    transition: all 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-5px);
}

.background-section {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Removed duplicate step-indicator and form-step classes - kept consolidated version below */

