* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple-primary: #8B5CF6;
    --purple-dark: #6D28D9;
    --purple-light: #A78BFA;
    --dark-bg: #1E1B4B;
    --gold: #FCD34D;
}

html {
    scroll-behavior: smooth;
  }
  
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}
.limit {
    color: #D26683;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border: 3px solid #D26683;
    border-radius: 50px;
    margin-bottom: 2rem;
    display: inline-block;
}
h1 .no {
    color: #EEE2F8;
}
h2 {
    text-align: center;
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: 700;
    color: var(--purple-dark);
    margin: 3rem 1rem 1rem 1rem;
    text-shadow: 0 0 16px #fff;
}
h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--purple-dark);
}

p {
    text-align: center;
    padding: 0.75rem 1rem; 
}


/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1E1B4B 0%, #4C1D95 50%, #8B5CF6 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(167, 139, 250, 0.2) 0%, transparent 50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.logo {
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: right;
}
.logo-image {
    width: 10vw;
    height: auto;
}

.logo span {
    display: block;
    font-size: 1.5rem;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(1.9rem, 6vw, 3.3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.hero h1 .highlight {
    color: var(--gold);
}

.subheadline {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 3rem;
    font-weight: 300;
    opacity: 0.95;
}

.today-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: .5rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    margin: 0rem 0.5rem 1rem 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 1.0rem;
    margin: 1rem 0 1rem 0;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    text-align: center;
    font-weight: 500;
}
.benefit-item b {
    font-weight: 900;
}

.benefit-item::before {
    content: '▶';
    color: var(--gold);
    font-size: 1.5rem;
    flex-shrink: 0;
    padding-right: 0.75rem;
}

.section-story .benefit-item {
    padding-bottom: 0.75rem;
    display: inline-block;
}
.section-story .benefit-item::before {
    content: '▶';
    color: var(--gold);
    font-size: 1.0rem;
    flex-shrink: 0;
    padding-right: 0.75rem;
}

.benefit-item strong {
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    color: var(--purple-primary);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    line-height: 1.5rem;
}

.cta-button::before {
    content: '✓';
    position: absolute;
    left: 1.5rem;
    font-size: 1.5rem;
    color: #10B981;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: var(--gold);
    color: var(--dark-bg);
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}
.avatar-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border-top: 4px solid white;
    border-left: 4px solid white;
    border-right: 4px solid white;
    border-bottom: 4px solid white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Story Section */

.section-story {
    padding: 2rem 3rem 2rem 3rem;
}
.twice {
    position: relative;
    color: #000;
}

.twice::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    height: 14px; /* Platz für 2 Linien */
    pointer-events: none;
    background: none;
    z-index: 1;
    display: block;
    background-image: url("data:image/svg+xml;utf8,<svg width='200' height='14' viewBox='0 0 200 14' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M4 7 C 40 12, 160 2, 196 7' stroke='purple' stroke-width='2' stroke-linecap='round' fill='none'/><path d='M6 12 C 40 14, 160 8, 194 12 L 196 12, 196 12' stroke='purple' stroke-width='1.5' stroke-linecap='round' fill='none' opacity='0.7'/></svg>");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.twice {
    padding-bottom: 16px; /* Abstand für Unterstreichungen */
}
.engagement {
    text-align: left;
    margin: 0 auto;
    display: table;
    padding-left: 3.5rem;
}
.prior.price .cta-button {
    font-size: 1rem;
}
.prior {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: stretch;
    color: #e8f1e8;
    margin: 0 2rem 5rem 2rem;
}

.prior > p {
    background: linear-gradient(135deg, #1E1B4B 0%, #4C1D95 50%, #8B5CF6 100%);
    border-radius: 14px;
    padding: 2rem;
    flex: 1 1 0;
    margin: 0;
    box-shadow: 0 3px 16px rgba(34, 139, 34, 0.08);
    display: flex;
    flex-direction: column;
    min-width: 0;
    opacity: 0.95;
}

.prior > p:hover {
    opacity: 1;
}

.prior b::first-line {
    color: #26c895;
    text-shadow: 0 0 3px #030303;
}
.prior.price b:first-child {
    font-size: 1.4rem;
    padding-bottom: 1.2rem;
    line-height: 1.7rem;
}
.check {
    margin: .75rem 0 0 0;
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
    .prior {
        flex-direction: column;
        gap: 1rem;
        margin: 3rem 0vw 5vw 0rem;
    }
}

section.section-pas {
    padding: 2rem 2rem 6rem 2rem;
    position: relative;
    background: linear-gradient(45deg, #e0c1f1ad, #f7e42f0a);
}
.pas ul {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 3.5rem 2rem 4rem 2rem;
    justify-content: center;
}
.pas ul li {
    background: white;
    border-radius: 15px;
    padding: 1.5rem 1.5rem;
    margin: 0;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 220px;
    max-width: 450px;
    transition: box-shadow 0.23s;
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
}
.pas-list.pro .pas-item {
    transition: transform 1s cubic-bezier(0.4, 0.2, 0.2, 1);
    cursor: context-menu;
    opacity: 0.9;
}
.pas-list.pro .pas-item:hover,
.pas-list.pro .pas-item:focus {
    transform: scale(1.08);
    transition: transform 0.22s cubic-bezier(0.4, 0.2, 0.2, 1);
    opacity: 1;
}
.pas-list.contra {
    display: table;
    margin: 0 auto;
    padding: 0 2rem;
}
.pas-list.contra .pas-item {
    padding: 1rem 0rem;
    background: none;
}

.pas-list.contra .pas-item:hover::before,
.pas-list.contra .pas-item:focus::before {
    content: '';
    display: inline-block;
    position: absolute;
    left: -1.8rem;
    top: 1.4rem;
    width: 1em;
    height: 1em;
    vertical-align: middle;
    margin-right: 0.5em;
    background: none;
    background-image: url('data:image/svg+xml;utf8,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><line x1="3" y1="3" x2="13" y2="13" stroke="%23D26683" stroke-width="2" stroke-linecap="round"/><line x1="13" y1="3" x2="3" y2="13" stroke="%23D26683" stroke-width="2" stroke-linecap="round"/></svg>');
    background-repeat: no-repeat;
    background-position: center left;
    background-size: 1em 1em;
}

.pas-list.pro .pas-item:before, .pas-list.pro .pas-item:before {
    content: '✓';
    display: inline-block;
    position: absolute;
    left: -0.95rem;
    top: 0.2rem;
    font-size: 2.5rem;
    font-weight: bold;
    color: #23cf23a3;
}
.pas-list .pas-item:hover,
.pas-list .pas-item:focus {
    position: relative; /* Ensure pseudo works right */
}

.pas-list.contra .pas-item::before {
    content: '';
    display: none;
}

.pas ul li::before {
    content: '';
    display: none;
}
.pas-list.pro .pas-item b {
    color: #26c895;
}

@media (max-width: 1000px) {
    .pas ul li {
        flex: 1 1 calc(50% - 2rem);
    }
    .limit {
        margin-bottom: 2rem;
        font-size: .9rem;
    }
    .thank-you {
        font-size: 1.1rem;
    }
    .thank-you .cta-button {
        font-size: .95rem;
    }
}

@media (max-width: 650px) {
    .pas ul {
        flex-direction: column;
        gap: 1rem;
    }
    .pas ul li {
        flex: 1 1 100%;
        min-width: 0;
        max-width: 100%;
    }
}


/* Form Section */
.form-section {
    padding: 1rem 2rem 4rem 2rem;
    background: linear-gradient(45deg, #e0c1f1a3, #fefad66b);
    font-size: 1.25rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--purple-primary);
    margin-bottom: 1rem;
}

.form-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

label .required {
    color: #EF4444;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"]  {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus {
    outline: none;
    border-color: var(--purple-primary);
}

.checkbox-group {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.25rem;
    flex-shrink: 0;
    cursor: pointer;
}

.checkbox-label {
    font-size: 0.9rem;
    color: #555;
    font-weight: 400;
    line-height: 1.5;
}

.checkbox-label a {
    color: var(--purple-primary);
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 1.25rem;
    margin: 1rem 0;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Thank You Section */
.thank-you {
    //display: none;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    padding: 2rem 2rem 2rem 2rem;
    text-align: center;
    min-height: 60vh;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 1.3rem;
}

.thank-you.active {
    display: flex;
}

.thank-you h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 2rem;
}
.next>b:nth-child(1) {
    color: #fcd34d;
}
.thank-you p {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you .prior {
    padding: 2.5rem 0 2rem 0;
    margin: 0rem 2rem 3vw 2rem;
}
.thank-you .prior b::first-line {
    color: #26c895;
    text-shadow: 0 0 3px #030303;
    font-size: 1.4rem;
}
.thank-you .prior > p {
    padding: 2.5rem 2rem 2rem 2rem;
    justify-content: normal;
}
.thank-you .cta-button {
    padding: 1.0rem 3rem;
    width: max-content;
    margin: 1.5rem auto 0 auto;
    display: inline-block;
}

.appointment {
    display: none;
    background: #0CAB78;
    padding: 0 2rem 0rem 2rem;
    margin: 0;
    font-size: 1.3rem;
}
.appointment h2 {
    color: #fff;
    text-shadow: none;
    margin: 0;
    padding-top: 3rem;
}
/* Footer */
footer {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--purple-light);
}

.copyright {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 5rem 2rem 2rem 2rem;
    }
    .today-badge {
        margin: 0rem 0.5rem .5rem 0.5rem;
    }
    .logo-image {
        width: 17vw;
        height: auto;
    }
    .benefits {
        text-align: left;
    }
    .cta-section {
        flex-direction: column-reverse;
    } 
    .avatar {
        width: 60px;
        height: 60px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease backwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }