/* ==========================================================================
   CARD COMPONENTS - DANIEL WOŹNIAK
   ========================================================================== */

/* Section titles */
.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-primary-light);
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pillars section */
.pillars-section {
    padding: 5rem 0;
    background: linear-gradient(135deg,
        rgba(10, 25, 47, 0.98) 0%,
        rgba(26, 54, 93, 0.95) 50%,
        rgba(10, 25, 47, 0.98) 100%
    );
    position: relative;
    overflow: hidden;
}

/* Pillars grid layout */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1400px;
}

/* Base card styles */
.card {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

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

.card-header {
    padding: var(--space-lg);
    border-bottom: 1px solid var(--card-border);
}

.card-body {
    padding: var(--space-lg);
}

.card-footer {
    padding: var(--space-lg);
    border-top: 1px solid var(--card-border);
    background: rgba(0, 0, 0, 0.02);
}

/* Pillar cards - 3D flip effect */
.pillar-card {
    background: transparent;
    perspective: 1000px;
    min-height: 400px;
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-lg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pillar-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.pillar-card:hover .pillar-card-inner {
    transform: rotateY(180deg);
}

.pillar-card-front,
.pillar-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.pillar-card-front {
    padding-top: 2.5rem;
}

.pillar-card-back {
    padding-top: 1.5rem;
    transform: rotateY(180deg);
    background: var(--primary-dark);
    color: var(--white);
}

.pillar-number {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    color: var(--accent-blue);
    margin-bottom: var(--space-md);
    font-family: var(--font-family-mono);
}

.pillar-title {
    font-size: clamp(1.1rem, 2.8vw, 1.3rem);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-md);
    line-height: var(--line-height-tight);
    color: var(--text-primary-light);
    text-align: center;
    min-height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-desc {
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    line-height: var(--line-height-relaxed);
    color: var(--text-light);
    text-align: center;
    margin-top: auto;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-card-back .pillar-desc {
    color: var(--text-light);
}

/* Pillar card images - Perfect Fit */
.pillar-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--border-radius-md);
    margin-top: var(--space-sm);
    border: 2px solid rgba(0, 122, 204, 0.3);
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pillar-card:hover .pillar-image {
    border-color: rgba(0, 122, 204, 0.6);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 122, 204, 0.3);
}

/* Pillar cards orange accents and pulsing */
.pillar-card-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(0, 122, 204, 0.8) 0%, rgba(247, 147, 30, 0.8) 100%);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    animation: pillarPulse 3s ease-in-out infinite;
}

.pillar-card-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(247, 147, 30, 0.8) 0%, rgba(0, 122, 204, 0.8) 100%);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    animation: pillarPulse 3s ease-in-out infinite;
}

.pillar-card:hover .pillar-card-front::before,
.pillar-card:hover .pillar-card-back::before {
    height: 4px;
    box-shadow: 0 0 15px rgba(247, 147, 30, 0.4);
}

@keyframes pillarPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.02);
    }
}

/* Add subtle orange glow to pillar cards */
.pillar-card {
    border: 1px solid rgba(247, 147, 30, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 8px rgba(247, 147, 30, 0.05);
    transition: all var(--transition-normal);
}

.pillar-card:hover {
    border-color: rgba(247, 147, 30, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(247, 147, 30, 0.15);
}

/* Pillar questions - engaging and confronting */
.pillar-question {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-sm);
    line-height: var(--line-height-tight);
    color: var(--text-primary-light);
    font-style: italic;
    text-align: center;
}

/* Insight cards */
.insight-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.insight-card:hover {
    border-color: rgba(0, 122, 204, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 122, 204, 0.2);
}

.insight-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    display: block;
}

.insight-title {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-md);
    color: var(--text-primary-light);
}

.insight-desc {
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: var(--line-height-relaxed);
    color: var(--text-light);
}

/* CEO Problems cards */
.insight-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 6px solid var(--accent-blue);
    position: relative;
    /* STAGGERED REVEAL ANIMATION */
    opacity: 0;
    transform: translateY(30px);
    animation: staggeredReveal 0.8s ease-out forwards;
}

/* Staggered delays for each card */
.insight-item:nth-child(1) { animation-delay: 0.1s; }
.insight-item:nth-child(2) { animation-delay: 0.2s; }
.insight-item:nth-child(3) { animation-delay: 0.3s; }
.insight-item:nth-child(4) { animation-delay: 0.4s; }
.insight-item:nth-child(5) { animation-delay: 0.5s; }
.insight-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes staggeredReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* MAGNETIC MOUSE FOLLOW EFFECT */
.insight-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: var(--border-radius-lg);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.insight-item:hover::before {
    opacity: 1;
}

