/* Start custom CSS *//* Google Fonts laden */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Manrope:wght@400;500;600;700&display=swap');

/* ---- Eigene Variablen (gekapselt) ---- */
.vv-wrap {
    --vv-primary: #1a1a2e;
    --vv-accent: #c49b63;
    --vv-accent-light: #d4b280;
    --vv-text: #2d2d2d;
    --vv-text-light: #666666;
    --vv-bg: #fafaf8;
    --vv-white: #ffffff;
    --vv-border: #e8e6e1;
    font-family: 'Manrope', sans-serif;
    color: var(--vv-text);
    line-height: 1.7;
    overflow-x: hidden;
}

.vv-wrap * {
    box-sizing: border-box;
}

/* ---- Container ---- */
.vv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== HERO ===== */
.vv-hero {
    background: linear-gradient(135deg, var(--vv-primary) 0%, #2d2d44 100%);
    color: var(--vv-white);
    padding: 6rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.vv-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(196,155,99,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(196,155,99,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.vv-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    animation: vvFadeUp 1s ease-out both;
}

.vv-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(196,155,99,0.15);
    border: 1px solid var(--vv-accent);
    border-radius: 50px;
    font-size: 0.875rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.vv-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.2;
    margin: 0 0 1.5rem;
    letter-spacing: -1px;
    color: var(--vv-white);
}

.vv-hero h1 strong {
    font-weight: 700;
    color: var(--vv-accent-light);
}

.vv-hero-sub {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* ===== BUTTONS ===== */
.vv-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--vv-accent);
    color: var(--vv-white) !important;
    text-decoration: none !important;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196,155,99,0.3);
    border: none;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
}

.vv-btn:hover {
    background: var(--vv-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196,155,99,0.4);
    color: var(--vv-white) !important;
}

/* ===== ABSCHNITTS-HEADER ===== */
.vv-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.vv-label {
    font-size: 0.875rem;
    color: var(--vv-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.vv-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--vv-primary);
    margin: 0 0 1.5rem;
    line-height: 1.3;
}

.vv-desc {
    font-size: 1.1rem;
    color: var(--vv-text-light);
    line-height: 1.8;
    margin: 0;
}

/* ===== PROBLEM-SECTION ===== */
.vv-problem {
    padding: 6rem 0;
    background: var(--vv-white);
}

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

.vv-stat-card {
    background: var(--vv-bg);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--vv-accent);
    transition: transform 0.3s ease;
}

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

.vv-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--vv-accent);
    margin-bottom: 0.5rem;
    line-height: 1;
    display: block;
}

.vv-stat-text {
    font-size: 1rem;
    color: var(--vv-text);
    line-height: 1.6;
    margin: 0;
}

/* ===== LÖSUNG-SECTION ===== */
.vv-solution {
    padding: 6rem 0;
    background: var(--vv-bg);
}

.vv-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.vv-benefit-card {
    background: var(--vv-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.vv-benefit-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.vv-benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--vv-accent), var(--vv-accent-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.vv-benefit-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--vv-primary);
    margin: 0 0 1rem;
}

.vv-benefit-desc {
    color: var(--vv-text-light);
    line-height: 1.7;
    margin: 0;
}

/* ===== PROZESS-SECTION ===== */
.vv-process {
    padding: 6rem 0;
    background: var(--vv-white);
}

.vv-timeline {
    max-width: 900px;
    margin: 4rem auto 0;
    position: relative;
}

.vv-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: var(--vv-border);
}

.vv-step {
    position: relative;
    padding-left: 85px;
    margin-bottom: 3rem;
}

.vv-step:last-child { margin-bottom: 0; }

.vv-step-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 62px;
    height: 62px;
    background: var(--vv-accent);
    color: var(--vv-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(196,155,99,0.3);
    z-index: 1;
}

.vv-step h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--vv-primary);
    margin: 0.75rem 0 0.75rem;
}

