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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Navigation */
.nav-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1a1a1a;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #3498db;
}

/* Hero Section */
.hero-immersive {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e8ba3 100%);
    margin-top: 70px;
    padding: 4rem 2rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    color: white;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtext {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.5;
}

/* Content Sections */
.content-narrow {
    max-width: 750px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.content-centered {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

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

.content-form {
    max-width: 650px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

/* Typography */
h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Story Sections */
.story-intro {
    background-color: #f8f9fa;
}

.problem-amplification {
    padding: 6rem 2rem;
}

.split-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.content-text {
    flex: 1;
}

.content-visual {
    flex: 1;
}

.visual-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.insight-reveal {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    text-align: center;
}

.insight-text {
    font-size: 1.25rem;
    font-weight: 400;
    color: #34495e;
}

/* Features Grid */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-title-center {
    text-align: center;
    margin-bottom: 3rem;
}

/* Testimonials */
.testimonials-inline {
    background-color: #f8f9fa;
}

.testimonial {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: white;
    border-left: 4px solid #3498db;
    border-radius: 8px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #34495e;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
}

/* Trust Section */
.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.trust-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    text-align: center;
    padding: 2rem;
}

.trust-item h3 {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 1rem;
}

/* Services Overview */
.services-overview {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 2rem;
}

.services-overview h2,
.services-overview h3 {
    color: white;
}

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

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    padding: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.service-item h3 {
    color: white;
    margin-bottom: 1rem;
}

.service-item p {
    margin-bottom: 1.5rem;
}

.service-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-top: 1rem;
}

/* Urgency Section */
.urgency-section {
    background-color: #fff3cd;
    padding: 4rem 2rem;
}

.urgency-box {
    text-align: center;
    padding: 3rem;
    background-color: white;
    border: 3px solid #ffc107;
    border-radius: 12px;
}

.urgency-box strong {
    color: #e74c3c;
}

/* How It Works */
.how-it-works {
    background-color: #f8f9fa;
}

.steps-flow {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.step h3 {
    margin-bottom: 0.5rem;
}

/* Form Section */
.final-cta-section {
    background: linear-gradient(to bottom, #2c3e50, #34495e);
    color: white;
    padding: 6rem 2rem;
}

.final-cta-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

.final-cta-section > div > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.15rem;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

/* Buttons / CTAs */
.cta-primary,
.cta-secondary,
.cta-urgency,
.cta-submit {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
    text-align: center;
}

.cta-primary {
    background-color: #3498db;
    color: white;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.4);
}

.cta-secondary {
    background-color: white;
    color: #3498db;
    border: 2px solid #3498db;
}

.cta-secondary:hover {
    background-color: #3498db;
    color: white;
}

.cta-urgency {
    background-color: #e74c3c;
    color: white;
}

.cta-urgency:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.cta-submit {
    background-color: #27ae60;
    color: white;
    width: 100%;
    margin-top: 1rem;
}

.cta-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

/* Guarantee Section */
.guarantee-section {
    background-color: #e8f5e9;
    text-align: center;
}

/* Footer */
.site-footer {
    background-color: #2c3e50;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1 1 250px;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #3498db;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta-button {
    display: inline-block;
    padding: 1.2rem 2rem;
    background-color: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.6);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept,
.cookie-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #27ae60;
    color: white;
}

.cookie-accept:hover {
    background-color: #229954;
}

.cookie-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8rem 2rem 4rem;
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
}

/* About Page Styles */
.about-story,
.philosophy-section {
    background-color: white;
}

.values-section {
    background-color: #f8f9fa;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-item {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
    padding: 2.5rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.team-section {
    background-color: white;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
    justify-content: center;
}

.team-member {
    flex: 0 1 280px;
    text-align: center;
}

.team-photo-placeholder img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.team-role {
    color: #7f8c8d;
    font-size: 1rem;
}

.cta-about {
    background-color: #f8f9fa;
}

.cta-box-alt {
    text-align: center;
    padding: 4rem 3rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Services Page Styles */
.services-detailed {
    padding: 4rem 2rem;
}

.service-detail-card {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.service-reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 45%;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
}

.service-detail-content {
    flex: 1;
}

.service-description {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    display: block;
    margin-bottom: 1.5rem;
}

.pricing-note {
    background-color: #fff3cd;
    text-align: center;
}

.cta-services {
    background-color: #f8f9fa;
}

/* Contact Page Styles */
.contact-info {
    padding: 4rem 2rem;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    color: #3498db;
    margin-bottom: 0.8rem;
}

.contact-item a {
    color: #3498db;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.note-text {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

.map-placeholder img {
    width: 100%;
    border-radius: 8px;
}

.contact-approach {
    background-color: #f8f9fa;
}

.contact-faq {
    padding: 4rem 2rem;
}

.faq-list {
    margin-top: 3rem;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.faq-item h3 {
    color: #3498db;
    margin-bottom: 1rem;
}

.cta-contact {
    background-color: #f8f9fa;
}

/* Thanks Page Styles */
.thanks-hero {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    padding: 8rem 2rem 4rem;
    text-align: center;
    margin-top: 70px;
}

.thanks-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    background-color: white;
    color: #27ae60;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    font-weight: 700;
}

.thanks-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
}

.thanks-content {
    padding: 4rem 2rem;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.step-text h3 {
    margin-bottom: 0.5rem;
}

.thanks-service-info {
    background-color: #e8f5e9;
    text-align: center;
}

.service-selected-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #27ae60;
}

.thanks-additional {
    background-color: white;
}

.preparation-list {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.preparation-list li {
    margin-bottom: 0.8rem;
}

.thanks-explore {
    background-color: #f8f9fa;
    text-align: center;
}

.thanks-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-content {
    padding: 4rem 2rem;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.8rem;
}

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-headline {
        font-size: 2.2rem;
    }

    .hero-subtext {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .split-content {
        flex-direction: column;
        gap: 2rem;
    }

    .feature-card {
        flex: 1 1 100%;
    }

    .trust-item {
        flex: 1 1 100%;
    }

    .step {
        flex-direction: column;
        gap: 1rem;
    }

    .service-detail-card {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }

    .service-reverse {
        flex-direction: column;
    }

    .service-image {
        flex: 1 1 100%;
    }

    .contact-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta-button {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}