@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* jobwalk Brand Colors */
    --pink: #e83672;
    --pink-light: rgba(232, 54, 114, 0.1);
    --teal: #009cc1;
    --teal-light: #6cc7e1;
    --green: #95bb20;
    --orange: #eb9000;
    --dark: #312f4a;
    --dark-light: #383838;
    --gray: #6c757d;
    --gray-light: #f8f9fa;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

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

/* ===== HEADER ===== */
.header {
    background: var(--white);
    border-bottom: 1px solid #e9ecef;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 120px;
    width: auto;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-main {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
}

.logo-sub {
    font-size: 14px;
    font-weight: 600;
    color: var(--pink);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--pink);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    background: var(--dark);
    color: var(--white);
    padding: 100px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--pink) 0%, var(--teal) 50%, var(--green) 100%);
}

.hero-gradient {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: var(--pink);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero h1 .highlight {
    color: var(--teal-light);
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 50px;
    justify-content: center;
    margin-bottom: 40px;
}

.hero-stats .stat {
    text-align: center;
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--teal-light);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

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

.btn-primary:hover {
    background: #c42a5e;
    border-color: #c42a5e;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(232, 54, 114, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-outline {
    background: transparent;
    color: var(--pink);
    border-color: var(--pink);
}

.btn-outline:hover {
    background: var(--pink);
    color: var(--white);
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}

.section-light {
    background: var(--gray-light);
}

.section-dark {
    background: linear-gradient(135deg, var(--dark) 0%, #1c1c1c 100%);
    color: var(--white);
}

.section-header {
    margin-bottom: 50px;
}

.section-header.center {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header h2 .highlight {
    color: var(--pink);
}

.section-header.light h2 .highlight {
    color: var(--teal-light);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.6;
}

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.8);
}

/* ===== INTRO SECTION ===== */
.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 30px;
    line-height: 1.2;
}

.intro-content h2 .highlight {
    color: var(--pink);
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-light);
    margin-bottom: 24px;
}

.intro-text:last-child {
    margin-bottom: 0;
}

/* ===== COMPARISON SECTION ===== */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(49, 47, 74, 0.08);
}

.comparison-card.old {
    border: 2px solid #e9ecef;
}

.comparison-card.new {
    border: 3px solid var(--pink);
    position: relative;
}

.comparison-card.new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink) 0%, var(--teal) 100%);
}

.comparison-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.comparison-card ul {
    list-style: none;
}

.comparison-card ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: var(--dark-light);
    border-bottom: 1px solid var(--gray-light);
}

.comparison-card ul li:last-child {
    border-bottom: none;
}

.comparison-card.old ul li::before {
    content: '−';
    position: absolute;
    left: 0;
    color: var(--gray);
    font-weight: bold;
    font-size: 20px;
}

.comparison-card.new ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--pink);
    font-weight: bold;
    font-size: 18px;
}

/* ===== PACKAGE CARDS ===== */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.package-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    border: 2px solid #e9ecef;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(49, 47, 74, 0.15);
}

.package-card.featured {
    margin-bottom: 30px;
}

.package-card.premium {
    border-color: var(--pink);
    background: var(--pink-light);
}

.package-card.gold {
    border-color: var(--orange);
    background: rgba(235, 144, 0, 0.08);
}

.package-card.silver {
    border-color: var(--teal);
    background: rgba(0, 156, 193, 0.08);
}

.package-card.bronze {
    border-color: var(--green);
    background: rgba(149, 187, 32, 0.08);
}

.package-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.package-card.premium .package-badge {
    background: var(--pink);
    color: var(--white);
}

.package-card.gold .package-badge {
    background: var(--orange);
    color: var(--white);
}

.package-card.silver .package-badge {
    background: var(--teal);
    color: var(--white);
}

.package-card.bronze .package-badge {
    background: var(--green);
    color: var(--white);
}

.package-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.package-price {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
}

.package-card.premium .package-price {
    color: var(--pink);
}

