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

:root {
    --primary: #2c5f7d;
    --primary-light: #4a8fb5;
    --primary-dark: #1a3d4d;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #6b6b6b;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border: #e0e0e0;
    --accent: #5da3c7;
    --success: #28a745;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-light);
}

ul {
    list-style: none;
}

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    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: var(--bg-white);
    margin: 0;
}

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

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

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline, .cta-primary, .cta-large, .btn-submit, .btn-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary, .cta-primary, .cta-large, .btn-submit, .btn-service {
    background: var(--primary);
    color: var(--bg-white);
}

.btn-primary:hover, .cta-primary:hover, .cta-large:hover, .btn-submit:hover, .btn-service:hover {
    background: var(--primary-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-secondary:hover {
    background: var(--bg-white);
    color: var(--text-dark);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-white);
}

.cta-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

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

.hero-left, .hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    padding: 4rem 3rem;
}

.hero-content {
    max-width: 550px;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

/* Split Reverse */
.split-reverse {
    display: flex;
    flex-direction: row-reverse;
}

.split-image, .split-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-image {
    padding: 3rem;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 12px;
}

.split-content {
    padding: 4rem 3rem;
}

.split-content > div {
    max-width: 550px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    margin-top: 1rem;
}

.link-arrow:after {
    content: '→';
    margin-left: 0.5rem;
    transition: margin 0.3s ease;
}

.link-arrow:hover:after {
    margin-left: 1rem;
}

/* Value Grid */
.value-grid {
    padding: 6rem 0;
    background: var(--bg-light);
}

.grid-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.value-card {
    flex: 1;
    max-width: 350px;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.card-icon {
    margin-bottom: 1.5rem;
}

.value-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Services Preview */
.services-preview {
    padding: 6rem 0;
}

.section-header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 2rem;
}

.header-left {
    flex: 1;
    max-width: 600px;
}

.section-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.header-right {
    display: flex;
    align-items: center;
}

/* Service Selection Form */
.service-selection {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-item:has(input:checked) {
    border-color: var(--primary);
    background: rgba(44, 95, 125, 0.03);
}

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

.service-select {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.service-select input[type="radio"] {
    margin-top: 0.3rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.service-select label {
    flex: 1;
    cursor: pointer;
}

.service-select h3 {
    margin: 0;
    font-size: 1.4rem;
}

.service-price {
    text-align: right;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.service-desc {
    margin: 0;
    color: var(--text-muted);
}

/* Form Section */
.form-section {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.form-section h3 {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Testimonials Offset */
.testimonials-offset {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--bg-white);
}

.testimonials-offset h2 {
    text-align: center;
    color: var(--bg-white);
    margin-bottom: 3rem;
}

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

.testimonial {
    flex: 1;
    max-width: 350px;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--accent);
    font-weight: 600;
    margin: 0;
}

/* CTA Asymmetric */
.cta-asymmetric {
    display: flex;
    min-height: 500px;
}

.cta-content-block {
    flex: 1.2;
    background: var(--bg-light);
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content-block h2 {
    margin-bottom: 1.5rem;
}

.cta-content-block p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.cta-visual {
    flex: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-element {
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: #ccc;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col a {
    color: #ccc;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-bottom p {
    color: #999;
    margin: 0;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--bg-white);
    padding: 5rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
}

/* Split Content Section */
.split-content-section {
    padding: 6rem 0;
    display: flex;
    gap: 3rem;
}

.split-left-wide {
    flex: 2;
}

.split-right-narrow {
    flex: 1;
}

.stats-box {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    position: sticky;
    top: 100px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* Philosophy Section */
.philosophy-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

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

.philosophy-item {
    flex: 1;
    min-width: 250px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.philosophy-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2rem;
}

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

/* Values Split */
.values-split {
    display: flex;
}

.values-left, .values-right {
    flex: 1;
}

.values-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.values-right {
    padding: 5rem 4rem;
}

.values-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.values-list li {
    padding-left: 2rem;
    position: relative;
}

.values-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.3rem;
}

/* CTA Section Centered */
.cta-section-centered {
    padding: 6rem 0;
    background: var(--bg-light);
    text-align: center;
}

.cta-section-centered h2 {
    margin-bottom: 1rem;
}

.cta-section-centered p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

/* Services Detailed */
.services-detailed {
    padding: 4rem 0;
}

.service-card-detailed {
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.service-card-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--bg-white);
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-card-header h2 {
    margin: 0;
    color: var(--bg-white);
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
}

.service-card-body {
    padding: 3rem;
}

.service-intro {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.service-features li {
    padding-left: 2rem;
    position: relative;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.btn-service {
    margin-top: 2rem;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

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

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

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
}

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

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

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

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

.contact-layout {
    display: flex;
    gap: 3rem;
}

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

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.contact-note {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-overlay {
    text-align: center;
    color: var(--bg-white);
}

.map-overlay p {
    color: var(--bg-white);
    font-size: 1.3rem;
    font-weight: 600;
}

.map-address {
    font-size: 1rem !important;
    opacity: 0.9;
}

.contact-cta {
    padding: 5rem 0;
    background: var(--bg-light);
    text-align: center;
}

.contact-cta h2 {
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Thanks Section */
.thanks-section {
    padding: 6rem 0;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.thanks-service {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-weight: 600;
    color: var(--primary);
}

.thanks-next-steps {
    text-align: left;
    margin: 3rem 0;
}

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

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.step-num {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

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

/* Legal Page */
.legal-page {
    padding: 4rem 0;
}

.last-updated {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

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

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

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

.cookie-table td {
    padding: 0.8rem;
    border: 1px solid var(--border);
}

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

    h2 {
        font-size: 1.8rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-left {
        padding: 3rem 2rem;
    }

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

    .split-content, .split-image {
        padding: 2rem;
    }

    .value-cards {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }

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

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

    .split-content-section {
        flex-direction: column;
    }

    .stats-box {
        position: static;
    }

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

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

    .values-left {
        min-height: 300px;
    }

    .values-right {
        padding: 3rem 2rem;
    }

    .section-header-split {
        flex-direction: column;
    }

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

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

    .service-card-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

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

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

@media (max-width: 640px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

    .service-price {
        text-align: left;
    }

    .form-section {
        padding: 2rem 1.5rem;
    }
}