/* marketing.css - Modern, aesthetic styling for LadderCall Landing Pages */

:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary-color: #10b981;
    --background-color: #f8fafc;
    --text-color: #1e293b;
    --text-muted: #64748b;
    --surface-color: #ffffff;
    --border-color: #e2e8f0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #0f172a;
}

.text-gradient {
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navbar */
.marketing-navbar {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.marketing-navbar .nav-link {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.2s ease;
}

.marketing-navbar .nav-link:hover {
    color: var(--primary-color);
}

.brand-logo {
    height: 40px;
    border-radius: 8px;
}

/* Buttons */
.btn-marketing {
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-marketing {
    background-color: var(--primary-color);
    color: white;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2), 0 2px 4px -1px rgba(37, 99, 235, 0.1);
}

.btn-primary-marketing:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3), 0 4px 6px -2px rgba(37, 99, 235, 0.2);
    color: white;
}

.btn-secondary-marketing {
    background-color: white;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-secondary-marketing:hover {
    background-color: #f1f5f9;
    color: var(--text-color);
}

/* Hero Section */
.hero-section {
    padding: 6rem 0;
    background: radial-gradient(circle at top right, #eff6ff, transparent),
                radial-gradient(circle at bottom left, #f8fafc, transparent);
    text-align: center;
}

/* Features */
.feature-card {
    background: var(--surface-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.bg-primary-light { background-color: #eff6ff; color: #2563eb; }
.bg-success-light { background-color: #ecfdf5; color: #10b981; }
.bg-warning-light { background-color: #fffbeb; color: #f59e0b; }

/* Pricing */
.pricing-card {
    background: var(--surface-color);
    border-radius: 24px;
    padding: 3rem 2rem;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 4px 16px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f172a;
}

.price-currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.price-period {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

/* Footer */
.marketing-footer {
    background-color: white;
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border-color);
}
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}