.package-card.gold .package-price {
    color: var(--orange);
}

.package-card.silver .package-price {
    color: var(--teal);
}

.package-card.bronze .package-price {
    color: var(--green);
}

.package-availability {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 20px;
    font-weight: 500;
}

.package-features {
    list-style: none;
    margin-bottom: 20px;
}

.package-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 14px;
    color: var(--dark-light);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
}

.package-card.premium .package-features li::before {
    color: var(--pink);
}

.package-card.gold .package-features li::before {
    color: var(--orange);
}

.package-card.silver .package-features li::before {
    color: var(--teal);
}

.package-card.bronze .package-features li::before {
    color: var(--green);
}

.package-ideal {
    font-size: 12px;
    color: var(--gray);
    margin-top: 16px;
    font-style: italic;
}

/* Premium Package Full Width */
.package-card.featured {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.package-header {
    display: grid;
    grid-template-columns: 300px 1fr auto;
    gap: 40px;
    align-items: start;
}

.package-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.package-cta {
    display: flex;
    align-items: center;
}

.package-note {
    background: var(--gray-light);
    border-radius: 12px;
    padding: 24px;
    margin-top: 30px;
    text-align: center;
}

.package-note p {
    margin-bottom: 8px;
    font-size: 15px;
}

.package-note .small {
    font-size: 13px;
    color: var(--gray);
}

/* ===== DIGITAL CONCEPT ===== */
.digital-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.digital-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(49, 47, 74, 0.08);
    border: 1px solid #e9ecef;
    text-align: center;
    transition: transform 0.3s;
}

.digital-card:hover {
    transform: translateY(-5px);
}

.digital-card.highlight {
    background: linear-gradient(135deg, var(--teal) 0%, #007a99 100%);
    color: var(--white);
    border: none;
}

.digital-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.digital-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.digital-card.highlight p {
    opacity: 0.95;
}

.digital-stats {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.stat-badge {
    background: rgba(0,0,0,0.1);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.digital-card.highlight .stat-badge {
    background: rgba(255,255,255,0.2);
}

/* ===== SPEAKER & PROGRAMM ===== */
.speaker-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.speaker-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(49, 47, 74, 0.08);
    border: 1px solid #e9ecef;
    transition: transform 0.3s, box-shadow 0.3s;
}

.speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(49, 47, 74, 0.15);
}

.speaker-image-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink) 0%, var(--teal) 100%);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker-initials {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
}

.speaker-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.speaker-role {
    font-size: 14px;
    font-weight: 600;
    color: var(--pink);
    margin-bottom: 12px;
}

