/* AI Marketing Lab - Specific Styles */

/* --- Variables & Base --- */
:root {
    --color-bg-light: #FBF7F2;
    --color-text-main: #1A1A1A;
    --color-text-secondary: #4A4A4A;
    --color-text-muted: #666;
    --color-accent: #C94A2A;
    --color-accent-light: rgba(201, 74, 42, 0.1);
    --color-success-bg: #E8F5E9;
    --color-success-text: #166534;
    
    --font-primary: 'Space Grotesk', sans-serif;
    --font-serif: 'Crimson Text', serif;
    --font-mono: 'JetBrains Mono', monospace;
}

/* --- Hero Section --- */
.b2b-hero {
    padding: 160px 0 100px;
    background-color: var(--color-bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
}

/* Subtle background accent for Hero */
.b2b-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 74, 42, 0.03) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-text-main);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

/* --- Agenda Card (Hero Visual) --- */
.agenda-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 32px 64px -12px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.agenda-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 70px -10px rgba(0,0,0,0.1);
}

.agenda-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.agenda-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.agenda-date {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.agenda-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.agenda-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

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

.agenda-time {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    background: #F5F5F5;
    padding: 4px 8px;
    border-radius: 6px;
    white-space: nowrap;
}

.agenda-details h4 {
    margin: 0 0 4px 0;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-text-main);
}

.agenda-details span {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.4;
    display: block;
}

/* --- Buttons & Components --- */
.b2b-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-text-main);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--color-text-main);
    cursor: pointer;
}

.b2b-btn-primary:hover {
    background-color: transparent;
    color: var(--color-text-main);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* --- Feature Grid --- */
.b2b-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.b2b-card {
    background: var(--color-bg-light);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
}

.b2b-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0,0,0,0.1);
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.b2b-icon-box {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.b2b-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--color-text-main);
    line-height: 1.3;
}

.b2b-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.b2b-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.b2b-card li {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    align-items: flex-start;
}

/* --- Pricing --- */
.pricing-card-main {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border: 1px solid #E5E5E5;
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.pricing-card-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.price-tag {
    font-size: 3.5rem;
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-text-main);
    margin: 30px 0;
    letter-spacing: -0.03em;
}

/* --- FAQ Styles --- */
.b2b-faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.b2b-faq-button {
    width: 100%;
    padding: 24px 30px;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.b2b-faq-button:hover {
    background-color: #FAFAFA;
}

.b2b-faq-answer {
    display: none;
    padding: 0 30px 30px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* --- Responsive Adjustments --- */
@media (max-width: 900px) {
    .b2b-hero { 
        padding: 100px 0 60px; 
    }
    
    .hero-grid { 
        grid-template-columns: 1fr; 
        gap: 48px; 
    }
    
    .hero-content { 
        text-align: center; 
        margin: 0 auto; 
    }
    
    .hero-content h1 { 
        font-size: 2.5rem; 
    }
    
    /* Trust indicators center alignment on mobile */
    .hero-content div[style*="flex-wrap: wrap"] {
        justify-content: center;
    }
    
    .agenda-card { 
        max-width: 100%; 
        margin: 0 auto; 
    }
    
    .b2b-grid { 
        grid-template-columns: 1fr; 
        gap: 24px;
    }
    
    .pricing-card-main { 
        padding: 30px; 
    }
    
    .price-tag { 
        font-size: 2.5rem; 
    }
    
    /* Ensure buttons are full width on mobile for better UX */
    .b2b-btn-primary {
        width: 100%;
    }
    
    /* Adjust specific testimonial grid if needed (though it uses b2b-grid which is already 1fr) */
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .agenda-card {
        padding: 24px;
    }
    
    .agenda-item {
        gap: 12px;
    }
    
    .b2b-card {
        padding: 30px 20px;
    }
}

/* --- Countdown Timer --- */
.countdown-wrapper {
    margin-bottom: 32px;
}

.countdown-label {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.marketing-countdown {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 40px;
}

.time-val {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1;
}

.time-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-top: 4px;
    font-weight: 500;
}

.time-sep {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: var(--color-text-muted);
    font-weight: 400;
    margin-top: -14px; /* Align with numbers */
}

.countdown-expired {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--color-accent);
    font-weight: 600;
}

/* Mobile Countdown Adjustment */
@media (max-width: 480px) {
    .marketing-countdown {
        gap: 8px;
        padding: 12px 16px;
        width: 100%;
        justify-content: center;
    }
    
    .time-val {
        font-size: 1.25rem;
    }
    
    .time-sep {
        font-size: 1.25rem;
        margin-top: -12px;
    }
}