.insight-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 122, 204, 0.2);
    border-left-color: var(--accent-gold);
}

.insight-header {
    margin-bottom: var(--space-lg);
}

.insight-tag {
    display: inline-block;
    background: var(--accent-blue);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.insight-quote {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.insight-quote::before {
    content: '"';
    color: var(--accent-blue);
    font-size: 1.5em;
    margin-right: 0.25em;
}

.insight-quote::after {
    content: '"';
    color: var(--accent-blue);
    font-size: 1.5em;
    margin-left: 0.25em;
}

.insight-response h4 {
    color: var(--primary-dark);
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    margin-bottom: var(--space-sm);
}

.insight-response p {
    color: var(--text-muted);
    line-height: var(--line-height-relaxed);
}

.insight-response strong {
    color: var(--accent-blue);
    font-weight: var(--font-weight-semibold);
}

/* VIP BLACK CARD - CEO EXCLUSIVE */
.vip-black-card {
    background: linear-gradient(135deg, #000000 0%, #1a1a2e 100%);
    border: 1px solid #333;
    border-radius: var(--border-radius-xl);
    min-height: 280px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    /* PREMIUM GLOW EFFECT */
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
    animation: premiumGlow 3s ease-in-out infinite alternate;
}

@keyframes premiumGlow {
    0% {
        box-shadow:
            0 0 30px rgba(212, 175, 55, 0.1),
            0 0 60px rgba(212, 175, 55, 0.05);
    }
    100% {
        box-shadow:
            0 0 50px rgba(212, 175, 55, 0.2),
            0 0 100px rgba(212, 175, 55, 0.1);
    }
}

.vip-black-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37 0%, #ffd700 100%);
    opacity: 0.3;
}

.vip-black-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #d4af37;
    box-shadow:
        0 25px 80px rgba(212, 175, 55, 0.2),
        0 0 50px rgba(212, 175, 55, 0.1);
}

/* FRONT STATE - MINIMALISTYCZNY */
.black-card-front {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 280px;
    opacity: 1;
    transition: opacity 0.6s ease;
}

.vip-black-card:hover .black-card-front {
    opacity: 0;
}

.vip-minimal {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.vip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d4af37;
    opacity: 0.6;
    animation: vipPulse 2s ease-in-out infinite;
}

.vip-dot:nth-child(2) {
    animation-delay: 0.3s;
}

.vip-dot:nth-child(3) {
    animation-delay: 0.6s;
}

.mystery-text {
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: center;
}

/* REVEAL STATE - JOBS + VIGNELLI APPROACH */
.black-card-reveal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.vip-black-card:hover .black-card-reveal {
    opacity: 1;
    transform: translateY(0);
}

/* CONTENT SECTION - MATHEMATICAL SPACING */
.vip-content {
    text-align: center;
    margin-bottom: 3rem;
}

.vip-main-question {
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.vip-separator {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37 0%, #ffd700 100%);
    margin: 0 auto 1.5rem auto;
    border-radius: 1px;
}

.vip-challenge-text {
    font-size: 1rem;
    color: #d4af37;
    line-height: 1.5;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.01em;
}

/* CTA SECTION - FULL WIDTH ELEGANCE */
.vip-cta-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.vip-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.25);
}

.vip-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
}

.vip-cta-text {
    font-size: inherit;
    font-weight: inherit;
}

.vip-qualifier {
    font-size: 0.8rem;
    color: #999;
    font-weight: 500;
    margin: 0;
    opacity: 0.8;
    text-align: center;
}

