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

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;
}

/* Split-Screen Navigation */
.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-right {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-right a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-cta {
    background: #3498db;
    color: #ffffff !important;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
}

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

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content, .hero-visual {
    flex: 1;
    padding: 4rem 5%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.hero-content p {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    max-width: 550px;
}

.hero-visual {
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.btn-primary-large {
    padding: 1.3rem 3rem;
    font-size: 1.2rem;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #3498db;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid #3498db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #3498db;
    color: #ffffff;
}

.btn-text {
    color: #3498db;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-text:hover {
    gap: 0.8rem;
}

.btn-inline {
    color: #3498db;
    font-weight: 600;
    border-bottom: 2px solid transparent;
}

.btn-inline:hover {
    border-bottom-color: #3498db;
}

/* Split Sections */
.intro-split, .trust-split, .story-split, .values-split, .technology-split, .contact-cta-split, .final-cta-split {
    display: flex;
    align-items: center;
}

.intro-split.reverse, .values-split.reverse {
    flex-direction: row-reverse;
}

.intro-content, .intro-visual, .trust-content, .trust-visual, .story-content, .story-visual, .values-content, .values-visual, .technology-content, .technology-visual, .cta-content, .cta-visual, .final-cta-content, .final-cta-visual {
    flex: 1;
    padding: 5rem 5%;
}

.intro-visual, .trust-visual, .story-visual, .values-visual, .technology-visual, .cta-visual, .final-cta-visual {
    background: #f8f9fa;
}

.intro-visual img, .trust-visual img, .story-visual img, .values-visual img, .technology-visual img, .cta-visual img, .final-cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.intro-content h2, .trust-content h2, .story-content h2, .values-content h2, .technology-content h2, .final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.intro-content p, .trust-content p, .story-content p, .values-content p, .technology-content p, .final-cta-content p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.values-list li {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Services Preview */
.services-preview {
    padding: 6rem 5%;
    background: #f8f9fa;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-center h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.section-header-center p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card-split {
    display: flex;
    background: #ffffff;
    margin-bottom: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

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

.service-visual, .service-info {
    flex: 1;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.service-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.service-info p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    display: block;
}

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

/* Testimonials */
.testimonials-section {
    padding: 6rem 5%;
    background: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a252f;
}

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

.testimonial-card {
    flex: 1;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

/* Form Section */
.form-section {
    padding: 6rem 5%;
    background: #f8f9fa;
}

.form-split {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.form-intro, .form-container {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.form-intro p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.form-benefits li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.form-container {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e1e8ed;
    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: #3498db;
}

.form-group textarea {
    resize: vertical;
}

/* Page Hero */
.page-hero-split {
    display: flex;
    min-height: 50vh;
    align-items: center;
    background: #f8f9fa;
}

.page-hero-content, .page-hero-visual {
    flex: 1;
    padding: 4rem 5%;
}

.page-hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

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

/* Service Detail Pages */
.services-intro {
    padding: 4rem 5%;
    text-align: center;
    background: #ffffff;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.services-intro p {
    font-size: 1.15rem;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
    background: #f8f9fa;
}

.service-detail-visual, .service-detail-content {
    flex: 1;
    padding: 3rem 5%;
}

.service-detail-visual img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.service-detail-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

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

.service-detail-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

/* Additional Services */
.additional-services {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.additional-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a252f;
}

.additional-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.additional-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a252f;
}

.additional-item p {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
}

.pricing-note {
    padding: 4rem 5%;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-note h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.pricing-note p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.cta-services, .cta-about {
    padding: 5rem 5%;
    text-align: center;
    background: #3498db;
    color: #ffffff;
}

.cta-services h2, .cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-services p, .cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-services .btn-primary, .cta-about .btn-primary {
    background: #ffffff;
    color: #3498db;
}

.cta-services .btn-primary:hover, .cta-about .btn-primary:hover {
    background: #ecf0f1;
}

/* Contact Page */
.contact-info-split {
    display: flex;
    padding: 4rem 5%;
    gap: 4rem;
}

.contact-details, .contact-map {
    flex: 1;
}

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

.contact-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.contact-block p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
}

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

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

.note {
    font-size: 0.95rem;
    color: #95a5a6;
    font-style: italic;
}

.contact-map img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.map-note {
    font-size: 0.95rem;
    color: #5a6c7d;
    text-align: center;
}

.access-info {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.access-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a252f;
}

.access-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.access-item {
    flex: 1;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

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

.access-item p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 0.5rem;
}

.faq-section {
    padding: 5rem 5%;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a252f;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a252f;
}

.faq-item p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 5rem 5%;
    background: #ffffff;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a252f;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 300px;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    color: #1a252f;
}

.team-member p {
    padding: 0 1.5rem 1rem;
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.team-bio {
    font-size: 0.95rem !important;
    padding-bottom: 1.5rem !important;
}

/* Thanks Page */
.thanks-section {
    padding: 6rem 5%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.thanks-lead {
    font-size: 1.3rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

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

.thanks-info p {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a252f;
}

.thanks-info ul {
    list-style: none;
}

.thanks-info li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #5a6c7d;
    position: relative;
}

.thanks-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

.service-confirmation {
    margin: 2rem 0;
}

.service-selected {
    font-size: 1.1rem;
    color: #3498db;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2.5rem 0;
}

.thanks-contact {
    margin-top: 2rem;
    color: #5a6c7d;
}

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

/* Legal Pages */
.legal-page {
    padding: 4rem 10%;
    max-width: 1100px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1a252f;
}

.updated {
    color: #95a5a6;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

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

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-content h4 {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.6rem;
    color: #34495e;
}

.legal-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.legal-content li {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-content a {
    color: #3498db;
    font-weight: 600;
}

.legal-content a:hover {
    text-decoration: underline;
}

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

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

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

.gdpr-table td, .cookies-table td {
    color: #5a6c7d;
}

.legal-back {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e1e8ed;
}

.legal-back a {
    color: #3498db;
    font-weight: 600;
}

.legal-back a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #1a252f;
    color: #ffffff;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-col p, .footer-col a {
    color: #95a5a6;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2c3e50;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn-cookie-accept {
    background: #2ecc71;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #27ae60;
}

.btn-cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-cookie-reject:hover {
    background: #ffffff;
    color: #2c3e50;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #3498db;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(52, 152, 219, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.sticky-cta:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(52, 152, 219, 0.5);
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .hero-split, .intro-split, .trust-split, .story-split, .values-split, .technology-split, .contact-cta-split, .final-cta-split, .page-hero-split, .service-detail-split, .form-split, .contact-info-split {
        flex-direction: column;
    }

    .intro-split.reverse, .values-split.reverse, .service-detail-split.reverse {
        flex-direction: column;
    }

    .service-card-split, .service-card-split.reverse {
        flex-direction: column;
    }

    .hero-content h1, .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-right {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .testimonials-split {
        flex-direction: column;
    }

    .access-grid, .team-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .hero-content, .hero-visual, .intro-content, .intro-visual {
        padding: 2rem 5%;
    }

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

    .nav-cta {
        display: none;
    }

    .legal-page {
        padding: 2rem 5%;
    }
}