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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    --accent-color: #10b981;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #ffffff;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--text-white);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: var(--shadow-lg);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

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

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

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.btn-cookie.accept:hover {
    background-color: #059669;
}

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

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

/* Header and Navigation */
.header-split {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

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

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

.hero-left {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1e3a8a 100%);
    color: white;
    align-items: center;
    padding: 4rem;
}

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

.hero-text-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-right {
    background-color: var(--bg-light);
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

/* CTA Buttons */
.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 6px;
    transition: var(--transition);
    cursor: pointer;
}

.cta-primary {
    background-color: var(--accent-color);
    color: white;
    border: none;
}

.cta-primary:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

/* Split Sections (Core Layout) */
.insight-split,
.services-split,
.testimonial-split,
.approach-split,
.technology-split,
.story-split,
.team-split,
.methodology-split,
.commitment-split,
.location-split,
.contact-split {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.split-content,
.split-image {
    flex: 1;
    display: flex;
}

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

.split-image {
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.insight-split {
    background-color: white;
}

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

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.split-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Value Grid Section */
.value-grid {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.value-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.value-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.value-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.value-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon img {
    width: 36px;
    height: 36px;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Services Preview in Split */
.services-split {
    background-color: white;
}

.split-services-preview {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    padding: 4rem;
    background-color: var(--bg-light);
}

.service-preview-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-preview-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.service-preview-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.service-preview-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonial Split */
.testimonial-split {
    background-color: var(--secondary-color);
}

.testimonial-content {
    flex: 1.2;
    display: flex;
    align-items: center;
    padding: 5rem 4rem;
}

.testimonial-image {
    flex: 0.8;
}

.testimonial-quote {
    color: white;
}

.testimonial-quote p {
    font-size: 1.4rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Approach Lists */
.approach-list,
.commitment-list,
.methodology-list {
    list-style: none;
    margin-top: 2rem;
}

.approach-list li,
.commitment-list li,
.methodology-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.approach-list li::before,
.commitment-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.methodology-list li strong {
    color: var(--secondary-color);
}

/* Case Highlight */
.case-highlight {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

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

.case-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.case-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.case-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.case-metrics {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.metric-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.metric-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

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

.tech-category h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.tech-category p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Industries Served */
.industries-served {
    padding: 5rem 2rem;
    background-color: white;
}

.industries-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.industries-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.industries-header p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.industries-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.industry-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.industry-card:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.industry-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.industry-card:hover h4 {
    color: white;
}

.industry-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Form Section */
.cta-split {
    display: flex;
    align-items: stretch;
    background-color: white;
}

.cta-left,
.cta-right {
    flex: 1;
    padding: 5rem 4rem;
}

.cta-left {
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.cta-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-item img {
    width: 24px;
    height: 24px;
}

.trust-item span {
    font-size: 0.95rem;
    color: var(--text-dark);
}

/* Form Styles */
.service-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    transition: var(--transition);
}

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Footer */
.footer-split {
    background-color: var(--secondary-color);
    color: white;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: white;
    padding-left: 5px;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

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

.sticky-cta-button {
    display: block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.sticky-cta-button:hover {
    background-color: #059669;
    transform: scale(1.05);
}

/* Page Hero */
.page-hero-split {
    padding: 6rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1e3a8a 100%);
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Services Detailed */
.services-detailed {
    background-color: white;
}

.service-detail-split {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.service-detail-split:nth-child(even) {
    background-color: var(--bg-light);
}

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

.service-detail-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-image {
    flex: 1;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-number {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-price-large {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-detail-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.service-deliverables li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.service-deliverables li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

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

.cta-service {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
    margin-top: 1rem;
}

.cta-service:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Service Comparison */
.service-comparison {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.comparison-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.comparison-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.comparison-header p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.comparison-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.comparison-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.comparison-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.comparison-card ul {
    list-style: none;
}

.comparison-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

.comparison-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Process Overview */
.process-overview {
    padding: 5rem 2rem;
    background-color: white;
}

.process-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.process-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.process-header p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.process-steps {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.process-step h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.process-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Pricing Transparency */
.pricing-transparency {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

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

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

.transparency-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.pricing-note {
    background-color: white;
    padding: 1.5rem;
    border-left: 4px solid var(--accent-color);
    margin-top: 2rem;
}

.pricing-note strong {
    color: var(--secondary-color);
}

/* About Page Styles */
.values-grid {
    padding: 5rem 2rem;
    background-color: white;
}

.values-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.values-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.values-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.team-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
}

.partnerships {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.partnerships-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.partnerships-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.partnerships-header p {
    font-size: 1rem;
    color: var(--text-light);
}

.partners-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: var(--transition);
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo img {
    height: 40px;
    width: auto;
}

/* Contact Page Styles */
.contact-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-block {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
}

.contact-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

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

.office-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.office-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.expectations-list {
    list-style: none;
}

.expectations-list li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 1rem;
    color: var(--text-light);
}

.expectations-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.map-section {
    padding: 0;
    background-color: var(--bg-light);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-split {
    padding: 5rem 2rem;
    background-color: white;
}

.faq-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.faq-header p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.industries-contact {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.industries-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.industry-tag {
    padding: 0.75rem 1.5rem;
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.industry-tag:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Thanks Page Styles */
.thanks-hero {
    padding: 6rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--accent-color) 0%, #059669 100%);
    color: white;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-icon img {
    width: 40px;
    height: 40px;
}

.thanks-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.25rem;
    opacity: 0.95;
}

.thanks-details-split {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.split-content {
    flex: 2;
}

.split-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

.step-timeline {
    flex-shrink: 0;
}

.timeline-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
}

.step-description h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.step-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.selected-service-card,
.while-waiting,
.contact-card {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.selected-service-card h3,
.while-waiting h3,
.contact-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.while-waiting ul {
    list-style: none;
}

.while-waiting ul li {
    margin-bottom: 0.75rem;
}

.while-waiting ul li a {
    color: var(--primary-color);
    font-weight: 500;
}

.thanks-testimonial {
    padding: 5rem 2rem;
    background-color: var(--secondary-color);
    color: white;
}

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

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-attribution strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-attribution span {
    font-size: 0.95rem;
    opacity: 0.8;
}

.thanks-resources {
    padding: 5rem 2rem;
    background-color: white;
}

.resources-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.resources-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.resources-header p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.resources-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.resource-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.resource-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Legal Pages */
.legal-hero {
    padding: 5rem 2rem 3rem;
    text-align: center;
    background-color: var(--bg-light);
}

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

.legal-updated {
    font-size: 1rem;
    color: var(--text-light);
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.document-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.document-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.document-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.document-content ul,
.document-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.document-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

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

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--bg-light);
    font-weight: 700;
    color: var(--secondary-color);
}

.cookies-table td {
    font-size: 0.95rem;
    color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .insight-split,
    .services-split,
    .testimonial-split,
    .approach-split,
    .technology-split,
    .story-split,
    .team-split,
    .methodology-split,
    .commitment-split,
    .location-split,
    .cta-split,
    .service-detail-split,
    .thanks-details-split {
        flex-direction: column;
    }

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

    .split-content,
    .split-image,
    .cta-left,
    .cta-right {
        padding: 3rem 2rem;
    }

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

    .value-cards,
    .industries-grid {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-md);
        display: none;
        padding: 1rem 0;
    }

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

    .nav-link {
        padding: 1rem 2rem;
        width: 100%;
    }

    .nav-toggle {
        display: flex;
    }

    .cookie-content {
        flex-direction: column;
    }

    .case-metrics {
        gap: 2rem;
    }

    .comparison-card,
    .value-item {
        flex: 1 1 100%;
    }

    .thanks-details-split {
        flex-direction: column;
    }

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

    .value-header h2,
    .process-header h2,
    .faq-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-text-content h1 {
        font-size: 1.75rem;
    }

    .split-content h2 {
        font-size: 1.8rem;
    }

    .service-detail-content h2 {
        font-size: 1.75rem;
    }

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

    .sticky-cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}