/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Quicksand', sans-serif;
    color: #4A5568;
    line-height: 1.8;
    overflow-x: hidden;
    background: linear-gradient(180deg, #FFF9F5 0%, #FFF5F7 50%, #F8F9FF 100%);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.4;
    color: #6B7FBD;
    letter-spacing: 0.5px;
}

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

.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #6B7FBD;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('images/hero-hands.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(251, 191, 36, 0.15), rgba(167, 139, 250, 0.15));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #5B6FB8;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.9);
}

.hero-subtitle {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-text {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #A78BFA, #C4B5FD);
    color: white;
    box-shadow: 0 4px 15px rgba(167, 139, 250, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(167, 139, 250, 0.4);
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
}

.btn-secondary {
    background: white;
    color: #A78BFA;
    border: 2px solid #A78BFA;
}

.btn-secondary:hover {
    background: #A78BFA;
    color: white;
    transform: translateY(-2px);
}

/* Problem Section */
.problem-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FF 100%);
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.metaphor-box {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.08), rgba(251, 207, 232, 0.08));
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    border-left: 4px solid #C4B5FD;
}

.metaphor-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #5B6FB8;
    line-height: 1.8;
}

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

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(167, 139, 250, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(167, 139, 250, 0.2);
}

.problem-icon {
    margin-bottom: 1.5rem;
    color: #A78BFA;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.1), rgba(196, 181, 253, 0.05));
    border-radius: 50%;
    transition: all 0.3s ease;
}

.problem-card:hover .problem-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(196, 181, 253, 0.1));
}

.problem-card h3 {
    color: #5B6FB8;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.problem-card p {
    color: #718096;
    line-height: 1.7;
}

/* Epigenetics Section */
.epigenetics-section {
    margin-top: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.05), rgba(251, 207, 232, 0.05));
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(167, 139, 250, 0.08);
}

.epigenetics-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    color: #A78BFA;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-family: 'Cinzel', serif;
}

.epigenetics-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.epigenetics-column {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(167, 139, 250, 0.05);
}

.column-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.column-header h4 {
    color: #5B6FB8;
    font-size: 1.3rem;
    margin: 0;
    font-family: 'Cinzel', serif;
}

.connection-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.connection-list li {
    padding: 0.5rem 0;
    color: #718096;
    position: relative;
    padding-left: 1.5rem;
}

.connection-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #C4B5FD;
    font-weight: bold;
}

.connection-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.connection-arrow span {
    font-size: 0.9rem;
    color: #FBCFE8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.epigenetics-explanation {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #718096;
    margin: 0;
}

/* Königsweg Section */
.koenigsweg-section {
    background: linear-gradient(180deg, #F8F9FF 0%, #FFFFFF 100%);
}

.koenigsweg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.koenigsweg-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(167, 139, 250, 0.12);
    transition: all 0.3s ease;
}

.koenigsweg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(167, 139, 250, 0.2);
}

.koenigsweg-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(167, 139, 250, 0.15);
}

.koenigsweg-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #5B6FB8;
}

.koenigsweg-card p {
    color: #718096;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #718096;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #C4B5FD;
    font-weight: bold;
}

/* Principle Section */
.principle-section {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.05), rgba(251, 207, 232, 0.05));
    padding: 6rem 0;
}

.principle-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-icon {
    margin-bottom: 1.5rem;
    color: #FBCFE8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.principle-quote {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    line-height: 1.5;
    color: #5B6FB8;
    margin-bottom: 2rem;
    font-style: italic;
    padding: 0 2rem;
}

.principle-explanation {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(167, 139, 250, 0.12);
    text-align: left;
}

.principle-explanation p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #718096;
}

.principle-explanation p:last-child {
    margin-bottom: 0;
}

.principle-explanation strong {
    color: #A78BFA;
}

/* Remote Section */
.remote-section {
    background: white;
}

.energy-waves-visual {
    margin: 2rem auto 3rem;
    max-width: 800px;
    text-align: center;
}

.energy-waves-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(167, 139, 250, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.energy-waves-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(167, 139, 250, 0.25);
}

.remote-content {
    max-width: 1000px;
    margin: 0 auto;
}

.remote-explanation {
    margin-bottom: 3rem;
}

.remote-explanation h3 {
    color: #5B6FB8;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.remote-explanation p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #718096;
    margin-bottom: 1rem;
}

.remote-process {
    margin-bottom: 3rem;
}

