/* 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: #ffffff;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

h2 {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
}

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

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

p {
    margin-bottom: 1rem;
    font-size: 1.0625rem;
    color: #4a5568;
}

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

/* Navigation */
.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

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

.nav-links a {
    color: #4a5568;
    font-weight: 500;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: #2563eb;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9375rem;
}

.btn-accept {
    background: #10b981;
    color: #ffffff;
}

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

.btn-reject {
    background: #6b7280;
    color: #ffffff;
}

.btn-reject:hover {
    background: #4b5563;
}

/* Split Screen Layouts */
.split-container {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

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

.split-text,
.split-image,
.split-form {
    flex: 1;
    min-width: 0;
}

.split-text {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text.dark-bg {
    background: #1a1a1a;
    color: #ffffff;
}

.split-text.dark-bg h2,
.split-text.dark-bg h3,
.split-text.dark-bg p {
    color: #ffffff;
}

.split-image {
    background: #f3f4f6;
    position: relative;
    overflow: hidden;
}

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

/* Hero Split */
.hero-split {
    min-height: 600px;
}

.hero-content {
    display: flex;
    min-height: 600px;
}

.hero-text {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.hero-text h1,
.hero-text p {
    color: #ffffff;
}

.hero-visual {
    flex: 1;
    background: #f3f4f6;
    position: relative;
}

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 0;
    text-align: center;
    color: #ffffff;
}

.page-hero h1 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons and CTAs */
.cta-primary,
.cta-secondary,
.cta-tertiary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-primary {
    background: #2563eb;
    color: #ffffff;
}

.cta-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.cta-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.cta-secondary:hover {
    background: #2563eb;
    color: #ffffff;
}

.cta-tertiary {
    background: #10b981;
    color: #ffffff;
}

.cta-tertiary:hover {
    background: #059669;
}

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

.intro-section,
.problem-section,
.trust-section,
.story-section,
.evolution-section,
.values-detail,
.services-intro,
.visit-section {
    padding: 0;
}

/* Values Grid */
.values-grid {
    background: #f9fafb;
}

.values-grid h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.value-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    margin-bottom: 1rem;
}

/* Problem Section */
.problem-list {
    margin: 2rem 0;
}

.problem-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #ffffff;
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

.emphasis {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 2rem;
}

/* Services */
.services-highlight {
    background: #f9fafb;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h3 {
    margin: 0;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #10b981;
    white-space: nowrap;
}

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

.service-item ul {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-item ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-item ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.service-select {
    background: #2563eb;
    color: #ffffff;
    padding: 0.875rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    width: 100%;
    margin-top: auto;
}

.service-select:hover {
    background: #1d4ed8;
}

/* Testimonials */
.testimonials-section {
    background: #1a1a1a;
    color: #ffffff;
}

.testimonials-section h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.quote {
    font-size: 1.0625rem;
    font-style: italic;
    color: #e5e7eb;
    margin-bottom: 1rem;
}

.author {
    font-weight: 600;
    color: #d1d5db;
}

/* Process Steps */
.process-section {
    background: #f9fafb;
}

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
    min-width: 80px;
}

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

/* Form */
.cta-form-section {
    padding: 0;
}

.split-form {
    background: #f9fafb;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-form {
    max-width: 500px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    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: #2563eb;
}

.btn-submit {
    background: #2563eb;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
}

.btn-submit:hover {
    background: #1d4ed8;
}

.guarantee {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Text Center Sections */
.text-center {
    text-align: center;
}

.final-trust {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.final-trust h2,
.final-trust p {
    color: #ffffff;
}

/* Team Section */
.team-section {
    background: #ffffff;
}

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

.team-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    background: #f3f4f6;
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Values Detail */
.value-item {
    margin-bottom: 2rem;
}

.value-item h3 {
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.value-item p {
    color: #e5e7eb;
}

/* Certifications */
.certifications {
    background: #f9fafb;
}

.certifications h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.cert-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.cert-item {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cert-item h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

/* Stats */
.numbers-section {
    background: #1a1a1a;
    color: #ffffff;
}

.numbers-section h2 {
    color: #ffffff;
    margin-bottom: 3rem;
}

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

.stat {
    text-align: center;
    min-width: 200px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #d1d5db;
    font-size: 1.125rem;
}

/* CTA Sections */
.cta-about,
.cta-services,
.cta-contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.cta-about h2,
.cta-services h2,
.cta-contact h2 {
    color: #ffffff;
}

.cta-about p,
.cta-services p,
.cta-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Services Detail */
.detailed-services {
    background: #ffffff;
}

.service-detail {
    margin-bottom: 5rem;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.price-highlight {
    font-size: 1.75rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.detailed-list {
    margin: 1.5rem 0;
}

.detailed-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
}

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

/* Guarantee Section */
.guarantee-section {
    background: #f9fafb;
}

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

.guarantee-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.guarantee-item {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.guarantee-item h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

/* Contact */
.contact-content {
    padding: 0;
}

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

.contact-info h3 {
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.contact-info a {
    color: #2563eb;
    text-decoration: underline;
}

.contact-info a:hover {
    color: #1d4ed8;
}

.note {
    font-size: 0.9375rem;
    color: #6b7280;
    font-style: italic;
}

/* FAQ */
.faq-section {
    background: #f9fafb;
}

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

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

.faq-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Thanks Page */
.thanks-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 0;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
    color: #ffffff;
}

.success-icon {
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    color: #ffffff;
}

.lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.service-confirmation {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 6px;
    margin-top: 1.5rem;
    display: inline-block;
    color: #ffffff;
}

/* Next Steps */
.next-steps {
    padding: 5rem 0;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.step-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.step-num {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 1.5rem;
}

/* Meanwhile */
.meanwhile {
    background: #f9fafb;
}

/* Reassurance */
.reassurance {
    background: #ffffff;
}

.reassurance-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.reassurance-item {
    flex: 1;
    min-width: 280px;
    background: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
}

.reassurance-item h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.last-updated {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    color: #1a1a1a;
}

.legal-content h3 {
    margin-top: 2rem;
    color: #2c3e50;
}

.legal-content h4 {
    margin-top: 1.5rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content ul li {
    list-style: disc;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1d4ed8;
}

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

.cookies-table thead {
    background: #f3f4f6;
}

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

.cookies-table th {
    font-weight: 600;
    color: #1a1a1a;
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #d1d5db;
    padding: 3rem 0 1rem;
}

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #9ca3af;
}

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

.footer-section a {
    color: #9ca3af;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 0;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.9375rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9375rem;
    }

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

    .split-text,
    .hero-text {
        padding: 3rem 1.5rem;
    }

    .split-image,
    .hero-visual {
        min-height: 300px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .values-cards,
    .testimonials-grid,
    .team-grid,
    .cert-grid,
    .guarantee-grid,
    .reassurance-grid {
        flex-direction: column;
    }

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

    .step-number {
        min-width: auto;
    }

    section {
        padding: 3rem 0;
    }

    .stats-grid {
        gap: 2rem;
    }

    .cta-group {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .logo {
        width: 100%;
        margin-bottom: 1rem;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        gap: 0.75rem;
        font-size: 0.875rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}