/* Wertefinder Landing Page Styles */

:root {
    --gold: #c9a227;
    --gold-light: #e4c76b;
    --gold-dark: #a68521;
    --primary-color: #2c5f7d;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f7f7f7;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    background: var(--bg-light);
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 100px 20px 60px;
    text-align: center;
    color: white;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    margin: 0 0 1rem;
}

.hero-subtitle {
    font-size: 1.375rem;
    opacity: 0.95;
    margin: 0;
}

/* Main Content */
.main-content {
    padding: 60px 20px 80px;
}

/* Intro */
.intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.intro h2 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.intro p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.intro .highlight {
    font-size: 1.25rem;
    color: var(--gold-dark);
    font-weight: 600;
    margin-top: 1.5rem;
}

/* Why Values Matter Section */
.why-values {
    margin-bottom: 3rem;
    text-align: center;
}

.why-values h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.why-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--gold);
}

.why-card h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.75rem 0;
}

.why-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.value-quote {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(201, 162, 39, 0.05));
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem auto 0;
    max-width: 600px;
    border: none;
}

.value-quote p {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--text-dark);
    margin: 0 0 0.75rem 0;
    line-height: 1.5;
}

.value-quote cite {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gold-dark);
    font-style: normal;
    font-weight: 600;
}

/* Benefits */
.benefits {
    margin-bottom: 3rem;
}

.benefits h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    background: var(--bg-white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    font-family: var(--font-display);
}

.benefit-card h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Example Preview */
.example-preview {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.example-preview h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.example-result {
    max-width: 400px;
    margin: 0 auto;
}

.result-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    transition: transform 0.2s ease;
}

.result-item:hover {
    transform: translateX(4px);
}

.result-item.gold {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.05));
    border-left: 4px solid var(--gold);
}

.result-item.gold .rank {
    background: var(--gold);
    color: white;
}

.result-item.faded {
    opacity: 0.5;
}

.result-item .rank {
    width: 36px;
    height: 36px;
    background: var(--border-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1rem;
    flex-shrink: 0;
}

.result-item .value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Example Description */
.example-description {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Podium Style Preview */
.example-podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.podium-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 140px;
}

.podium-medal {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.podium-item.first .podium-medal {
    background: linear-gradient(135deg, #ffd700, #c9a227);
    color: white;
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
}

.podium-item.second .podium-medal {
    background: linear-gradient(135deg, #e0e0e0, #a0a0a0);
    color: white;
}

.podium-item.third .podium-medal {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.podium-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0.75rem;
}

.podium-item.first .podium-value {
    font-size: 1.25rem;
}

.podium-bar {
    width: 100%;
    border-radius: 6px 6px 0 0;
    background: var(--bg-light);
}

.podium-item.first .podium-bar {
    height: 100px;
    background: linear-gradient(180deg, rgba(201, 162, 39, 0.3), rgba(201, 162, 39, 0.1));
    border-top: 4px solid var(--gold);
}

.podium-item.second .podium-bar {
    height: 70px;
    background: linear-gradient(180deg, rgba(160, 160, 160, 0.2), rgba(160, 160, 160, 0.05));
    border-top: 4px solid #a0a0a0;
}

.podium-item.third .podium-bar {
    height: 50px;
    background: linear-gradient(180deg, rgba(205, 127, 50, 0.2), rgba(205, 127, 50, 0.05));
    border-top: 4px solid #cd7f32;
}

.example-more {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: var(--text-light);
}

.more-item {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
}

.more-dots {
    font-size: 1.25rem;
    color: var(--border-color);
}

/* CTA Section */
.cta-section {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.btn {
    font-family: var(--font-body);
    padding: 16px 36px;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--gold);
    color: white;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.25rem;
}

.time-hint {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Privacy Note */
.privacy-note {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.privacy-note .privacy-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.privacy-note p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.privacy-note strong {
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 900px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .value-quote p {
        font-size: 1.15rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .example-preview,
    .cta-section {
        padding: 2rem 1.5rem;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 1.125rem;
        width: 100%;
    }

    .privacy-note {
        flex-direction: column;
        text-align: center;
    }
}
