/* ==========================================================================
   CEO INSIGHTS LANDING PAGE - MAIN STYLES
   ========================================================================== */

/* BODY & PAGE SETUP */
.ceo-insights-page {
    background: linear-gradient(135deg,
        rgba(10, 25, 47, 0.98) 0%,
        rgba(26, 32, 44, 0.95) 50%,
        rgba(10, 25, 47, 0.98) 100%
    );
    min-height: 100vh;
    overflow-x: hidden;
}

.ceo-insights-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%,
        rgba(0, 122, 204, 0.08) 0%,
        transparent 50%
    ),
    radial-gradient(ellipse at 70% 80%,
        rgba(0, 122, 204, 0.05) 0%,
        transparent 50%
    );
    pointer-events: none;
    z-index: -1;
}

/* SIMPLE NAVIGATION */
.simple-nav {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.back-to-home {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.back-to-home:hover {
    color: var(--accent-blue);
    transform: translateX(-3px);
}

/* SIMPLE AUTHOR SECTION */
.simple-author {
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.author-simple-layout {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.author-image-round {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-blue);
}

.author-info-simple {
    flex: 1;
}

.author-name-simple {
    color: var(--text-primary-light);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.author-quote-short {
    color: var(--accent-blue);
    font-style: italic;
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .author-simple-layout {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .author-image-round {
        width: 100px;
        height: 100px;
    }
}

/* MAIN LANDING SECTION */
.ceo-newsletter-landing {
    padding: 2rem 0 4rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* MAIN LAYOUT */
.newsletter-landing-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1024px) {
    .newsletter-landing-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 800px;
    }

    /* Reorder on tablet */
    .newsletter-signup-enhanced {
        order: -1;
    }
}

@media (max-width: 768px) {
    .newsletter-landing-layout {
        gap: 2rem;
    }

    .ceo-newsletter-landing {
        padding: 1rem 0 3rem;
    }

    /* Mobile optimizations */
    .newsletter-main-title {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }

    .focus-tag {
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
    }

    .benefit-section {
        padding: 1.5rem;
    }

    .benefit-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .benefit-section {
        padding: 1rem;
    }

    .newsletter-focus-areas {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .social-proof-section {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* BENEFITS HEADER */
.benefits-header {
    margin-bottom: 3rem;
    text-align: center;
}

@media (min-width: 1025px) {
    .benefits-header {
        text-align: left;
    }
}

.newsletter-main-title {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1;
    letter-spacing: -0.02em;
}

.newsletter-main-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.newsletter-focus-areas {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: center;
}

@media (min-width: 1025px) {
    .newsletter-focus-areas {
        justify-content: flex-start;
    }
}

.focus-tag {
    background: linear-gradient(135deg,
        rgba(0, 122, 204, 0.2) 0%,
        rgba(0, 122, 204, 0.1) 100%
    );
    border: 1px solid rgba(0, 122, 204, 0.3);
    color: var(--accent-blue-light);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.newsletter-timing {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-style: italic;
}

/* SOCIAL PROOF SECTION */
.social-proof-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(20px);
}

.proof-stats {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-blue);
    line-height: 1;
}

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

.proof-testimonial {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.proof-testimonial p {
    color: var(--text-primary-light);
    font-style: italic;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.testimonial-author {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* BENEFITS GRID */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* BENEFIT SECTIONS */
.benefit-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        var(--accent-blue) 0%,
        var(--accent-blue-light) 100%
    );
    opacity: 0.7;
}

.benefit-section:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 122, 204, 0.2);
    box-shadow: 0 8px 25px rgba(0, 122, 204, 0.1);
}

.benefit-section.business::before {
    background: linear-gradient(90deg, #007acc 0%, #4299e1 100%);
}

.benefit-section.ai::before {
    background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
}

.benefit-section.parenting::before {
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
}

.benefit-section .benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

.benefit-problem {
    color: #ef4444;
    font-style: italic;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.benefit-solution {
    color: var(--accent-blue-light);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.benefit-specifics {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* NEWSLETTER PREVIEW */
.newsletter-preview {
    background: linear-gradient(135deg,
        rgba(0, 122, 204, 0.08) 0%,
        rgba(0, 122, 204, 0.03) 100%
    );
    border: 1px solid rgba(0, 122, 204, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.preview-title {
    color: var(--accent-blue-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.preview-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.preview-item {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.preview-item strong {
    color: var(--accent-blue);
}

/* MINIMAL FOOTER */
.minimal-footer {
    background: rgba(10, 25, 47, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-blue);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        gap: 1rem;
    }
}

/* ==========================================================================
   NEW ENHANCED FEATURES - 2025 OPTIMIZATION
   ========================================================================== */

/* TIME GUARANTEE */
.time-guarantee {
    margin: 1.5rem 0;
    text-align: center;
}

@media (min-width: 1025px) {
    .time-guarantee {
        text-align: left;
    }
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    margin-bottom: 1rem;
}

.clock-icon {
    font-size: 1.5rem;
}

.guarantee-text strong {
    font-size: 1.1rem;
    font-weight: 700;
}

.guarantee-text p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.95;
}

/* AI DEMO SHOWCASE */
.ai-demo-showcase {
    background: linear-gradient(135deg,
        rgba(0, 122, 204, 0.1) 0%,
        rgba(16, 185, 129, 0.05) 100%
    );
    border: 2px solid rgba(0, 122, 204, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(15px);
}

.ai-demo-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.ai-demo-subtitle {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.ai-problem-selector p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.problem-cards-mini {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.problem-card-mini {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.problem-card-mini:hover {
    background: rgba(0, 122, 204, 0.1);
    border-color: var(--accent-blue);
    transform: translateX(5px);
}

.problem-card-mini.selected {
    background: rgba(0, 122, 204, 0.2);
    border-color: var(--accent-blue);
    box-shadow: 0 4px 15px rgba(0, 122, 204, 0.2);
}

.problem-icon-mini {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.problem-card-mini span:last-child {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* AI RESPONSE PREVIEW */
.ai-response-preview {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-thinking-mini {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ai-avatar-mini {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

.ai-text {
    color: var(--text-secondary);
    font-style: italic;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.ai-quick-response {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.quick-action {
    background: linear-gradient(135deg,
        rgba(16, 185, 129, 0.1) 0%,
        rgba(16, 185, 129, 0.05) 100%
    );
    border-left: 3px solid #10b981;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.quick-action strong {
    color: #10b981;
}

.quick-action p {
    color: var(--text-secondary);
    margin: 0.5rem 0 0;
    line-height: 1.5;
}

.demo-unlock {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 122, 204, 0.05);
    border-radius: 8px;
    border: 1px dashed rgba(0, 122, 204, 0.3);
}

.demo-unlock p {
    color: var(--accent-blue);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

/* SCARCITY STACK */
.scarcity-stack {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
}

.scarcity-item {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.scarcity-item:last-child {
    margin-bottom: 0;
}

.scarcity-item strong {
    color: #ef4444;
}

.spots-left,
.week-signups {
    color: #ef4444;
    font-weight: 700;
}

.urgency-note {
    margin-top: 1rem;
    padding: 0.8rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-align: center;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* PREMIUM TIER OFFER */
.premium-tier-offer {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg,
        rgba(139, 92, 246, 0.1) 0%,
        rgba(139, 92, 246, 0.05) 100%
    );
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.premium-tier-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6 0%, #a78bfa 100%);
}

.premium-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.premium-header h4 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.premium-price {
    color: #8b5cf6;
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0;
}

.premium-benefits {
    margin-bottom: 1.5rem;
}

.premium-benefit {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.cta-premium {
    width: 100%;
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.cta-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.premium-scarcity {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.premium-spots {
    color: #ef4444;
    font-weight: 700;
}

/* MOBILE RESPONSIVENESS FOR NEW FEATURES */
@media (max-width: 768px) {
    .ai-demo-showcase {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .ai-demo-title {
        font-size: 1.3rem;
    }

    .guarantee-badge {
        padding: 0.6rem 1.2rem;
        gap: 0.6rem;
    }

    .guarantee-text strong {
        font-size: 1rem;
    }

    .premium-tier-offer {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }

    .premium-header h4 {
        font-size: 1.2rem;
    }

    .premium-price {
        font-size: 1.5rem;
    }

    .problem-card-mini {
        padding: 0.8rem;
    }

    .scarcity-stack {
        padding: 0.8rem;
    }
}

/* ==========================================================================
   SIMPLIFIED LAYOUT - NEW STRUCTURE 2025
   ========================================================================== */

/* VALUE PROPOSITION SINGLE */
.value-proposition-single {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
}

.value-header h3 {
    color: var(--accent-blue-light);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

@media (min-width: 1025px) {
    .value-header h3 {
        text-align: left;
    }
}

.value-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(0, 122, 204, 0.05);
    transform: translateX(5px);
}

.value-bullet {
    color: var(--accent-blue);
    font-size: 1.2rem;
    font-weight: 700;
    min-width: 20px;
    margin-top: 0.2rem;
}

.value-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

.value-text strong {
    color: var(--text-primary-light);
    font-weight: 600;
}

/* AI DEMO SECTION FULLWIDTH */
.ai-demo-section-fullwidth {
    background: linear-gradient(135deg, #0a192f 0%, #1e3a8a 100%);
    padding: 4rem 0;
    margin: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-demo-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ai-demo-section-fullwidth .ai-demo-title {
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.ai-demo-section-fullwidth .ai-demo-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    font-style: italic;
}

.ai-demo-interactive {
    max-width: 1200px;
    margin: 0 auto;
}

.ai-problem-selector h3 {
    color: var(--text-primary-light);
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.problem-cards-fullwidth {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.problem-card-fullwidth {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.problem-card-fullwidth:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    background: rgba(0, 122, 204, 0.1);
    box-shadow: 0 8px 32px rgba(0, 122, 204, 0.2);
}

.problem-card-fullwidth.selected {
    border-color: var(--accent-blue);
    background: rgba(0, 122, 204, 0.2);
    box-shadow: 0 8px 32px rgba(0, 122, 204, 0.3);
}

.problem-card-fullwidth .problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.problem-card-fullwidth h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.problem-card-fullwidth p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-style: italic;
    margin: 0;
}

/* AI RESPONSE SECTION */
.ai-response-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
}

.ai-thinking {
    text-align: center;
    padding: 2rem;
}

.ai-avatar {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.ai-thinking-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-style: italic;
}

.ai-response .response-header h4 {
    color: var(--accent-blue-light);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.response-content {
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid #10b981;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.response-footer {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 122, 204, 0.05);
    border-radius: 8px;
    border: 1px dashed rgba(0, 122, 204, 0.3);
}

.response-footer p {
    color: var(--accent-blue);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

/* AUTHOR SECTION */
.author-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.author-photo-fullbody {
    text-align: center;
}

.author-image-fullbody {
    width: 350px;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    border: 4px solid var(--accent-blue);
    box-shadow: 0 12px 48px rgba(0, 122, 204, 0.3);
    transition: all 0.3s ease;
}

.author-image-fullbody:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 122, 204, 0.4);
}

.author-name {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.author-subtitle {
    color: var(--accent-blue-light);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.author-achievements {
    margin-bottom: 2.5rem;
    position: relative;
}

.author-achievements::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 122, 204, 0.3), transparent);
}

.achievement {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, rgba(0, 122, 204, 0.08), rgba(16, 185, 129, 0.04));
    border: 1px solid rgba(0, 122, 204, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInAchievement 0.6s ease forwards;
}

.achievement:nth-child(1) { animation-delay: 0.1s; }
.achievement:nth-child(2) { animation-delay: 0.2s; }
.achievement:nth-child(3) { animation-delay: 0.3s; }
.achievement:nth-child(4) { animation-delay: 0.4s; }
.achievement:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInAchievement {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.achievement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-blue), #10b981);
    border-radius: 3px 0 0 3px;
}

.achievement:hover {
    background: linear-gradient(135deg, rgba(0, 122, 204, 0.12), rgba(16, 185, 129, 0.06));
    border-color: rgba(0, 122, 204, 0.25);
    transform: translateX(8px);
    box-shadow: 0 5px 20px rgba(0, 122, 204, 0.15);
}

.achievement-icon {
    font-size: 1.8rem;
    min-width: 35px;
    line-height: 1;
    margin-top: 2px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.achievement-text {
    color: var(--text-primary-light);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.5;
    flex: 1;
}

.author-quote {
    background: linear-gradient(135deg, rgba(0, 122, 204, 0.12), rgba(16, 185, 129, 0.06));
    border: 1px solid rgba(0, 122, 204, 0.25);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 122, 204, 0.1);
    margin-top: 1rem;
}

.author-quote::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(0, 122, 204, 0.3), rgba(16, 185, 129, 0.2));
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.author-quote:hover::after {
    opacity: 1;
}

.author-quote::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 25px;
    font-size: 5rem;
    color: var(--accent-blue);
    opacity: 0.4;
    font-family: Georgia, serif;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 122, 204, 0.3);
}

.author-quote p {
    color: var(--text-primary-light);
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
    padding-left: 2rem;
}

.author-quote em {
    color: var(--accent-blue-light);
    font-weight: 600;
}

/* MOBILE RESPONSIVE - AUTHOR SECTION */
@media (max-width: 768px) {
    .author-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .author-image-fullbody {
        width: 280px;
        height: auto;
    }

    .author-name {
        font-size: 2rem;
    }

    .author-subtitle {
        font-size: 1.1rem;
    }

    .achievement {
        justify-content: center;
        text-align: center;
    }

    .author-quote::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .author-quote p {
        padding-left: 0;
        text-align: center;
    }

    .ai-demo-section-fullwidth {
        padding: 3rem 0;
        margin: 2rem 0;
    }

    .problem-cards-fullwidth {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .problem-card-fullwidth {
        padding: 1.5rem;
    }

    .ai-response-section {
        padding: 1.5rem;
    }
}

/* =================================================================
   FORM VISIBILITY IMPROVEMENTS - ENHANCED READABILITY
   ================================================================= */

/* FORM LABELS - Make them bright white and more visible */
.form-group label {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    margin-bottom: 0.5rem !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* GDPR CHECKBOX TEXT - Improve readability */
.gdpr-label .checkbox-text {
    color: #e2e8f0 !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
}

.gdpr-label .checkbox-text a {
    color: #60a5fa !important;
    text-decoration: underline !important;
}

/* CTA SUBTEXT - "Zero spamu" text under button */
.cta-subtext {
    color: #94a3b8 !important;
    font-size: 0.85rem !important;
    text-align: center !important;
    margin-top: 0.75rem !important;
    line-height: 1.4 !important;
    font-weight: 500 !important;
}

/* RISK REVERSAL - Guarantee section */
.risk-reversal {
    background: rgba(16, 185, 129, 0.1) !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    border-radius: 8px !important;
    padding: 1rem !important;
    margin-top: 1.5rem !important;
}

.risk-reversal p {
    color: #f0f9ff !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
    text-align: center !important;
    line-height: 1.4 !important;
    font-weight: 500 !important;
}

/* NEWSLETTER LAYOUT FIX - BALANCED AFTER TIMER REMOVAL */
.newsletter-layout {
    display: grid !important;
    grid-template-columns: 1.2fr 1fr !important;
    gap: 3rem !important;
    align-items: stretch !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* Ensure both columns have equal height */
.newsletter-value,
.newsletter-signup {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

/* FORMULARZ - Natural spacing after timer removal */
.newsletter-signup .signup-card {
    font-size: 1.05em;
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* GEOMETRIC DIVIDER - Removed old optimization that conflicts with main page style */

/* FOOTER SPACING OPTIMIZATION */
.footer {
    padding: 2rem 0 1.5rem !important;
}

/* Mobile responsive - FORCE STACK */
@media (max-width: 768px) {
    .newsletter-layout,
    body .newsletter-layout,
    html body .container .newsletter-layout {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        display: grid !important;
    }

    .newsletter-value,
    .newsletter-signup {
        height: auto !important;
        width: 100% !important;
    }

    .newsletter-signup .signup-card {
        width: 100% !important;
        padding: 2rem !important;
        min-height: auto !important;
    }
}

/* Tablet responsive - 50-50 split */
@media (max-width: 1024px) and (min-width: 769px) {
    .newsletter-layout {
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem !important;
    }

    .newsletter-signup .signup-card {
        padding: 2.5rem 2rem !important;
    }
}

/* GEOMETRIC DIVIDER REVERT: Restore to match main page exactly */
.geometric-divider {
    height: 60px !important;
    margin: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.geometric-divider::before {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    right: 0 !important;
    height: 2px !important;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 122, 204, 0.3) 25%,
        rgba(0, 122, 204, 0.8) 50%,
        rgba(247, 147, 30, 0.8) 50%,
        rgba(247, 147, 30, 0.3) 75%,
        transparent 100%
    ) !important;
    transform: translateY(-50%) !important;
    animation: unifiedPulse 3s ease-in-out infinite !important;
}

@keyframes unifiedPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translateY(-50%) scaleX(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scaleX(1.05);
    }
}

/* Show original geometric pattern and shapes like main page */
.geometric-pattern {
    display: block !important;
}

.geo-shape,
.geo-triangle,
.geo-circle,
.geo-square {
    display: block !important;
}

/* NEWSLETTER COLORFUL TOP LINES FIX - Fix bundle bug + control width */
.newsletter-value::before {
    content: '';
    position: absolute;
    top: 0 !important;  /* FIX: Bundle has "op: 0" bug */
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f7931e, #007acc);
    z-index: 1;
    border-radius: 16px 16px 0 0;  /* Match container border radius */
}

/* SIGNUP BOX - Only top line, no bottom line */
.newsletter-signup .signup-card::before {
    content: '';
    position: absolute;
    top: 0 !important;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #007acc, #10b981);
    z-index: 1;
    border-radius: 16px 16px 0 0;  /* Match container border radius */
}

/* REMOVE any bottom lines from signup area */
.newsletter-signup::before,
.newsletter-signup::after {
    display: none !important;
}

/* ENSURE NEWSLETTER CONTAINERS HAVE RELATIVE POSITIONING */
.newsletter-value,
.newsletter-signup {
    position: relative !important;
}

/* FIX EMPTY SPACE AT BOTTOM - Page height and layout adjustments */
.ceo-insights-page {
    min-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
}

.ceo-newsletter {
    flex: 1 !important;
}

/* OLD GEOMETRIC DIVIDER DEFINITION REMOVED - Using main page style now */

/* FOOTER SPACING FIX */
.footer {
    margin-top: auto !important;
    padding: 2rem 0 1rem !important;
}

/* REMOVE ANY EXTRA BOTTOM MARGIN/PADDING */
body.ceo-insights-page::after {
    content: none !important;
}

.container:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}