@keyframes vipPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* RESPONSIVE VIP */
@media (max-width: 768px) {
    .vip-black-card {
        min-height: 250px;
    }

    .black-card-front {
        min-height: 250px;
    }

    .vip-question {
        font-size: 1.3rem;
    }

    .mystery-text {
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   LIFESTYLE SECTION - FLIP CARDS BASED ON PILLARS
   ========================================================================== */

.lifestyle-section {
    padding: 5rem 0;
    background: linear-gradient(135deg,
        rgba(10, 25, 47, 0.98) 0%,
        rgba(26, 54, 93, 0.95) 50%,
        rgba(10, 25, 47, 0.98) 100%
    );
}

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

.lifestyle-card {
    background: transparent;
    perspective: 1000px;
    min-height: 350px;
    border-radius: var(--border-radius-lg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.lifestyle-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.lifestyle-card:hover .lifestyle-card-inner {
    transform: rotateY(180deg);
}

.lifestyle-card-front,
.lifestyle-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.lifestyle-card-back {
    transform: rotateY(180deg);
    background: var(--primary-dark);
    color: var(--white);
    justify-content: space-between;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.lifestyle-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    font-family: var(--font-family-mono);
}

.lifestyle-card-title {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.35;
    color: var(--text-primary-light);
    text-align: center;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: manual;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    white-space: normal;
    display: block;
    padding: 0 0.5rem;
}

.lifestyle-icon {
    font-size: 3rem;
    margin-top: auto;
}

.lifestyle-back-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    text-align: center;
}

.lifestyle-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-light);
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lifestyle-detail {
    font-size: 0.8rem;
    color: var(--accent-blue);
    font-weight: 600;
    text-align: center;
    padding: 0.5rem 1rem;
    background: rgba(0, 122, 204, 0.1);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 122, 204, 0.2);
}

/* LIFESTYLE RESPONSIVE */
@media (max-width: 768px) {
    .lifestyle-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .lifestyle-card {
        min-height: 320px;
    }

    .lifestyle-card-title {
        font-size: 0.9rem;
        max-width: 260px;
        line-height: 1.3;
        margin-bottom: 1rem;
        letter-spacing: 0;
        padding: 0 0.25rem;
    }

    .lifestyle-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .lifestyle-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .lifestyle-card {
        min-height: 300px;
    }

    .lifestyle-card-title {
        font-size: 0.85rem;
        max-width: 240px;
        font-weight: 700;
        line-height: 1.25;
        letter-spacing: 0;
        padding: 0 0.5rem;
    }
}

/* ==========================================================================
   GAMECHANGERY SECTION - ACHIEVEMENT CARDS
   ========================================================================== */

.gamechangery-section {
    padding: 5rem 0;
    background: linear-gradient(135deg,
        rgba(26, 54, 93, 0.95) 0%,
        rgba(10, 25, 47, 0.98) 50%,
        rgba(26, 54, 93, 0.95) 100%
    );
}

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

.gamechanger-card {
    background: transparent;
    border: none;
    border-radius: var(--border-radius-lg);
    padding: 0;
    text-align: center;
    position: relative;
    height: 300px;
    perspective: 1000px;
}

.gamechanger-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.gamechanger-card:hover .gamechanger-card-inner {
    transform: rotateY(180deg);
}

.gamechanger-card-front, .gamechanger-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: var(--border-radius-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gamechanger-card-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-gold) 100%);
    opacity: 0.6;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.gamechanger-card-back {
    background: rgba(247, 147, 30, 0.1);
    border: 1px solid rgba(247, 147, 30, 0.3);
    transform: rotateY(180deg);
}

.gamechanger-card-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-blue) 100%);
    opacity: 0.8;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.gamechanger-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.gamechanger-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1rem;
    font-weight: 900;
    color: var(--accent-blue);
    background: rgba(0, 122, 204, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-mono);
}

.gamechanger-title {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    font-weight: 700;
    color: var(--text-primary-light);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gamechanger-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    text-align: left;
    font-weight: 400;
    letter-spacing: 0.02em;
    padding: 0.5rem 0;
    border-left: 3px solid rgba(0, 122, 204, 0.2);
    padding-left: 1rem;
    margin-top: 0.5rem;
    background: rgba(0, 122, 204, 0.02);
    border-radius: 0 8px 8px 0;
}

/* BACK CARD STYLES */
.gamechanger-back-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    text-align: center;
}

.gamechanger-back-desc {
    color: var(--text-primary-light);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    text-align: center;
}

.gamechanger-benefit {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-primary-light);
    font-weight: 500;
    width: 100%;
}

/* ==========================================================================
   CEO CIRCLE CTA SECTION - AI ASSISTANTS + LIVE CHAT
   ========================================================================== */

.ceo-circle-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg,
        rgba(10, 25, 47, 0.98) 0%,
        rgba(0, 122, 204, 0.05) 50%,
        rgba(10, 25, 47, 0.98) 100%
    );
    position: relative;
    overflow: hidden;
}

/* NEWSLETTER-STYLE LAYOUT */
.circle-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

/* LEFT SIDE - VALUE PROPOSITION */
.circle-value {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.circle-header {
    margin-bottom: 2rem;
}

.circle-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--text-primary-light);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.circle-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.circle-timing {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--accent-gold);
    font-weight: 600;
    font-style: italic;
}

.circle-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius-md);
    border-left: 3px solid rgba(0, 122, 204, 0.3);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--accent-gold);
    transform: translateX(4px);
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-text {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: var(--text-light);
    line-height: 1.5;
    font-weight: 500;
}

