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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

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

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.125rem;
}

p {
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
}

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

.nav-links a {
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1a202c;
    transition: all 0.3s ease;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

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

.btn-accept {
    background-color: #2563eb;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 600px;
}

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

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    background-color: #f7fafc;
}

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

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

.hero-right {
    position: relative;
    overflow: hidden;
}

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

/* Page Hero Split */
.page-hero-split {
    display: flex;
    min-height: 500px;
}

.page-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2563eb;
    margin-bottom: 1rem;
}

/* Stats Bar */
.stats-bar {
    background-color: #1a202c;
    color: #ffffff;
    padding: 3rem 0;
}

.stats-bar .container {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

/* Intro Split Section */
.intro-split {
    display: flex;
}

.split-image-left,
.split-image-right {
    flex: 1;
    overflow: hidden;
}

.split-image-left img,
.split-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content-left,
.split-content-right {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content-right {
    background-color: #f7fafc;
}

.link-arrow {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: #2563eb;
}

/* Value Grid */
.value-grid {
    padding: 5rem 0;
    background-color: #ffffff;
}

.value-grid .container {
    display: flex;
    gap: 3rem;
}

.value-card {
    flex: 1;
    padding: 2rem;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 1rem;
}

/* Approach Split */
.approach-split {
    display: flex;
}

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

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.service-preview-list {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-preview-item {
    padding: 1.5rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.service-preview-item h4 {
    margin-bottom: 0.5rem;
}

.price-tag {
    display: inline-block;
    margin-top: 0.75rem;
    font-weight: 700;
    color: #2563eb;
    font-size: 1.125rem;
}

/* Case Highlight */
.case-highlight {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.case-content {
    max-width: 800px;
    margin: 0 auto;
}

.case-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #e0e7ff;
    margin-bottom: 0.5rem;
}

.case-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

blockquote {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #60a5fa;
    border-radius: 4px;
}

cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Expertise Split */
.expertise-split {
    display: flex;
}

.tech-categories {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.tech-group h4 {
    margin-bottom: 0.5rem;
    color: #2563eb;
}

.tech-group p {
    margin: 0;
    color: #4a5568;
}

/* Process Overview */
.process-overview {
    padding: 5rem 0;
    background-color: #f7fafc;
}

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

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

.process-step {
    flex: 1;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

/* Form Split */
.form-split {
    display: flex;
}

.split-form-right {
    flex: 1;
    padding: 3rem;
    background-color: #f7fafc;
}

.contact-form {
    max-width: 500px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    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;
}

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

.cta-primary {
    background-color: #2563eb;
    color: #ffffff;
}

.cta-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cta-secondary {
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.cta-secondary:hover {
    background-color: #2563eb;
    color: #ffffff;
}

/* Footer */
.footer {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

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

.footer-col ul {
    list-style: none;
}

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

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

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

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

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

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5);
}

/* Services Page */
.services-grid {
    padding: 3rem 0;
}

.service-card-split {
    display: flex;
    margin-bottom: 4rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.service-content {
    flex: 1.5;
    padding: 3rem;
    background-color: #ffffff;
}

.service-pricing {
    flex: 1;
    padding: 3rem;
    background-color: #f7fafc;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.price-box {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #2563eb;
}

.price-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 1.5rem;
}

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

.service-details ul {
    list-style-position: inside;
    margin: 1rem 0;
}

.service-details li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.select-service {
    width: 100%;
}

/* Pricing Notes */
.pricing-notes {
    padding: 4rem 0;
    background-color: #f7fafc;
}

.pricing-notes h2 {
    margin-bottom: 2rem;
}

.pricing-notes ul {
    margin: 2rem 0;
    padding-left: 2rem;
}

.pricing-notes li {
    margin-bottom: 0.75rem;
}

/* Form Section */
.form-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.form-split-layout {
    display: flex;
    gap: 4rem;
}

.form-intro {
    flex: 1;
}

.form-container {
    flex: 1;
    background-color: #f7fafc;
    padding: 3rem;
    border-radius: 12px;
}

.form-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.benefit-icon {
    color: #10b981;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Contact Page */
.contact-info-split {
    display: flex;
}

.contact-details {
    margin-top: 3rem;
}

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

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #2563eb;
}

.contact-item .note {
    font-size: 0.875rem;
    color: #718096;
    font-style: italic;
}

.response-time {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.response-time ul {
    list-style-position: inside;
    margin-top: 1rem;
}

.map-placeholder {
    padding: 3rem 0;
    background-color: #f7fafc;
}

.map-container {
    height: 400px;
    background-color: #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-overlay {
    background-color: rgba(37, 99, 235, 0.9);
    color: #ffffff;
    padding: 2rem 3rem;
    border-radius: 8px;
    text-align: center;
}

.map-overlay p {
    margin: 0;
    font-weight: 600;
    font-size: 1.125rem;
}

.why-contact {
    padding: 5rem 0;
}

.why-contact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.reason-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.reason-card h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.directions-section {
    padding: 4rem 0;
    background-color: #f7fafc;
}

.directions-section h2 {
    margin-bottom: 2rem;
}

.directions-split {
    display: flex;
    gap: 3rem;
}

.direction-item {
    flex: 1;
}

.direction-item h4 {
    color: #2563eb;
    margin-bottom: 0.75rem;
}

/* Thanks Page */
.thanks-hero {
    padding: 5rem 0;
    background-color: #f7fafc;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.thanks-lead {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

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

.service-confirmation {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #2563eb;
}

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

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

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-marker {
    width: 50px;
    height: 50px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.immediate-resources {
    margin: 4rem 0;
}

.immediate-resources h2 {
    margin-bottom: 2rem;
}

.resource-links {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.resource-card {
    flex: 1;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.resource-card:hover {
    border-color: #2563eb;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.resource-card h4 {
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.confirmation-notice {
    margin: 3rem 0;
    padding: 1.5rem;
    background-color: #fff3cd;
    border-left: 4px solid: #ffc107;
    border-radius: 4px;
}

.thanks-actions {
    margin-top: 3rem;
}

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

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

.last-updated {
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 2rem;
}

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

.legal-section h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.legal-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2563eb;
}

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

.legal-section li {
    margin-bottom: 0.5rem;
}

.contact-info {
    padding: 1.5rem;
    background-color: #f7fafc;
    border-radius: 8px;
    margin: 1rem 0;
}

.cookie-table {
    overflow-x: auto;
    margin: 1.5rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table thead {
    background-color: #f7fafc;
}

table th,
table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e2e8f0;
}

table th {
    font-weight: 600;
    color: #1a202c;
}

/* Story Split */
.story-split {
    display: flex;
    padding: 5rem 0;
}

/* Principles Section */
.principles-section {
    padding: 5rem 0;
    background-color: #f7fafc;
}

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

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

.principle-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.principle-item h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

/* Team Split */
.team-split {
    display: flex;
    padding: 5rem 0;
}

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

/* Certifications Bar */
.certifications-bar {
    padding: 3rem 0;
    background-color: #1a202c;
    color: #ffffff;
}

.certifications-bar h3 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 2rem;
}

.cert-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.cert-item {
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Values Split */
.values-split {
    display: flex;
    padding: 5rem 0;
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item h4 {
    color: #2563eb;
    margin-bottom: 0.5rem;
}

/* Commitment Section */
.commitment-section {
    padding: 5rem 0;
    background-color: #f7fafc;
}

.commitment-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

    h2 {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split,
    .page-hero-split,
    .intro-split,
    .approach-split,
    .expertise-split,
    .form-split,
    .contact-info-split,
    .story-split,
    .team-split,
    .values-split,
    .service-card-split {
        flex-direction: column;
    }

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

    .hero-left,
    .hero-right {
        min-height: 400px;
    }

    .stats-bar .container {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .value-grid .container {
        flex-direction: column;
    }

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

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

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

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

    .reason-card {
        flex: 1 1 100%;
    }

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

    .resource-links {
        flex-direction: column;
    }

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

    .principle-item {
        flex: 1 1 100%;
    }

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

    .sticky-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

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

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

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}