/* 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Navigation */
.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px 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;
    flex-wrap: wrap;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-menu a {
    color: #555;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2c3e50;
    border-bottom-color: #e74c3c;
}

.nav-cta {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Hero Split Screen */
.hero-split {
    display: flex;
    min-height: 100vh;
    margin-top: 80px;
    flex-direction: column;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background: #f8f9fa;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-lead {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-visual {
    flex: 1;
    min-height: 400px;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-service,
.btn-submit {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #e74c3c;
    color: white;
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

.btn-secondary:hover {
    background: #e74c3c;
    color: white;
}

.btn-service {
    width: 100%;
    background: #3498db;
    color: white;
    margin-top: 1rem;
}

.btn-service:hover {
    background: #2980b9;
}

.btn-submit {
    width: 100%;
    background: #27ae60;
    color: white;
    font-size: 1.125rem;
}

.btn-submit:hover {
    background: #229954;
}

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

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

.container-split {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-direction: column;
}

.container-split.reverse {
    flex-direction: column-reverse;
}

.split-left,
.split-right {
    flex: 1;
}

/* Sections */
section {
    padding: 5rem 0;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.section-lead {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 3rem;
    text-align: center;
}

.large-text {
    font-size: 1.375rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 2rem;
}

/* Insight Section */
.insight-section {
    background: white;
    padding: 5rem 0;
}

/* Problem Cards */
.problem-amplify {
    background: #ecf0f1;
    padding: 5rem 0;
}

.problem-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-direction: column;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.problem-card h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Story Section */
.story-section {
    background: white;
}

.insight-list {
    list-style: none;
    margin: 2rem 0;
}

.insight-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

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

/* Transformation */
.transformation {
    background: #f8f9fa;
}

.benefits-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-direction: column;
}

.benefit-item.reverse {
    flex-direction: column-reverse;
}

.benefit-visual {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Testimonials */
.testimonials {
    background: white;
    padding: 5rem 0;
}

.testimonial-cards {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-direction: column;
}

.testimonial {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #666;
    font-style: normal;
}

/* Services */
.services-preview {
    background: #ecf0f1;
    padding: 5rem 0;
}

.services-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    flex-direction: column;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

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

.service-card.featured {
    border: 3px solid #e74c3c;
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.service-features span {
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 5px;
    font-size: 0.875rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

/* Forms */
.cta-section {
    background: white;
    padding: 5rem 0;
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    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;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

/* Urgency Section */
.urgency-section {
    background: #fff3cd;
    padding: 3rem 0;
}

.urgency-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid #f39c12;
}

.urgency-box h3 {
    color: #f39c12;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-direction: column;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col 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: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta button {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta button:hover {
    background: #c0392b;
    transform: scale(1.05);
}

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

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

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

.cookie-content p {
    margin: 0;
}

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

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

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

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

.btn-accept:hover {
    background: #229954;
}

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

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

/* Page Hero */
.page-hero {
    background: #f8f9fa;
    padding: 8rem 0 4rem;
    margin-top: 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* About Page */
.about-story,
.philosophy,
.team-section,
.values-section {
    padding: 5rem 0;
}

.philosophy {
    background: #f8f9fa;
}

.principles {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-direction: column;
}

.principle-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.principle-item h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.team-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-direction: column;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-role {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.numbers-section {
    background: #2c3e50;
    color: white;
    padding: 5rem 0;
}

.numbers-section h2 {
    color: white;
    text-align: center;
}

.stats-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-direction: column;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #ecf0f1;
}

.values-list {
    list-style: none;
    margin: 2rem 0;
}

.values-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    line-height: 1.8;
}

.cta-inline {
    background: #3498db;
    padding: 5rem 0;
}

.cta-box {
    text-align: center;
    color: white;
}

.cta-box h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-box p {
    margin-bottom: 2rem;
}

/* Services Detailed */
.services-detailed {
    padding: 3rem 0;
}

.service-detail {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
    flex-direction: column;
}

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

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

.service-detail-visual {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.service-badge {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.service-badge.highlight {
    background: #e74c3c;
}

.service-intro {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
}

.service-benefits {
    list-style: none;
    margin: 1.5rem 0;
}

.service-benefits li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

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

.service-pricing-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.service-pricing-box.highlight {
    background: #fff3cd;
    border: 2px solid #f39c12;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 0.5rem;
}

.price-note {
    color: #666;
    margin-bottom: 1.5rem;
}

.featured-service {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.premium-service {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
}

.premium-service h2,
.premium-service h3 {
    color: white;
}

.premium-service .service-intro,
.premium-service p,
.premium-service li {
    color: rgba(255, 255, 255, 0.9);
}

/* Comparison */
.comparison-section {
    background: #ecf0f1;
    padding: 5rem 0;
}

.comparison-grid {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    flex-direction: column;
}

.comparison-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    flex: 1;
    min-width: 250px;
}

.comparison-card h3 {
    font-size: 1.125rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.comparison-result {
    margin-top: 1rem;
    color: #e74c3c;
    font-weight: 600;
}

/* FAQ */
.faq-section {
    background: white;
    padding: 5rem 0;
}

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

.faq-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

/* Contact */
.contact-main {
    padding: 3rem 0;
}

.contact-split {
    display: flex;
    gap: 3rem;
    flex-direction: column;
}

.contact-info {
    flex: 1;
}

.contact-map {
    flex: 1;
}

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

.contact-block h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-detail {
    line-height: 1.8;
    color: #555;
}

.contact-detail a {
    color: #3498db;
    font-weight: 600;
}

.contact-note {
    color: #999;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.map-placeholder {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.map-overlay {
    background: rgba(44, 62, 80, 0.9);
    color: white;
    padding: 1.5rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.map-overlay ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.contact-cta {
    background: #3498db;
    padding: 3rem 0;
}

.visit-info {
    padding: 5rem 0;
    background: #f8f9fa;
}

.preparation-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-direction: column;
}

.prep-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
}

.prep-item h3 {
    color: #e74c3c;
    margin-bottom: 0.75rem;
}

.faq-contact {
    padding: 5rem 0;
}

/* Thanks Page */
.thanks-hero {
    background: #f8f9fa;
    padding: 8rem 0 4rem;
    margin-top: 80px;
}

.thanks-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-lead {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 3rem;
}

.thanks-details {
    margin: 3rem 0;
}

.order-summary {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 1rem 0;
}

.service-price {
    font-size: 1.25rem;
    color: #27ae60;
    font-weight: 600;
}

.thanks-next {
    margin: 4rem 0;
    text-align: left;
}

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

.step-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    padding-left: 4rem;
}

.step-number {
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    width: 40px;
    height: 40px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.thanks-info {
    background: #fff3cd;
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
    text-align: left;
}

.checklist {
    list-style: none;
    margin-top: 1rem;
}

.checklist li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.checklist li:before {
    content: "□";
    position: absolute;
    left: 0;
    color: #3498db;
}

.thanks-contact {
    margin: 3rem 0;
}

.contact-email {
    font-size: 1.25rem;
    margin-top: 1rem;
}

.contact-email a {
    color: #3498db;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    flex-direction: column;
}

.testimonials-mini {
    padding: 5rem 0;
}

/* Legal Pages */
.legal-page {
    padding: 6rem 0 4rem;
    margin-top: 80px;
}

.update-date {
    color: #999;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-content {
    line-height: 1.8;
    color: #444;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.75rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #34495e;
    font-size: 1.25rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content ul {
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    margin: 0.5rem 0;
}

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

.legal-content a:hover {
    color: #2980b9;
}

.legal-footer {
    margin-top: 4rem;
    text-align: center;
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
}

.gdpr-table th,
.gdpr-table td,
.cookies-table th,
.cookies-table td {
    padding: 1rem;
    border: 1px solid #ddd;
    text-align: left;
}

.gdpr-table th,
.cookies-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-split {
        flex-direction: row;
    }

    .container-split {
        flex-direction: row;
    }

    .container-split.reverse {
        flex-direction: row-reverse;
    }

    .problem-grid {
        flex-direction: row;
    }

    .benefits-split .benefit-item {
        flex-direction: row;
    }

    .benefits-split .benefit-item.reverse {
        flex-direction: row-reverse;
    }

    .testimonial-cards {
        flex-direction: row;
    }

    .services-grid {
        flex-direction: row;
    }

    .footer-grid {
        flex-direction: row;
    }

    .cookie-content {
        flex-direction: row;
    }

    .principles {
        flex-direction: row;
    }

    .team-grid {
        flex-direction: row;
    }

    .stats-grid {
        flex-direction: row;
    }

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

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

    .comparison-grid {
        flex-direction: row;
    }

    .contact-split {
        flex-direction: row;
    }

    .preparation-grid {
        flex-direction: row;
    }

    .steps-grid {
        flex-direction: row;
    }

    .thanks-actions {
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    .nav-menu {
        display: none;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    section {
        padding: 3rem 0;
    }
}