/* AI ASSISTANTS GRID - CALENDLY INSPIRED */
.ai-assistants-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.assistant-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* SMOOTH ASSISTANT SWITCH ANIMATION */
.assistant-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 122, 204, 0.1), transparent);
    transition: left 0.6s ease;
}

.assistant-card:hover::after,
.assistant-card.active::after {
    left: 100%;
}

.assistant-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 122, 204, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 122, 204, 0.15);
}

.assistant-card.active {
    background: rgba(0, 122, 204, 0.1);
    border-color: rgba(0, 122, 204, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 122, 204, 0.2);
}

.assistant-card.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-blue);
    border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
}

.assistant-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.assistant-info {
    flex: 1;
}

.assistant-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary-light);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.assistant-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 0.8rem;
}

.assistant-tag {
    font-size: 0.75rem;
    color: var(--accent-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(0, 122, 204, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
}

/* RIGHT SIDE - AI LIVE CHAT INTERFACE */
.ai-chat-container {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.ai-chat-interface {
    width: 100%;
    height: 100%;
    min-height: 600px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-xl);
    backdrop-filter: blur(20px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* CHAT HEADER */
.chat-header {
    padding: 1.5rem;
    background: rgba(0, 122, 204, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

/* VOICE WAVE ANIMATION */
.chat-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
        var(--accent-blue) 0%,
        transparent 20%,
        var(--accent-blue) 40%,
        transparent 60%,
        var(--accent-blue) 80%,
        transparent 100%);
    background-size: 200% 100%;
    animation: voiceWave 2s ease-in-out infinite;
}

@keyframes voiceWave {
    0%, 100% { background-position: 200% 0; opacity: 0.3; }
    50% { background-position: -200% 0; opacity: 1; }
}

.active-assistant {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.assistant-avatar {
    width: 48px;
    height: 48px;
    background: rgba(0, 122, 204, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 2px solid rgba(0, 122, 204, 0.3);
}

.assistant-name-active {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary-light);
    margin-bottom: 0.25rem;
}

.assistant-status {
    font-size: 0.8rem;
    color: var(--accent-blue);
    font-weight: 500;
}

.assistant-status::before {
    content: '● ';
    animation: none !important;
    color: #4ade80;
}

/* CHAT MESSAGES */
.chat-messages {
    flex: 1;
    padding: 1.5rem 1.5rem 120px 1.5rem;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 122, 204, 0.3) transparent;
}

.message {
    display: flex;
    gap: 1rem;
    animation: messageSlideIn 0.5s ease-out;
}

/* AUTO-TYPING EFFECT */
@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.typing .message-content::after {
    content: '|';
    color: var(--accent-blue);
    animation: typingCursor 1s infinite;
    margin-left: 2px;
}

@keyframes typingCursor {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}
    margin-bottom: 1.5rem;
}

.ai-message .message-avatar {
    width: 32px;
    height: 32px;
    background: rgba(0, 122, 204, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.message-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.message-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.message-content p:last-child {
    margin-bottom: 0;
}

.message-content ul {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0.5rem 0;
    padding-left: 0;
}

.message-content li {
    margin-bottom: 0.5rem;
}

.message-content strong {
    color: var(--text-primary-light);
    font-weight: 700;
}

/* CHAT INPUT - FIXED AT BOTTOM */
.chat-input-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0 0 var(--border-radius-xl) var(--border-radius-xl);
}

.scroll-to-bottom {
    position: absolute;
    bottom: 140px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 122, 204, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    font-size: 16px;
    z-index: 10;
}

.scroll-to-bottom.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-bottom:hover {
    background: rgba(0, 122, 204, 1);
    transform: scale(1.1);
}

.chat-input-wrapper {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.chat-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    color: var(--text-light);
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.chat-input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 2px rgba(0, 122, 204, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.chat-input::placeholder {
    color: var(--text-secondary);
}

.send-button {
    width: 48px;
    height: 48px;
    background: var(--accent-blue);
    border: none;
    border-radius: var(--border-radius-lg);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.send-button:hover {
    background: #1e40af;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 122, 204, 0.4);
}

.chat-disclaimer {
    margin-top: 0.75rem;
    text-align: center;
}

.chat-disclaimer p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* AI INTERFACE RESPONSIVE */
@media (max-width: 768px) {
    .circle-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ai-assistants-grid {
        margin-top: 1.5rem;
    }

    .assistant-card {
        padding: 1rem;
        gap: 0.75rem;
    }

    .assistant-icon {
        font-size: 2rem;
    }

    .ai-chat-interface {
        height: 500px;
    }

    .chat-header {
        padding: 1rem;
    }

    .assistant-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .chat-messages {
        padding: 1rem;
    }

    .message-content {
        padding: 0.75rem 1rem;
    }

    .chat-input-container {
        padding: 1rem;
    }
}

/* AI INTERFACE LAYOUT - FOR AI CIRCLE SECTION */
.ai-interface-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: stretch;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

/* PARTICLE BACKGROUND EFFECT */
.ai-interface-layout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 122, 204, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 60% 70%, rgba(247, 147, 30, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(0, 122, 204, 0.01) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px, 120px 120px;
    animation: particleFloat 20s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-100px) translateX(50px); }
}

.ai-assistants-side {
    display: flex;
    align-items: stretch;
    height: 100%;
    position: relative;
    z-index: 2;
}

.ai-assistants-side .newsletter-core {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
}

@media (max-width: 768px) {
    .ai-interface-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.concierge-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 122, 204, 0.2);
    border-radius: var(--border-radius-xl);
    padding: 0;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

/* SCARCITY BOX - TIMER REPLACEMENT */
.concierge-scarcity-box {
    background: rgba(247, 147, 30, 0.1);
    border: 2px solid rgba(247, 147, 30, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    margin: 2rem 2rem 0 2rem;
    text-align: center;
    position: relative;
}

.concierge-scarcity-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, #ff6b35 100%);
    animation: scarcityPulse 2s ease-in-out infinite;
}

.scarcity-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary-light);
    margin-bottom: 1rem;
}

.scarcity-counter {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.counter-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-gold);
    font-family: var(--font-family-mono);
    background: rgba(247, 147, 30, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    min-width: 50px;
    display: inline-block;
}

.counter-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

/* CONCIERGE FORM */
.concierge-form {
    padding: 2rem;
}

.concierge-form .form-group {
    margin-bottom: 1.5rem;
}

.concierge-form .form-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary-light);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.concierge-form .form-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 2px rgba(247, 147, 30, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.concierge-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.concierge-submit {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ff6b35 100%);
    color: #000;
    border: none;
    border-radius: var(--border-radius-lg);
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.concierge-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(247, 147, 30, 0.4);
    background: linear-gradient(135deg, #ff6b35 0%, var(--accent-gold) 100%);
}

.concierge-urgency {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 107, 107, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.1);
    border-radius: var(--border-radius-md);
}

.concierge-urgency p {
    font-size: 0.85rem;
    color: #ff6b6b;
    font-weight: 600;
    margin: 0;
    font-style: italic;
}

@keyframes scarcityPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.02);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .lifestyle-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gamechangery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lifestyle-card:hover .lifestyle-card-inner {
        transform: none;
    }

    .lifestyle-card-back {
        position: static;
        transform: none;
        margin-top: 1rem;
        background: var(--primary-light);
    }

    .circle-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 0 1rem;
    }

    .concierge-scarcity-box {
        margin: 1.5rem 1.5rem 0 1.5rem;
    }

    .scarcity-counter {
        gap: 0.5rem;
    }

    .counter-number {
        font-size: 1.4rem;
        padding: 0.3rem;
        min-width: 40px;
    }
}

