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

:root {
    --primary-color: #2d6a4f;
    --primary-dark: #1b4332;
    --primary-light: #40916c;
    --accent-color: #52b788;
    --accent-light: #74c69d;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.cta-button-nav {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.cta-button-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f5f0 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    /*grid-template-columns: 1fr 1fr;*/
    gap: 60px;
    align-items: center;
}

.hero-headline {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.hero-subheadline {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.badge-icon {
    font-size: 24px;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.cta-button-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.8s ease 0.6s both;
}

.cta-button-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.hero-image-placeholder {
    animation: fadeInRight 0.8s ease 0.4s both;
}

.image-placeholder {
    background: linear-gradient(135deg, #d3e8df 0%, #b7d7c7 100%);
    border: 3px dashed var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.placeholder-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    text-align: center;
    line-height: 1.8;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 100' preserveAspectRatio='none'%3E%3Cpath d='M0,50 C300,80 600,20 900,50 L900,100 L0,100 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat center bottom;
    background-size: cover;
}

.why-section {
    padding: 55px 0;
    background: var(--bg-white);
}

.section-headline {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 64px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.pillar-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.pillar-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pillar-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.pillar-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

a{
    text-decoration: none;
}

.pillar-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.pillar-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.benefits-section {
    padding: 55px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.benefit-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.benefit-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.benefit-header {
    margin-bottom: 24px;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.benefit-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

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

.benefit-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.benefit-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 18px;
}

.benefits-image-section {
    margin-top: 60px;
}

.benefits-image-section .image-placeholder {
    min-height: 400px;
}

.trust-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
}

.trust-section .section-headline {
    color: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
}

.trust-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
}

.trust-checkmark {
    font-size: 32px;
    font-weight: bold;
    color: var(--accent-light);
    flex-shrink: 0;
}

.trust-item p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    transform: scale(0.95);
}

.testimonial.visible {
    opacity: 1;
    transform: scale(1);
    transition: all 0.6s ease;
}

.quote-icon {
    font-size: 72px;
    color: var(--accent-light);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.6;
}

.testimonial-text {
    font-size: 22px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
    color: white;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-light);
}

.final-cta {
    text-align: center;
}

.cta-button-large {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 20px 48px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.cta-button-large:hover {
    background: var(--accent-light);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-brand h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--accent-light);
}

.footer-brand p {
    color: #888;
    font-size: 16px;
}

.footer-disclaimer {
    max-width: 600px;
    color: #666;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-headline {
        font-size: 42px;
    }

    .hero-subheadline {
        font-size: 18px;
    }

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

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

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

    .section-headline {
        font-size: 36px;
    }

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

@media (max-width: 640px) {
    .hero-headline {
        font-size: 32px;
    }

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

    .trust-badges {
        grid-template-columns: 1fr;
    }

    .cta-button-primary {
        width: 100%;
        font-size: 16px;
        padding: 16px 32px;
    }

    .section-headline {
        font-size: 28px;
    }

    .testimonial-text {
        font-size: 18px;
    }

    .pillar-card,
    .benefit-card {
        padding: 24px;
    }

    .nav-content {
        flex-direction: column;
        gap: 16px;
    }

    .cta-button-nav {
        width: 100%;
    }
}
