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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    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;
}

/* Navigation - Split Style */
.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-right a {
    font-weight: 500;
    color: #1a1a1a;
    position: relative;
}

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

.nav-right a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

.nav-right a:hover::after {
    width: 100%;
}

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

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

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2rem;
    max-width: 540px;
}

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

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

/* CTA Buttons */
.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    font-size: 1.1rem;
}

.cta-hero:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #0f172a;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
}

.cta-secondary:hover {
    background: #1e293b;
}

.cta-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #2563eb;
    color: #ffffff;
    font-weight: 700;
    border-radius: 8px;
    font-size: 1.2rem;
}

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

/* Split Content Sections */
.split-content {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

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

.split-text {
    flex: 1;
    padding: 3rem 5%;
}

.split-visual {
    flex: 1;
    overflow: hidden;
}

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

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.split-text p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #2563eb;
    margin-bottom: 1rem;
}

.inline-link {
    color: #2563eb;
    font-weight: 600;
}

.inline-link:hover {
    text-decoration: underline;
}

/* Feature List */
.feature-list {
    margin-top: 2rem;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #1e293b;
    font-size: 1.125rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

/* Stats Block */
.stats-block {
    display: flex;
    justify-content: space-around;
    padding: 4rem 5%;
    background: #f8fafc;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1rem;
    color: #475569;
}

/* Testimonial Inline */
.testimonial-inline {
    padding: 5rem 10%;
    background: #0f172a;
}

.testimonial-inline blockquote {
    border-left: 4px solid #2563eb;
    padding-left: 2rem;
}

.testimonial-inline p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #f1f5f9;
    font-style: italic;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #94a3b8;
    font-style: normal;
}

/* Service Highlight */
.service-highlight {
    background: #f8fafc;
}

/* CTA Block Centered */
.cta-block-centered {
    text-align: center;
    padding: 6rem 5%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
}

.cta-block-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-block-centered p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Form Section */
.form-section {
    display: flex;
    padding: 5rem 5%;
    background: #ffffff;
}

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

.form-intro h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.form-intro p {
    font-size: 1.125rem;
    color: #475569;
}

.form-container {
    flex: 1;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    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 {
    width: 100%;
    padding: 1rem;
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

/* Trust Section */
.trust-section {
    padding: 4rem 10%;
    text-align: center;
    background: #f8fafc;
}

.trust-section h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.trust-section p {
    font-size: 1.125rem;
    color: #475569;
}

/* Page Header */
.page-header {
    padding: 5rem 10%;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.page-header .lead {
    font-size: 1.25rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
}

/* Values Block */
.values-block {
    padding: 5rem 5%;
    background: #ffffff;
}

.values-block h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0f172a;
}

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

.value-card {
    flex: 1;
    max-width: 350px;
    padding: 2.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.value-card p {
    color: #475569;
    line-height: 1.7;
}

/* Team Intro */
.team-intro {
    padding: 5rem 10%;
    text-align: center;
    background: #f8fafc;
}

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.team-intro p {
    font-size: 1.125rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 5rem 5%;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    max-width: 400px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card.featured {
    border-color: #2563eb;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #2563eb;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-header {
    padding: 2rem;
    background: #f8fafc;
}

.service-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.service-body {
    padding: 2rem;
    flex-grow: 1;
}

.service-body p {
    color: #475569;
    margin-bottom: 1.5rem;
}

.service-features {
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #1e293b;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.5rem;
}

.service-footer {
    padding: 0 2rem 2rem;
}

.btn-service {
    display: block;
    text-align: center;
    padding: 0.875rem;
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
}

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

/* Process Section */
.process-section {
    padding: 5rem 5%;
    background: #f8fafc;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0f172a;
}

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

.process-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
}

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

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.process-step p {
    color: #475569;
}

/* CTA Block */
.cta-block {
    text-align: center;
    padding: 5rem 10%;
    background: #0f172a;
    color: #ffffff;
}

.cta-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-block p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Split */
.contact-split {
    display: flex;
    padding: 5rem 5%;
}

.contact-info {
    flex: 1;
    padding-right: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #0f172a;
}

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

.contact-detail h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2563eb;
}

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

.contact-detail a {
    color: #2563eb;
    font-weight: 600;
}

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

.contact-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

/* Info Block */
.info-block {
    padding: 4rem 10%;
    background: #f8fafc;
}

.info-block h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.info-block p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.info-block a {
    color: #2563eb;
    font-weight: 600;
}

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

/* Thanks Container */
.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.thanks-message {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2rem;
}

.service-confirmation {
    padding: 1.5rem;
    background: #f0f9ff;
    border: 2px solid #2563eb;
    border-radius: 8px;
    margin: 2rem 0;
    font-weight: 600;
    color: #1e40af;
}

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

.btn-primary {
    padding: 0.875rem 2rem;
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
}

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

.btn-secondary {
    padding: 0.875rem 2rem;
    background: #e2e8f0;
    color: #1e293b;
    font-weight: 600;
    border-radius: 6px;
}

.btn-secondary:hover {
    background: #cbd5e1;
}

/* Legal Container */
.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 5%;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.legal-updated {
    color: #64748b;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.legal-section p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-section li {
    list-style: disc;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-section strong {
    color: #1e293b;
}

/* Footer Split */
.footer-split {
    display: flex;
    gap: 4rem;
    padding: 4rem 5%;
    background: #0f172a;
    color: #cbd5e1;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p {
    line-height: 1.7;
    color: #94a3b8;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #cbd5e1;
}

.footer-col ul li a:hover {
    color: #2563eb;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 50;
}

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: #2563eb;
    color: #ffffff;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.4);
}

.sticky-cta a:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

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

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

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

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

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-right {
        gap: 1rem;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

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

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

    .hero-visual {
        height: 50vh;
    }

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

    .split-text {
        padding: 2rem 5%;
    }

    .split-text h2 {
        font-size: 2rem;
    }

    .stats-block {
        flex-direction: column;
        gap: 2rem;
    }

    .testimonial-inline {
        padding: 3rem 5%;
    }

    .testimonial-inline p {
        font-size: 1.25rem;
    }

    .form-section {
        flex-direction: column;
    }

    .form-intro {
        padding-right: 0;
        margin-bottom: 2rem;
    }

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

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

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

    .contact-info {
        padding-right: 0;
        margin-bottom: 2rem;
    }

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

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

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

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

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

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

    .page-header h1 {
        font-size: 2.25rem;
    }

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

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

@media (max-width: 480px) {
    .nav-right {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

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

    .cta-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}