/* Corbin Product Page Styles */

:root {
    --color-corbin: #6366F1;
    --color-corbin-dark: #4F46E5;
    --color-corbin-bg: #f8f7ff;
    --color-corbin-text: #1e1b4b;
    --color-corbin-gray: #64748b;
    --color-corbin-border: #e2e8f0;
}

/* Hero Section */
.corbin-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    padding-bottom: 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, var(--color-corbin-bg) 100%);
}

.corbin-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.corbin-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.corbin-hero h1.corbin-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-corbin-text);
    opacity: 1;
    transform: none;
    transition: none;
}

.corbin-hero-visual-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 300px;
}

.corbin-hero-visual-logo img {
    max-width: 100%;
    height: auto;
    max-height: 350px;
}

.corbin-hero .hero-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-corbin-text);
    margin-bottom: 1rem;
    max-width: 580px;
}

.corbin-hero .hero-tagline {
    opacity: 1;
    transform: none;
    max-width: 540px;
}

.corbin-hero .hero-buttons {
    opacity: 1;
    transform: none;
}

.corbin-btn-primary {
    background: var(--color-corbin) !important;
    border-color: var(--color-corbin) !important;
}

.corbin-btn-primary:hover {
    background: var(--color-corbin-dark) !important;
    border-color: var(--color-corbin-dark) !important;
}

/* Hero Visual */
.corbin-hero .hero-visual {
    position: relative;
}

/* Problem Section */
.problem-section {
    padding: 6rem 0;
    background: white;
}

.pain-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pain-point {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--color-corbin-bg);
    border-radius: 12px;
}

.pain-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ef4444;
}

.pain-point h4 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--color-corbin-text);
}

.pain-point p {
    color: var(--color-corbin-gray);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Features Section */
.corbin-features-section {
    padding: 6rem 0;
    background: var(--color-corbin-bg);
}

.corbin-features-section .feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.corbin-features-section .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--color-corbin);
}

.corbin-features-section .feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-corbin) 0%, var(--color-corbin-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
}

.corbin-features-section .feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-corbin-text);
}

.corbin-features-section .feature-card p {
    color: var(--color-corbin-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Process Section */
.corbin-process-section {
    padding: 6rem 0;
    background: white;
}

.corbin-process-section .process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.corbin-process-section .step-number {
    width: 48px;
    height: 48px;
    background: var(--color-corbin-text);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.corbin-process-section .step-content h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-corbin-text);
}

.corbin-process-section .step-content p {
    color: var(--color-corbin-gray);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Differentiators Section */
.corbin-diff-section {
    padding: 6rem 0;
    background: var(--color-corbin-text);
    color: white;
    position: relative;
    overflow: hidden;
}

.corbin-diff-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.corbin-diff-section .section-label {
    color: var(--color-corbin);
}

.corbin-diff-section .section-title {
    color: white;
}

.corbin-diff-section .diff-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.corbin-diff-section .diff-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.corbin-diff-section .diff-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: white;
}

.corbin-diff-section .diff-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Audience Section */
.corbin-audience-section {
    padding: 6rem 0;
    background: white;
}

.corbin-audience-section .audience-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--color-corbin-border);
}

.corbin-audience-section .audience-item:last-child {
    border-bottom: none;
}

.corbin-audience-section .audience-icon {
    width: 48px;
    height: 48px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-corbin);
}

.corbin-audience-section .audience-item h4 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--color-corbin-text);
}

.corbin-audience-section .audience-item p {
    color: var(--color-corbin-gray);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* CTA Section */
.corbin-cta {
    background: white;
    border-radius: 16px;
    padding: 4rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.corbin-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-corbin), var(--color-corbin-dark));
}

.corbin-cta h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-corbin-text);
}

.corbin-cta p {
    font-size: 1.1rem;
    color: var(--color-corbin-gray);
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .corbin-hero {
        padding-top: 100px;
        min-height: auto;
        text-align: center;
    }

    .corbin-hero h1.corbin-hero-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .corbin-hero .hero-tagline {
        margin-left: auto;
        margin-right: auto;
        font-size: 1.05rem;
    }

    .corbin-hero .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .corbin-hero .hero-visual {
        margin-top: 2.5rem;
    }

    .corbin-hero-visual-logo {
        min-height: 200px;
    }

    .corbin-hero-visual-logo img {
        max-height: 250px;
    }

    .problem-section,
    .corbin-features-section,
    .corbin-process-section,
    .corbin-diff-section,
    .corbin-audience-section,
    .cta-section {
        padding: 4rem 0;
    }

    .corbin-cta {
        padding: 2.5rem 1.5rem;
    }

    .corbin-features-section .feature-card {
        padding: 1.5rem;
    }

    .corbin-features-section .feature-card h3 {
        font-size: 1.1rem;
    }

    .corbin-process-section .process-step {
        gap: 1rem;
    }

    .corbin-process-section .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .corbin-hero .abstract-card.overlay {
        right: -10px;
        bottom: -10px;
    }
}

@media (max-width: 480px) {
    .problem-section,
    .corbin-features-section,
    .corbin-process-section,
    .corbin-diff-section,
    .corbin-audience-section,
    .cta-section {
        padding: 3rem 0;
    }

    .corbin-cta {
        padding: 2rem 1.25rem;
    }

    .corbin-cta h2 {
        font-size: 1.25rem;
    }
}
