/* ===== Local Font Faces ===== */

/* Dosis — latin-ext (umlauts etc.) */
@font-face {
    font-family: 'Dosis';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('fonts/dosis-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Dosis — latin */
@font-face {
    font-family: 'Dosis';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('fonts/dosis-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Muli — latin-ext */
@font-face {
    font-family: 'Muli';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url('fonts/muli-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Muli — latin */
@font-face {
    font-family: 'Muli';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url('fonts/muli-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Lustria — latin */
@font-face {
    font-family: 'Lustria';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/lustria-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Material Icons */
@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/material-icons.woff2') format('woff2');
}
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/* ===== Reset ===== */

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

:root {
    /* Color palette */
    --primary-blue: #83a8c0;
    --primary-blue-dark: #6b8a9d;
    --primary-blue-light: #a0c0d4;
    --primary-blue-bg: #e8f1f5;
    --offwhite: #fefdff;
    --accent-green: #3b5249;
    --accent-dark: #34252f;
    --accent-mint: #90ffdc;
    --bright-green: #52c41a;
    --bright-orange: #ff6b35;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e8e8e8;
    --gray-300: #d9d9d9;
    --gray-600: #595959;
    --gray-700: #434343;
    --gray-800: #262626;
    --white: #ffffff;
}

body {
    font-family: "Muli", sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--gray-50);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Dosis", sans-serif;
    line-height: 1.3;
    font-weight: 600;
}

.section-subtitle,
.investment-meta,
.progress-info,
summary,
.footer-links a,
.author-info p {
    font-family: "Lustria", serif;
}

.stat-item p,
.investment-return,
.investment-tag,
.expert-role,
.step-icon,
.logo {
    font-family: "Muli", sans-serif;
}

.container {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 2.5rem;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.3s;
    font-family: "Dosis", sans-serif;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-buttons {
    display: flex;
    gap: 0.75rem;
}

button {
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    font-family: "Muli", sans-serif;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--primary-blue-bg);
}

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

.btn-primary:hover {
    background-color: var(--primary-blue-dark);
}

/* Hero Section */
.hero {
    background:
        linear-gradient(
            135deg,
            rgba(52, 37, 47, 0.85) 0%,
            rgba(59, 82, 73, 0.75) 100%
        ),
        url("kurse.jpg") center center / cover no-repeat;
    color: var(--offwhite);
    padding: 8rem 0;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero button {
    background-color: var(--offwhite);
    color: var(--accent-dark);
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    font-weight: 600;
}

.hero button:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Section Styling */
section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 3.5rem;
    color: var(--gray-800);
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto 3.5rem;
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
}

.step-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(
        135deg,
        var(--accent-mint) 0%,
        var(--primary-blue) 100%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-dark);
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.step p {
    color: var(--gray-600);
    font-size: 1rem;
}

/* Investment Cards */
.bg-white {
    background-color: var(--white);
}

.investments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.investment-card {
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.investment-card:hover {
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.12);
    transform: translateY(-0.25rem);
}

.investment-image {
    width: 100%;
    height: 15rem;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.investment-card .investment-image-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--primary-blue);
}

.investment-content {
    padding: 1.5rem;
}

.investment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.investment-tag {
    padding: 0.375rem 0.875rem;
    border-radius: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.tag-renewable {
    background-color: var(--bright-green);
    color: var(--white);
}

.tag-real-estate {
    background-color: var(--gray-700);
    color: var(--white);
}

.tag-sports {
    background-color: var(--bright-orange);
    color: var(--white);
}

.investment-return {
    font-weight: 600;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.investment-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--gray-800);
}

.investment-card p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.investment-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.progress-bar-container {
    margin-bottom: 1.25rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.progress-bar {
    width: 100%;
    height: 0.5rem;
    background-color: var(--gray-200);
    border-radius: 0.25rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(
        90deg,
        var(--accent-mint) 0%,
        var(--primary-blue) 100%
    );
    border-radius: 0.25rem;
    transition: width 0.3s;
}

.investment-card button {
    width: 100%;
    padding: 0.875rem;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(
        135deg,
        var(--primary-blue) 0%,
        var(--primary-blue-dark) 100%
    );
    color: var(--offwhite);
    text-align: center;
    padding: 4rem 0;
}

.cta-section h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Stats Section */
.stats-section {
    background-color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item .stat-number {
    font-family: 'Dosis', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(
        135deg,
        var(--primary-blue) 0%,
        var(--accent-mint) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--gray-600);
    font-size: 1rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(
        135deg,
        var(--accent-mint) 0%,
        var(--primary-blue) 100%
    );
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 2rem;
    color: var(--accent-dark);
}

.feature-icon .material-icons {
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--gray-800);
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Expert Section */
.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.expert-card {
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.expert-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.12);
}

.expert-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.expert-image-container {
    position: relative;
    width: 100%;
    height: 16rem;
    overflow: hidden;
    background: var(--primary-blue);
}

.expert-content {
    padding: 1.5rem;
}

.expert-role {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.expert-role.renewable {
    background-color: var(--bright-green);
    color: var(--white);
}

.expert-role.real-estate {
    background-color: var(--gray-700);
    color: var(--white);
}

.expert-role.sports {
    background-color: var(--bright-orange);
    color: var(--white);
}

.expert-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.expert-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-container {
    max-width: 50rem;
    margin: 0 auto;
}

details {
    background-color: var(--white);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--gray-800);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--accent-mint);
    transition: transform 0.3s;
}

details[open] summary::after {
    transform: rotate(45deg);
}

summary:hover {
    background-color: var(--gray-50);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1rem;
}

/* Legal Disclaimer */
.legal-disclaimer {
    background: var(--gray-100, #f5f5f5);
    border-top: 1px solid var(--gray-200, #e0e0e0);
    padding: 1.5rem 0;
}

.legal-disclaimer p {
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.legal-disclaimer p:last-child {
    margin-bottom: 0;
}

.legal-disclaimer strong {
    color: var(--gray-700);
}

/* Footer */
footer {
    background-color: var(--gray-800);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-section h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-mint);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--accent-dark);
    color: var(--offwhite);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: rgba(254, 253, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(144, 255, 220, 0.2);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-0.25rem);
    border-color: var(--accent-mint);
    box-shadow: 0 0.75rem 1.5rem rgba(144, 255, 220, 0.15);
}

.stars {
    color: var(--accent-mint);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(254, 253, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--accent-mint) 0%,
        var(--primary-blue) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--accent-dark);
}

.author-info .author-name {
    font-family: 'Dosis', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--offwhite);
}

.author-info p {
    font-size: 0.875rem;
    color: rgba(254, 253, 255, 0.6);
}

.footer-bottom {
    border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    font-family: "Muli", sans-serif;
}

/* Partner Logos Section */
.partners-section {
    background-color: var(--offwhite);
    padding: 3rem 0;
    overflow: hidden;
}

.partners-scroll-container {
    overflow: hidden;
    position: relative;
}

.partners-scroll-wrapper {
    display: flex;
    animation: scroll-partners 25s linear infinite;
}

.partners-scroll-wrapper:hover {
    animation-play-state: paused;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partners-track {
    display: flex;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
}

.partner-logo {
    min-width: 8rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    transition: all 0.3s;
}

.partner-logo:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 1rem rgba(131, 168, 192, 0.2);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-800);
    cursor: pointer;
    padding: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-buttons {
        gap: 0.5rem;
    }

    .nav-buttons button {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .hero {
        padding: 3rem 0;
    }

    section {
        padding: 3rem 0;
    }

    .steps-grid,
    .investments-grid,
    .features-grid,
    .experts-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .logo-img {
        height: 2rem;
    }

    .investment-image,
    .expert-image-container {
        height: 12rem;
    }

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