/* Timeline cards */
.timeline-item {
    position: relative;
    padding-left: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.timeline-badge {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--white);
    border: 3px solid var(--accent-blue);
    box-shadow: var(--shadow-md);
}

.timeline-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.timeline-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.timeline-title {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: var(--font-weight-semibold);
    color: var(--primary-dark);
    margin-bottom: var(--space-md);
}

.timeline-meta {
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: var(--line-height-relaxed);
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.timeline-meta strong {
    color: var(--primary-dark);
    font-weight: var(--font-weight-semibold);
}

.timeline-thanks {
    font-style: italic;
    color: var(--accent-blue);
    font-weight: var(--font-weight-medium);
}

/* Responsive cards */
@media (max-width: 768px) {
    .pillar-card,
    .insight-card,
    .insight-item {
        margin-bottom: var(--space-lg);
    }

    .pillar-card:hover .pillar-card-inner {
        transform: none;
    }

    .pillar-card-back {
        position: static;
        transform: none;
        margin-top: var(--space-md);
        background: var(--primary-light);
    }

    .timeline-item {
        padding-left: var(--space-lg);
    }

    .timeline-badge {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

/* Card utilities */
.card-compact {
    padding: var(--space-md);
}

.card-spacious {
    padding: var(--space-2xl);
}

.card-borderless {
    box-shadow: none;
    border: none;
}

.card-outlined {
    box-shadow: none;
    border: 2px solid var(--card-border);
}

.card-elevated {
    box-shadow: var(--shadow-xl);
}