/* ====================================
   STARTSEITE.CSS
==================================== */

:root {
    --primary: #8f9b7a;
    --primary-dark: #7c8869;
    --primary-light: #d8ddcf;

    --accent: #e6b59d;
    --accent-dark: #db9f83;
    --accent-light: #f7e7dd;

    --text: #434343;
    --text-light: #6b6b6b;

    --bg: #FDFAF5;
    --white: #ffffff;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --shadow: 0 10px 25px rgba(0,0,0,0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ====================================
   HERO
==================================== */

.hero-section {
    padding: 40px 0 20px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 50px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background: #f1e7df;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 35px;
}

.hero-badge-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
    margin-right: 2px;
}

.hero-title {
    font-family: Georgia, serif;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #353535;
}

.hero-script-image {
    display: block;
    width: 520px;
    max-width: 100%;
    margin-top: 10px;
}

.hero-description {
    max-width: 520px;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 54px;
    padding: 0 28px;

    border-radius: 12px;
    font-weight: 600;

    transition: .2s ease;
}

.btn-arrow-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    margin-left: 6px;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: white;
    border: 1px solid #ddd;
    color: var(--text);
}

.btn-secondary:hover {
    background: #f8f8f8;
}

.btn-accent {
    background: var(--accent);
    color: white;
}

.btn-accent:hover {
    background: var(--accent-dark);
}

.hero-features {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.hero-feature {
    font-size: 14px;
    color: #666;
}

.hero-image-area {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 28px;
}



/* ====================================
   FEATURES
==================================== */

.features-box {
    background: #F5F5EC;
    border-radius: 28px;
    padding-top: 55px;
    overflow: hidden;
}

.features-section {
    margin-top: -20px;
    padding-bottom: 90px;
}

.section-title {
    text-align: center;
    font-family: Georgia, serif;
    font-size: 35px;
    line-height: 1.15;
    margin-bottom: 55px;
}

.section-subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 45px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.feature-card {
    padding: 0 30px 55px;
    text-align: center;
    border-right: 1px solid #E1E1D5;
}

.feature-card:last-child {
    border-right: none;
}


.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 22px;
    background: transparent !important;
    width: auto !important;
    height: auto !important;
}

.feature-icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
}


.feature-card:nth-child(2) .feature-icon,
.feature-card:nth-child(4) .feature-icon {
    background: var(--accent-light);
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: #666;
}

/* ====================================
   PRICING
==================================== */

.pricing-section {
    padding-bottom: 40px;
}

.pricing-section .section-title {
    margin-bottom: 5px;
}

.pricing-section .section-subtitle {
    font-size: 20px;
    color: #6b6b6b;
    margin-bottom: 30px;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-top: 45px;
}

.pricing-card {
    background: white;

    width: 420px;

    padding: 35px;

    border-radius: 24px;

    border: 1px solid #ddd;
}

.pricing-card-highlight {
    border: 2px solid #efc6b5;
    position: relative;
}

.pricing-note-image {
    position: absolute;
    right: -230px;
    top: 120px;

    width: 260px;
    height: auto;

    pointer-events: none;
}

.pricing-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.pricing-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.pricing-card h3 {
    text-align: center;
    font-size: 30px;
    font-family: Georgia, serif;
}

.pricing-small {
    text-align: center;
    color: #777;
    margin-bottom: 25px;
}

.price {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.price span {
    font-size: 18px;
    font-weight: 400;
}

.billing-info {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features li {
    margin-bottom: 12px;
    color: #555;
}

.pricing-card .btn {
    width: 100%;
}

.pricing-note {
    text-align: right;
    margin-top: 20px;
    color: #888;
    font-style: italic;
}

/* ====================================
   TRUST
==================================== */

.trust-section {
    padding-bottom: 80px;
}

.trust-wrapper {
    background: #f6f1eb;

    border-radius: 24px;

    padding: 40px 50px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.trust-main {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.trust-heart {
    flex-shrink: 0;
}


.trust-heart img {
    width: 110px;
    height: auto;
    display: block;
}

.trust-content h3 {
    margin-bottom: 10px;
    font-size: 24px;
    font-family: Georgia, serif;
}

.trust-content p {
    color: #666;
}

.trust-items {
    display: flex;
    gap: 40px;
}

.trust-item {
    text-align: center;
}

.trust-icon {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
}

.trust-icon img {
    width: 48px;
    height: auto;
    display: block;
}

.trust-item:last-child .trust-icon img {
    width: 62px;
}



.trust-item span {
    font-size: 14px;
}

/* ====================================
   RESPONSIVE
==================================== */

@media (max-width: 1100px) {

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 50px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .trust-wrapper {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {

    .hero-title {
        font-size: 40px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .trust-items {
        flex-direction: column;
    }

    .pricing-card {
        width: 100%;
    }

    .container {
        padding: 0 20px;
    }
}