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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    border-bottom: 1px solid #e5e5e5;
}

.nav-left .logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

.nav-right a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a4a4a;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #1a1a1a;
}

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

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

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1a1a1a;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #333333;
}

.intro-split {
    display: flex;
    align-items: center;
    padding: 6rem 5%;
}

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

.intro-image {
    flex: 1;
    padding-right: 4rem;
}

.intro-text {
    flex: 1;
    padding-left: 4rem;
}

.intro-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.values-grid {
    padding: 6rem 8%;
    background: #f8f8f8;
}

.values-grid h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.cards-wrapper {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.value-card {
    flex: 1;
    max-width: 360px;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.showcase-split {
    display: flex;
    align-items: center;
    padding: 6rem 5%;
}

.showcase-content {
    flex: 1;
    padding-right: 5rem;
}

.showcase-content .label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    margin-bottom: 1rem;
}

.showcase-content h2 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.showcase-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.showcase-visual {
    flex: 1;
}

.link-arrow {
    display: inline-block;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 1rem;
    border-bottom: 2px solid #1a1a1a;
    transition: opacity 0.3s;
}

.link-arrow:hover {
    opacity: 0.7;
}

.testimonial-section {
    padding: 5rem 8%;
    background: #1a1a1a;
    color: #ffffff;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-container blockquote {
    font-size: 1.5rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-container cite {
    font-size: 1rem;
    font-style: normal;
    color: #cccccc;
}

.services-overview {
    padding: 6rem 8%;
}

.services-overview h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.services-split-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.service-item {
    flex: 1;
    min-width: 280px;
    max-width: 48%;
    padding: 2.5rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
}

.service-item h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.price-tag {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
}

.cta-center {
    text-align: center;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #1a1a1a;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.process-split {
    display: flex;
    align-items: flex-start;
    padding: 6rem 8%;
    background: #f8f8f8;
}

.process-left {
    flex: 1;
    padding-right: 4rem;
}

.process-left h2 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.process-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.process-right {
    flex: 1;
}

.process-step {
    padding: 1.5rem 0;
    border-bottom: 1px solid #d5d5d5;
}

.process-step:last-child {
    border-bottom: none;
}

.process-step strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.process-step p {
    font-size: 1.05rem;
    color: #4a4a4a;
}

.form-section {
    padding: 6rem 8%;
    background: #ffffff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
}

.form-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1rem;
    font-size: 1rem;
    border: 1px solid #d5d5d5;
    border-radius: 6px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 1.1rem 2.5rem;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.cta-banner {
    padding: 5rem 8%;
    background: #1a1a1a;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.cta-white {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #1a1a1a;
    font-weight: 600;
    border-radius: 6px;
    transition: opacity 0.3s;
}

.cta-white:hover {
    opacity: 0.9;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 4rem 8%;
    background: #f8f8f8;
    border-top: 1px solid #e5e5e5;
}

.footer-brand strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.footer-brand p {
    font-size: 0.95rem;
    color: #666;
}

.footer-nav,
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav a,
.footer-legal a {
    font-size: 0.95rem;
    color: #666;
    transition: color 0.3s;
}

.footer-nav a:hover,
.footer-legal a:hover {
    color: #1a1a1a;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 1000;
    display: none;
}

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

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

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

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

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

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

.btn-accept {
    background: #ffffff;
    color: #1a1a1a;
}

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

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

.services-detail-section {
    padding: 4rem 5%;
}

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

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

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.service-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    font-size: 1.05rem;
    color: #4a4a4a;
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
}

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

.service-pricing {
    display: flex;
    flex-direction: column;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.price-note {
    font-size: 0.95rem;
    color: #666;
}

.service-image {
    flex: 1;
}

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

.contact-info-section {
    padding: 5rem 8%;
    background: #f8f8f8;
}

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

.contact-card {
    flex: 1;
    max-width: 380px;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
}

.contact-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.contact-link {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    border-bottom: 2px solid #1a1a1a;
    transition: opacity 0.3s;
}

.contact-link:hover {
    opacity: 0.7;
}

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

.thanks-section {
    padding: 8rem 8%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
}

.thanks-container h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.thanks-service {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

.thanks-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.legal-page {
    padding: 4rem 8%;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 1rem;
    color: #999;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

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

.legal-container li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.legal-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
    text-align: center;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 3rem 5%;
    }

    .hero-left h1 {
        font-size: 2.4rem;
    }

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

    .intro-image,
    .intro-text {
        padding: 0;
        margin-bottom: 2rem;
    }

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

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

    .showcase-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

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

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

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

    .process-left {
        padding-right: 0;
        margin-bottom: 2rem;
    }

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

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

    .cookie-content p {
        margin-right: 0;
    }

    .nav-right {
        gap: 1rem;
    }

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

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

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

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

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

    .values-grid h2,
    .services-overview h2 {
        font-size: 2rem;
    }
}