* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a1a2e;
    --secondary: #0f3460;
    --accent: #e94560;
    --light: #f8f9fa;
    --dark: #16213e;
    --text: #2d3436;
    --gray: #636e72;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--light);
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: white;
    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: var(--primary);
    text-decoration: none;
}

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

.nav-right a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: var(--accent);
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-visual {
    flex: 1;
    height: 85vh;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(233, 69, 96, 0.3);
}

.split-reverse,
.split-normal {
    display: flex;
    margin: 0;
}

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

.split-content,
.split-visual {
    flex: 1;
}

.split-content {
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.split-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

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

.services-grid {
    padding: 5rem 5%;
    background: white;
}

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

.section-intro h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-intro p {
    font-size: 1.2rem;
    color: var(--gray);
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 2.5rem;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 400px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.btn-select {
    width: 100%;
    padding: 0.9rem;
    background: var(--secondary);
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 1rem;
}

.btn-select:hover {
    background: var(--primary);
}

.split-form {
    display: flex;
    background: var(--light);
    padding: 5rem 0;
}

.form-intro {
    flex: 1;
    padding: 3rem 5%;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.2rem;
    color: var(--gray);
}

.form-container {
    flex: 1;
    padding: 3rem 5%;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--accent);
    color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.trust-split {
    display: flex;
    background: var(--dark);
    color: white;
}

.trust-content {
    flex: 1;
    padding: 5rem 5%;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.trust-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.feature-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.feature-list li:before {
    content: "✓ ";
    color: var(--accent);
    font-weight: bold;
    margin-right: 0.5rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
}

.cta-secondary:hover {
    background: white;
    color: var(--dark);
}

.trust-visual {
    flex: 1;
}

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

.process-minimal {
    padding: 5rem 5%;
    background: white;
    text-align: center;
}

.process-minimal h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.step-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--gray);
}

.cta-final {
    padding: 5rem 5%;
    text-align: center;
    background: var(--light);
}

.cta-final h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(233, 69, 96, 0.3);
}

.footer-split {
    background: var(--primary);
    color: white;
    padding: 3rem 5%;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

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

.footer-col p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: white;
    text-decoration: none;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    transition: opacity 0.3s;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: white;
    padding: 1.5rem 5%;
    display: none;
    z-index: 2000;
    box-shadow: 0 -5px 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: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    flex: 1;
}

.cookie-content a {
    color: var(--accent);
}

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

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

.cookie-accept {
    background: var(--accent);
    color: white;
}

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

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.8;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1500;
}

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
    transition: transform 0.3s;
}

.sticky-cta a:hover {
    transform: scale(1.05);
}

.page-hero {
    padding: 5rem 5% 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
}

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

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story {
    padding: 5rem 0;
}

.values-section {
    padding: 5rem 5%;
    background: white;
    text-align: center;
}

.values-section h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.value-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 2rem;
    background: var(--light);
}

.value-item h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--gray);
}

.team-section {
    padding: 5rem 5%;
    background: var(--light);
    text-align: center;
}

.team-section h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.team-intro {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.service-detail {
    padding: 4rem 0;
}

.service-detail.alt {
    background: var(--light);
}

.detail-split {
    display: flex;
}

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

.detail-info {
    flex: 1;
    padding: 3rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-info h2 {
    font-size: 2.3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.detail-info ul {
    list-style: none;
    margin: 2rem 0;
}

.detail-info ul li {
    padding: 0.7rem 0;
    color: var(--gray);
}

.detail-info ul li:before {
    content: "→ ";
    color: var(--accent);
    font-weight: bold;
    margin-right: 0.5rem;
}

.price-box {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light);
    border-left: 4px solid var(--accent);
}

.price-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2rem;
    color: var(--accent);
    font-weight: 700;
}

.detail-visual {
    flex: 1;
}

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

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: white;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray);
}

.modal-close:hover {
    color: var(--accent);
}

.contact-split {
    display: flex;
    padding: 4rem 0;
}

.contact-info {
    flex: 1;
    padding: 3rem 5%;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

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

.info-block h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.info-block p {
    color: var(--gray);
    line-height: 1.8;
}

.info-block a {
    color: var(--accent);
    text-decoration: none;
}

.contact-visual {
    flex: 1;
}

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

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

.faq-section h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 3rem;
    text-align: center;
}

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

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

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--gray);
}

.thanks-hero {
    display: flex;
    min-height: 80vh;
    align-items: center;
}

.thanks-content {
    flex: 1;
    padding: 4rem 5%;
}

.thanks-content h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.thanks-content > p {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.thanks-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light);
    border-left: 4px solid var(--accent);
}

.selected-service {
    font-size: 1.1rem;
    color: var(--text);
}

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

.thanks-next h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

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

.thanks-next ul li {
    padding: 0.7rem 0;
    color: var(--gray);
}

.thanks-next ul li:before {
    content: "✓ ";
    color: var(--accent);
    font-weight: bold;
    margin-right: 0.5rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.thanks-visual {
    flex: 1;
}

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

.legal-content {
    padding: 4rem 5%;
    max-width: 900px;
    margin: 0 auto;
    background: white;
    min-height: 70vh;
}

.legal-content h1 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.legal-content .updated {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--text);
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--text);
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-content a {
    color: var(--accent);
    text-decoration: none;
}

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

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

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

.gdpr-table th,
.cookies-table th {
    background: var(--light);
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        gap: 1rem;
    }

    .hero-split,
    .split-reverse,
    .split-normal,
    .split-form,
    .trust-split,
    .contact-split,
    .thanks-hero,
    .detail-split {
        flex-direction: column;
    }

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

    .hero-visual,
    .split-visual,
    .trust-visual,
    .contact-visual,
    .thanks-visual,
    .detail-visual {
        height: auto;
        min-height: 300px;
    }

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

    .service-card {
        max-width: 100%;
    }

    .process-steps {
        flex-direction: column;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

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

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

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

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