/* Beava Detail Page - Warm Grey & Coffee Theme */

.bv-detail {
    --bv-bg: #faf8f6;
    --bv-bg-warm: #f5f3f0;
    --bv-bg-dark: #2d2926;
    --bv-accent: #6b5b73;
    --bv-accent-light: #f5f3f6;
    --bv-accent-glow: rgba(107, 91, 115, 0.2);
    --bv-text: #2d2926;
    --bv-text-muted: #5c554d;
    --bv-border: #d6d0c8;
    --bv-warm: #a67c52;
}

.bv-detail {
    background: var(--bv-bg);
    color: var(--bv-text);
    font-family: var(--font-sans);
}

/* Hero */
.bv-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #ede7dd 0%, #f5f3f0 50%, #f5f3f6 100%);
}

.bv-hero-bg {
    position: absolute;
    inset: 0;
}

.bv-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(107, 91, 115, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(166, 124, 82, 0.1) 0%, transparent 40%);
    background-size: 100% 100%;
}

.bv-hero {
    flex-direction: row;
    justify-content: center;
    padding: 4rem;
    gap: 3rem;
}

.bv-hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 550px;
    padding: 2rem 0;
}

.bv-hero-image {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 420px;
    max-height: 550px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0,0,0,0.15),
        0 10px 30px rgba(107, 91, 115, 0.15);
    border: 1px solid rgba(0,0,0,0.08);
}

.bv-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

@media (max-width: 900px) {
    .bv-hero {
        flex-direction: column;
        padding: 2rem;
    }
    .bv-hero-content {
        text-align: center;
        max-width: 100%;
    }
    .bv-hero-image {
        width: 100%;
        max-width: 350px;
        max-height: 450px;
    }
}

.bv-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--bv-accent);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.bv-title {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--bv-text);
}

.bv-tagline {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--bv-accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.bv-subtitle {
    font-size: 1.125rem;
    color: var(--bv-text-muted);
    max-width: 550px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.bv-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.bv-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.bv-btn--primary {
    background: var(--bv-accent);
    color: white;
    box-shadow: 0 4px 14px var(--bv-accent-glow);
}

.bv-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--bv-accent-glow);
}

.bv-btn--ghost {
    background: white;
    color: var(--bv-text);
    border: 2px solid var(--bv-border);
}

.bv-btn--ghost:hover {
    border-color: var(--bv-accent);
    color: var(--bv-accent);
}

.bv-btn--large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* Sections */
.bv-section {
    padding: 5rem 2rem;
}

.bv-section--warm {
    background: var(--bv-bg-warm);
}

.bv-section--dark {
    background: var(--bv-bg-dark);
    color: white;
}

.bv-section--dark .bv-section-label {
    color: var(--bv-warm);
}

.bv-section--cta {
    background: linear-gradient(135deg, var(--bv-accent-light) 0%, #fef3c7 100%);
}

.bv-container {
    max-width: 1100px;
    margin: 0 auto;
}

.bv-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.bv-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bv-accent);
    margin-bottom: 0.5rem;
}

.bv-section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
}

/* Contrast Section */
.bv-contrast {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bv-contrast-bad, .bv-contrast-good {
    padding: 2rem;
    border-radius: 16px;
}

.bv-contrast-bad {
    background: #fef2f2;
    border: 2px solid #fecaca;
}

.bv-contrast-bad h3 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.bv-contrast-good {
    background: var(--bv-accent-light);
    border: 2px solid #a7f3d0;
}

.bv-contrast-good h3 {
    color: var(--bv-accent);
    margin-bottom: 1rem;
}

.bv-contrast ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bv-contrast li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--bv-text-muted);
}

.bv-contrast-bad li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc2626;
}

.bv-contrast-good li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bv-accent);
    font-weight: bold;
}

/* Timeline */
.bv-timeline {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.bv-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 30px;
    bottom: 30px;
    width: 3px;
    background: linear-gradient(180deg, var(--bv-accent) 0%, var(--bv-warm) 100%);
    border-radius: 3px;
}