.remote-process h3 {
    color: #5B6FB8;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
}

.process-steps {
    display: grid;
    gap: 2rem;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #A78BFA, #C4B5FD);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #5B6FB8;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step-content p {
    color: #718096;
    line-height: 1.7;
}

.remote-benefits h3 {
    color: #5B6FB8;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.05), rgba(251, 207, 232, 0.05));
    border-radius: 16px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(167, 139, 250, 0.15);
}

.benefit-icon {
    margin-bottom: 1rem;
    color: #A78BFA;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-item h4 {
    color: #5B6FB8;
    font-size: 1.1rem;
}

/* Package Section */
.package-section {
    background: linear-gradient(180deg, #FFF9F5 0%, #FFFBF0 100%);
    position: relative;
    overflow: hidden;
}

.package-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(251, 191, 36, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.package-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.package-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 251, 240, 0.95));
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15), 0 0 60px rgba(251, 191, 36, 0.1);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.package-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 3px;
    background: linear-gradient(135deg, #10B981, #FBBF24, #10B981);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.package-price {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #10B981 0%, #14B8A6 25%, #FBBF24 50%, #F59E0B 75%, #10B981 100%);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    border-radius: 24px;
    color: white;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3), 0 0 40px rgba(251, 191, 36, 0.2);
    position: relative;
    overflow: hidden;
}

.package-price::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(-25%, -25%) scale(0.8); opacity: 0; }
    50% { transform: translate(0%, 0%) scale(1); opacity: 1; }
}

.price-amount {
    display: block;
    font-size: 4.5rem;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.price-currency {
    display: block;
    font-size: 1.5rem;
    margin-top: 0.5rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.package-title {
    text-align: center;
    font-size: 2rem;
    color: #5B6FB8;
    margin-bottom: 1.5rem;
}

.package-description {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #718096;
    margin-bottom: 3rem;
}

.package-features,
.package-process {
    margin-bottom: 3rem;
}

.package-features h4,
.package-process h4 {
    background: linear-gradient(135deg, #10B981, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.package-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.package-features li {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(251, 191, 36, 0.05));
    border-radius: 12px;
    border-left: 3px solid #10B981;
    color: #4A5568;
    transition: all 0.3s ease;
}

.package-features li:hover {
    transform: translateX(5px);
    border-left-color: #FBBF24;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.15);
}

.process-timeline {
    display: grid;
    gap: 2rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.03), rgba(251, 191, 36, 0.03));
    border-radius: 16px;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.12);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10B981, #14B8A6, #FBBF24);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    position: relative;
}

.timeline-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10B981, #FBBF24);
    z-index: -1;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.timeline-content h5 {
    background: linear-gradient(135deg, #10B981, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content p {
    color: #718096;
    line-height: 1.7;
    margin: 0;
}

.package-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Science Section */
.synthesis-section {
    background: white;
}

.synthesis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.synthesis-column h3 {
    color: #A78BFA;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.synthesis-list {
    list-style: none;
}

.synthesis-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: #718096;
    line-height: 1.7;
    border-bottom: 1px solid rgba(167, 139, 250, 0.1);
}

.synthesis-list li:last-child {
    border-bottom: none;
}

.synthesis-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #C4B5FD;
    font-weight: bold;
}

.synthesis-list strong {
    color: #5B6FB8;
    font-weight: 600;
}

.science-outro {
    margin-top: 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #718096;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, #F8F9FF 0%, #FFFFFF 100%);
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: start;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(167, 139, 250, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(167, 139, 250, 0.3);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #718096;
}

.about-text strong {
    color: #A78BFA;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-credentials {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.05), rgba(251, 207, 232, 0.05));
    border-radius: 16px;
}

.about-credentials h4 {
    color: #A78BFA;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.about-credentials ul {
    list-style: none;
}

.about-credentials li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #718096;
}

.about-credentials li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #C4B5FD;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.08), rgba(251, 207, 232, 0.08));
    padding: 6rem 0;
}

.cta-box {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-box h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #5B6FB8;
}

.cta-box > p {
    text-align: center;
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 3rem;
}

.cta-options {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
}

.cta-option {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(167, 139, 250, 0.12);
}

.cta-option h3 {
    color: #5B6FB8;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    text-align: center;
}

.cta-option > p {
    color: #718096;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cta-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C4B5FD;
    font-size: 1.2rem;
    font-weight: 600;
    font-style: italic;
}