.speaker-bio {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.speaker-card.speaker-more {
    border: 2px dashed #e9ecef;
    background: var(--gray-light);
}

.speaker-card.speaker-more .speaker-image-placeholder {
    background: linear-gradient(135deg, var(--gray) 0%, #5a5a5a 100%);
}

.speaker-card.speaker-more .speaker-initials {
    font-size: 24px;
    letter-spacing: 4px;
}

.program-section {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(49, 47, 74, 0.08);
}

.program-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 30px;
    text-align: center;
}

.program-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.program-item {
    display: flex;
    gap: 20px;
    align-items: start;
    background: var(--white);
    padding: 18px 24px;
    border-left: 4px solid var(--teal);
    border-bottom: 1px solid #e9ecef;
}

.program-item:last-child {
    border-bottom: none;
}

.program-item:nth-child(even) {
    background: var(--gray-light);
}

.program-item.highlight {
    background: rgba(232, 54, 114, 0.08);
    border-left-color: var(--pink);
}

.program-item.highlight:nth-child(even) {
    background: rgba(232, 54, 114, 0.12);
}

.program-time {
    font-size: 16px;
    font-weight: 700;
    color: var(--teal);
    min-width: 60px;
}

.program-item.highlight .program-time {
    color: var(--pink);
}

.program-content {
    flex: 1;
}

.program-title-small {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.program-desc {
    font-size: 13px;
    color: var(--gray);
}

.program-note {
    font-size: 13px;
    color: var(--gray);
    text-align: center;
    font-style: italic;
    margin-top: 20px;
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.proof-item {
    text-align: center;
}

.proof-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.partner-tag {
    background: var(--gray-light);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #e9ecef;
}

.partner-tag.highlight {
    background: var(--pink);
    color: var(--white);
    border-color: var(--pink);
}

.proof-text {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== BOOKING FORM ===== */
.form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.booking-form {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 13px;
}

.checkbox-group label a {
    color: var(--pink);
    text-decoration: underline;
}

.form-actions {
    margin-top: 30px;
}

.form-message {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 15px;
    text-align: center;
}

.form-message.success {
    background: rgba(149, 187, 32, 0.1);
    border: 2px solid var(--green);
    color: var(--green);
}

.form-message.error {
    background: rgba(232, 54, 114, 0.1);
    border: 2px solid var(--pink);
    color: var(--pink);
}

.form-info {
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 30px;
    color: var(--white);
}

.form-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.form-info ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.form-info ol li {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.form-info .small {
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.5;
}

.form-info a {
    color: var(--teal-light);
    text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-column .small {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 8px;
}

.footer-column a {
    color: var(--teal-light);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 48px;
    }

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

    .package-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .package-features-grid {
        grid-template-columns: 1fr;
    }

    .package-cta {
        justify-content: flex-start;
    }

    .digital-grid,
    .social-proof,
    .speaker-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .nav {
        display: none;
    }

    .section-header h2 {
        font-size: 32px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===== VALUE FOR ALL SECTION ===== */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(49, 47, 74, 0.08);
    border: 1px solid #e9ecef;
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(49, 47, 74, 0.15);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    text-align: center;
}

.value-list {
    list-style: none;
    padding: 0;
}

.value-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
    font-size: 14px;
    color: var(--dark-light);
    line-height: 1.5;
}

.value-list li:last-child {
    border-bottom: none;
}

/* ===== MEDIA PARTNER SECTION ===== */
.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.media-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(49, 47, 74, 0.08);
    border: 1px solid #e9ecef;
    transition: transform 0.3s;
}

.media-card:hover {
    transform: translateY(-5px);
}

.media-card.pink-accent {
    border-top: 4px solid var(--pink);
}

.media-card.teal-accent {
    border-top: 4px solid var(--teal);
}

.media-card.green-accent {
    border-top: 4px solid var(--green);
}

.media-icon {
    font-size: 42px;
    margin-bottom: 16px;
    text-align: center;
}

.media-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    text-align: center;
}

.media-examples {
    font-size: 13px;
    color: var(--gray);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
}

.media-benefits {
    list-style: none;
    padding: 0;
}

.media-benefits li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-light);
    font-size: 14px;
    color: var(--dark-light);
}

.media-benefits li:last-child {
    border-bottom: none;
}

.media-pool {
    background: linear-gradient(135deg, rgba(0, 156, 193, 0.1) 0%, rgba(0, 156, 193, 0.05) 100%);
    border-left: 4px solid var(--teal);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
}

.media-pool h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 30px;
    text-align: center;
}

.pool-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.pool-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 8px;
}

.pool-label {
    font-size: 13px;
    color: var(--dark-light);
    line-height: 1.4;
}

.media-benefits-box {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(49, 47, 74, 0.08);
}

.media-benefits-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
}

.benefits-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.benefits-columns ul {
    list-style: none;
    padding: 0;
}

.benefits-columns li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
    font-size: 15px;
    color: var(--dark-light);
}

.benefits-columns li:last-child {
    border-bottom: none;
}

.media-cta {
    background: var(--gray-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.media-cta p {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 20px;
}

/* Responsive für neue Sektionen */
@media (max-width: 1024px) {
    .value-grid,
    .media-grid {
        grid-template-columns: 1fr;
    }

    .pool-stats {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .pool-stats {
        grid-template-columns: 1fr;
    }
}