.bv-timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.bv-timeline-dot {
    width: 32px;
    height: 32px;
    background: var(--bv-accent);
    border-radius: 50%;
    flex-shrink: 0;
    border: 4px solid var(--bv-bg-warm);
    box-shadow: 0 0 0 3px var(--bv-accent);
}

.bv-timeline-item:nth-child(2) .bv-timeline-dot { background: #10b981; box-shadow-color: #10b981; }
.bv-timeline-item:nth-child(3) .bv-timeline-dot { background: #f59e0b; box-shadow: 0 0 0 3px #f59e0b; }
.bv-timeline-item:nth-child(4) .bv-timeline-dot { background: #8b5cf6; box-shadow: 0 0 0 3px #8b5cf6; }

.bv-timeline-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.bv-timeline-content p {
    color: var(--bv-text-muted);
    line-height: 1.6;
}

/* Payment Modes */
.bv-modes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.bv-mode {
    background: white;
    border: 2px solid var(--bv-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.bv-mode:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.bv-mode--paid:hover { border-color: #059669; }
.bv-mode--credits:hover { border-color: #f59e0b; }
.bv-mode--trade:hover { border-color: #3b82f6; }
.bv-mode--forward:hover { border-color: #ec4899; }

.bv-mode-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bv-mode h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.bv-mode p {
    font-size: 0.9rem;
    color: var(--bv-text-muted);
    line-height: 1.5;
}

/* Split Section */
.bv-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.bv-split-text .bv-section-title {
    text-align: left;
}

.bv-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.bv-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--bv-text-muted);
}

.bv-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--bv-accent);
    font-weight: bold;
}

/* Circle Diagram */
.bv-circle-diagram {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
}

.bv-circle-ring {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bv-circle-ring--outer {
    inset: 0;
    border: 3px dashed var(--bv-border);
}

.bv-circle-ring--outer span {
    position: absolute;
    top: 10px;
    font-size: 0.75rem;
    color: var(--bv-text-muted);
}

.bv-circle-ring--inner {
    inset: 50px;
    background: var(--bv-accent-light);
    border: 3px solid var(--bv-accent);
}

.bv-circle-ring--inner span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--bv-accent);
}

.bv-circle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--bv-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Trust Grid */
.bv-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.bv-trust-card {
    background: white;
    border: 1px solid var(--bv-border);
    border-radius: 12px;
    padding: 1.5rem;
}

.bv-trust-card h4 {
    color: var(--bv-accent);
    margin-bottom: 0.75rem;
}

.bv-trust-card p {
    font-size: 0.9rem;
    color: var(--bv-text-muted);
    line-height: 1.6;
}

/* Stats */
.bv-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.bv-stat {
    text-align: center;
}

.bv-stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--bv-accent);
    line-height: 1;
}

.bv-stat-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    margin-top: 0.5rem;
    display: block;
}

.bv-tech-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.bv-tech-col h4 {
    color: var(--bv-warm);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.bv-tech-col p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
}

/* Package */
.bv-package {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.bv-package-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--bv-border);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.bv-package-item:hover {
    border-color: var(--bv-accent);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.bv-package-item span {
    font-size: 1.5rem;
}

.bv-package-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.bv-package-item p {
    font-size: 0.875rem;
    color: var(--bv-text-muted);
}

/* CTA Box */
.bv-cta-box {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border: 2px solid var(--bv-accent);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.1);
}

.bv-cta-box h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--bv-accent);
    margin-bottom: 0.5rem;
}

.bv-cta-box p {
    color: var(--bv-text-muted);
    margin-bottom: 2rem;
}

/* Back */
.bv-back {
    padding: 2rem;
    text-align: center;
    background: var(--bv-bg);
}

.bv-back a {
    color: var(--bv-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.bv-back a:hover {
    color: var(--bv-accent);
}

/* Responsive */
@media (max-width: 768px) {
    .bv-section {
        padding: 3rem 1.5rem;
    }
    
    .bv-stats {
        gap: 2rem;
    }
    
    .bv-stat-number {
        font-size: 2.5rem;
    }
}