.calendly-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #A78BFA, #C4B5FD);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(167, 139, 250, 0.3);
}

.calendly-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(167, 139, 250, 0.4);
}

/* Contact Form */
.form-intro {
    text-align: center;
    color: #718096;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    width: 100%;
}

.form-field {
    display: grid;
    gap: 0.75rem;
}

.form-field label {
    color: #A78BFA;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.form-field label svg {
    flex-shrink: 0;
}

.form-field input,
.form-field textarea {
    padding: 1rem 1.25rem;
    border: 2px solid rgba(167, 139, 250, 0.15);
    border-radius: 12px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(251, 207, 232, 0.02));
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(167, 139, 250, 0.05);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #A78BFA;
    background: white;
    box-shadow: 0 4px 16px rgba(167, 139, 250, 0.15);
    transform: translateY(-1px);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #CBD5E0;
    font-style: italic;
}

.form-field textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.btn-submit {
    margin-top: 1rem;
    padding: 1.1rem 2.5rem;
    background: linear-gradient(135deg, #A78BFA, #C4B5FD);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(167, 139, 250, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(167, 139, 250, 0.4);
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
}

.btn-submit svg {
    transition: transform 0.3s ease;
}

.btn-submit:hover svg {
    transform: translateX(3px);
}

.contact-info {
    margin-top: 4rem;
    text-align: center;
}

.contact-info h3 {
    color: #5B6FB8;
    margin-bottom: 2rem;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(167, 139, 250, 0.08);
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-item a {
    color: #A78BFA;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #8B5CF6;
}

.contact-item span {
    color: #718096;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #A78BFA, #C4B5FD);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.7;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .synthesis-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-options {
        grid-template-columns: 1fr;
    }
    
    .cta-divider {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-text {
        font-size: 1.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .epigenetics-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .connection-arrow {
        transform: rotate(90deg);
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .principle-quote {
        font-size: 1.5rem;
    }
    
    .koenigsweg-grid,
    .problem-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .package-box {
        padding: 2rem;
    }
    
    .price-amount {
        font-size: 3rem;
    }
}



/* Conscious Living Visual */
.conscious-living-visual {
    margin-top: 4rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.conscious-couple-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.25), 0 0 60px rgba(167, 139, 250, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #10B981, #FBBF24, #A78BFA) border-box;
}

.conscious-couple-image:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 50px rgba(251, 191, 36, 0.35), 0 0 80px rgba(167, 139, 250, 0.25);
}

.conscious-caption {
    margin-top: 1.5rem;
    font-size: 1.15rem;
    font-style: italic;
    color: #6B7FBD;
    line-height: 1.8;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

/* Enhanced Gold Accents */
.section-title {
    background: linear-gradient(135deg, #10B981, #FBBF24, #A78BFA, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg, #10B981, #FBBF24, #A78BFA);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-submit {
    background: linear-gradient(135deg, #10B981, #FBBF24, #A78BFA);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.footer {
    background: linear-gradient(135deg, #10B981, #FBBF24, #A78BFA, #EC4899);
}

/* Enhanced Energy Waves Image */
.energy-waves-image {
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #10B981, #FBBF24, #A78BFA) border-box;
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.25), 0 0 60px rgba(16, 185, 129, 0.15);
}

.energy-waves-image:hover {
    box-shadow: 0 16px 50px rgba(251, 191, 36, 0.35), 0 0 80px rgba(16, 185, 129, 0.25);
}



/* Energetic Being Section */
.energetic-being-section {
    background: linear-gradient(180deg, #FFF9F5 0%, #FFFFFF 100%);
    padding: 5rem 2rem;
}

.energetic-being-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.energetic-being-image-wrapper {
    position: relative;
}

.energetic-being-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 16px 50px rgba(16, 185, 129, 0.2), 0 0 80px rgba(251, 191, 36, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 4px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #10B981, #FBBF24, #A78BFA) border-box;
}

.energetic-being-image:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3), 0 0 100px rgba(251, 191, 36, 0.25);
}

.energetic-being-text {
    padding: 2rem;
}

.energetic-being-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.3;
    background: linear-gradient(135deg, #10B981, #14B8A6, #FBBF24, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.energetic-being-description {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #4A5568;
    margin-bottom: 1.5rem;
}

.energetic-being-description:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .energetic-being-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .energetic-being-title {
        font-size: 2rem;
    }
    
    .energetic-being-description {
        font-size: 1.1rem;
    }
}