.vv-step p {
    color: var(--vv-text-light);
    line-height: 1.7;
    margin: 0;
}

/* ===== PAKET-SECTION ===== */
.vv-package {
    padding: 6rem 0;
    background: var(--vv-bg);
}

.vv-package-box {
    max-width: 800px;
    margin: 4rem auto 0;
    background: var(--vv-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.vv-package-head {
    background: linear-gradient(135deg, var(--vv-primary), #2d2d44);
    color: var(--vv-white);
    padding: 3rem;
    text-align: center;
}

.vv-package-head .vv-title {
    color: var(--vv-white);
    margin-bottom: 1rem;
}

.vv-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--vv-accent-light);
    margin: 0 0 0.5rem;
    display: block;
}

.vv-price-note {
    font-size: 0.9rem;
    opacity: 0.85;
    margin: 0;
}

.vv-package-body {
    padding: 3rem;
}

.vv-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.vv-features li {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--vv-border);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--vv-text);
}

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

.vv-features li::before {
    content: '✓';
    color: var(--vv-accent);
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.vv-package-cta {
    text-align: center;
    padding-top: 2rem;
}

/* ===== TESTIMONIAL ===== */
.vv-proof {
    padding: 6rem 0;
    background: var(--vv-white);
}

.vv-testimonial {
    max-width: 800px;
    margin: 4rem auto 0;
    background: var(--vv-bg);
    padding: 3rem;
    border-radius: 12px;
    border-left: 4px solid var(--vv-accent);
}

.vv-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-style: italic;
    color: var(--vv-text);
    line-height: 1.7;
    margin: 0 0 2rem;
}

.vv-author-name {
    font-weight: 600;
    color: var(--vv-primary);
    margin: 0 0 0.25rem;
}

.vv-author-title {
    color: var(--vv-text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== KONTAKT-SECTION ===== */
.vv-contact {
    padding: 6rem 0;
    background: var(--vv-primary);
}

.vv-contact .vv-label { color: var(--vv-accent-light); }
.vv-contact .vv-title { color: var(--vv-white); }
.vv-contact .vv-desc { color: rgba(255,255,255,0.85); }

.vv-form {
    max-width: 600px;
    margin: 4rem auto 0;
}

.vv-form-group {
    margin-bottom: 1.5rem;
}

.vv-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.vv-form-group input,
.vv-form-group textarea,
.vv-form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: var(--vv-white);
    border-radius: 4px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, background 0.3s ease;
    outline: none;
}

.vv-form-group input::placeholder,
.vv-form-group textarea::placeholder {
    color: rgba(255,255,255,0.45);
}

.vv-form-group input:focus,
.vv-form-group textarea:focus,
.vv-form-group select:focus {
    border-color: var(--vv-accent);
    background: rgba(255,255,255,0.08);
}

.vv-form-group select option {
    background: var(--vv-primary);
    color: var(--vv-white);
}

.vv-form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.vv-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--vv-accent);
    color: var(--vv-white);
    border: none;
    border-radius: 4px;
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196,155,99,0.3);
}

.vv-submit:hover {
    background: var(--vv-accent-light);
    transform: translateY(-2px);
}

.vv-form-note {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin-top: 1rem;
}

/* ===== SCROLL-ANIMATIONEN ===== */
@keyframes vvFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.vv-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.vv-animate.vv-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .vv-hero { padding: 4rem 0 5rem; }
    .vv-problem, .vv-solution, .vv-process, .vv-package, .vv-proof, .vv-contact {
        padding: 4rem 0;
    }
    .vv-timeline::before { left: 22px; }
    .vv-step { padding-left: 70px; }
    .vv-step-num { width: 50px; height: 50px; font-size: 1.25rem; }
    .vv-package-head, .vv-package-body { padding: 2rem; }
    .vv-testimonial { padding: 2rem; }
    .vv-quote { font-size: 1.2rem; }
}/* End custom CSS */