/* 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

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

a:hover {
    color: #1e40af;
}

/* Navigation - Split Screen Style */
.nav-split {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    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 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.nav-links {
    display: none;
    list-style: none;
    gap: 2rem;
}

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

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

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
}

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

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

.btn-cookie {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-cookie.accept:hover {
    background: #1e40af;
}

.btn-cookie.reject {
    background: #6b7280;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background: #4b5563;
}

/* Split Container - Core Layout */
.split-container {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    margin: 0 auto;
}

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

.split-visual {
    min-height: 300px;
}

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

/* Hero Section */
.hero-split {
    background: #f9fafb;
}

.hero-split h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #111827;
}

.hero-lead {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Buttons and CTAs */
.cta-primary {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

/* Intro Alternate Section */
.intro-alternate {
    padding: 4rem 0;
}

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

/* Challenge Section */
.challenge-section {
    padding: 4rem 2rem;
    background: #111827;
    color: #ffffff;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.challenge-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.center {
    text-align: center;
}

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

.challenge-card {
    background: #1f2937;
    padding: 2rem;
    border-radius: 8px;
}

.challenge-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #60a5fa;
}

.challenge-card p {
    color: #d1d5db;
}

/* Methodology Section */
.methodology-split {
    padding: 4rem 0;
    background: #f3f4f6;
}

.method-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.method-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
}

.method-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* Services Pricing Section */
.services-pricing {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

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

.service-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

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

.service-card.featured {
    border-color: #2563eb;
    background: #eff6ff;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.service-card p {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-features span {
    background: #f3f4f6;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    color: #374151;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    background: #2563eb;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Testimonial Section */
.testimonial-split {
    padding: 4rem 0;
    background: #fef3c7;
}

.testimonial-large {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    border-left: 4px solid #f59e0b;
    padding-left: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: #92400e;
}

/* Insight Section */
.insight-section {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.insight-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.large-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1.5rem;
}

/* CTA Box */
.cta-sticky-trigger {
    padding: 4rem 2rem;
    background: #2563eb;
    color: #ffffff;
}

.cta-box-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.cta-button-large {
    display: inline-block;
    background: #ffffff;
    color: #2563eb;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background: #f3f4f6;
    transform: scale(1.05);
}

/* Trust Indicators */
.trust-indicators {
    padding: 4rem 2rem;
}

.trust-indicators h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: #374151;
}

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

.trust-item {
    text-align: center;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
}

.trust-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.trust-label {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Form Section */
.form-section-split {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.split-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-note {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 1rem;
}

.contact-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: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    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 {
    background: #2563eb;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1e40af;
}

/* Final Push Section */
.final-push {
    padding: 5rem 2rem;
    background: #111827;
    color: #ffffff;
}

.final-push h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.final-push p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #d1d5db;
}

/* Footer */
.footer-split {
    background: #1f2937;
    color: #d1d5db;
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

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

.footer-column ul li a {
    color: #d1d5db;
    font-size: 0.9rem;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    padding: 1rem 2rem;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.show {
    transform: translateY(0);
}

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

.sticky-text {
    color: #ffffff;
    font-weight: 600;
}

.sticky-button {
    background: #2563eb;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sticky-button:hover {
    background: #1e40af;
}

/* Page Hero */
.page-hero-split {
    background: #f9fafb;
    padding: 3rem 0;
}

/* Services Page Specific */
.services-intro {
    padding: 3rem 2rem;
}

.services-detailed {
    padding: 3rem 2rem;
}

.service-detail-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.service-detail-card.featured-service {
    border-color: #2563eb;
    background: #eff6ff;
}

.service-detail-card.premium-service {
    border-color: #f59e0b;
    background: #fffbeb;
}

.badge-large {
    position: absolute;
    top: -15px;
    right: 2rem;
    background: #2563eb;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 700;
}

.badge-large.premium {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

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

.service-info h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #111827;
}

.service-description {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-info h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

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

.deliverables li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: #374151;
}

.deliverables li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.25rem;
}

.service-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.meta-item {
    font-size: 0.95rem;
    color: #4b5563;
}

.meta-item strong {
    color: #1f2937;
}

.service-pricing-box {
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
    text-align: center;
}

.service-pricing-box.premium {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
}

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

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

.btn-order {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.btn-order:hover {
    background: #1e40af;
}

/* Comparison Section */
.comparison-section {
    padding: 4rem 2rem;
    background: #f3f4f6;
}

.comparison-guide {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.guide-item {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.guide-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.guide-item p {
    color: #4b5563;
    margin: 0;
}

.cta-services {
    padding: 4rem 2rem;
}

/* Contact Page Specific */
.contact-info-section {
    padding: 3rem 2rem;
}

.contact-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.contact-item p {
    color: #4b5563;
    line-height: 1.7;
}

.contact-item .note {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.contact-map {
    background: #f3f4f6;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.map-note {
    padding: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
}

.contact-method-section {
    padding: 4rem 2rem;
    background: #f9fafb;
}

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

.method-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
}

.method-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.method-card p {
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.link-cta {
    color: #2563eb;
    font-weight: 600;
    text-decoration: underline;
}

.link-cta:hover {
    color: #1e40af;
}

/* FAQ Section */
.faq-contact {
    padding: 4rem 2rem;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.faq-item p {
    color: #4b5563;
    margin: 0;
}

.visit-section {
    padding: 3rem 2rem;
}

.cta-contact {
    padding: 4rem 2rem;
    background: #f3f4f6;
}

/* About Page Specific */
.about-story {
    padding: 4rem 2rem;
}

.team-split {
    padding: 4rem 0;
    background: #f9fafb;
}

.values-section {
    padding: 5rem 2rem;
}

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

.value-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.value-card p {
    color: #4b5563;
}

.experience-split {
    padding: 4rem 0;
}

.experience-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.experience-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: #374151;
}

.experience-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 1.5rem;
}

.approach-section {
    padding: 5rem 2rem;
    background: #f3f4f6;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    position: relative;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.step p {
    color: #4b5563;
}

.cta-about {
    padding: 4rem 2rem;
}

/* Thanks Page */
.thanks-hero {
    padding: 4rem 2rem;
    background: #f0fdf4;
    text-align: center;
}

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

.thanks-hero h1 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.25rem;
    color: #6b7280;
}

.thanks-content {
    padding: 4rem 2rem;
}

.thanks-info-box {
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.thanks-info-box h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #1f2937;
}

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

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

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

.step-text h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.step-text p {
    color: #6b7280;
    font-size: 0.95rem;
}

.service-confirmation {
    background: #eff6ff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
    margin-bottom: 2rem;
}

.service-confirmation h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.selected-service-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.service-confirmation p:last-child {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

.thanks-tips {
    margin-top: 2rem;
}

.thanks-tips h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.tips-list {
    list-style: none;
    padding: 0;
}

.tips-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #4b5563;
}

.tips-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
}

.thanks-reassurance {
    padding: 4rem 2rem;
    background: #f9fafb;
}

.thanks-reassurance h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.thanks-reassurance p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thanks-cta {
    padding: 3rem 2rem;
}

.thanks-cta h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Legal Pages */
.legal-hero {
    padding: 3rem 2rem;
    background: #f9fafb;
}

.legal-hero h1 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: #6b7280;
    font-size: 0.95rem;
}

.legal-content {
    padding: 3rem 2rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.legal-content p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    color: #4b5563;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-cta {
    padding: 3rem 2rem;
    text-align: center;
    background: #f9fafb;
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .split-container {
        flex-direction: row;
        align-items: stretch;
    }

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

    .split-content,
    .split-visual {
        flex: 1;
    }

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

    .split-visual {
        min-height: 500px;
    }

    .hero-split h1 {
        font-size: 3.5rem;
    }

    .challenge-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .challenge-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .trust-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .cta-box-split {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .sticky-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

    .service-split {
        flex-direction: row;
        align-items: center;
    }

    .service-info {
        flex: 2;
    }

    .service-pricing-box {
        flex: 1;
    }

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

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

    .method-cards {
        flex-direction: row;
    }

    .method-card {
        flex: 1;
    }

    .faq-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .approach-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .hero-split h1 {
        font-size: 4rem;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .trust-item {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .challenge-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .faq-item {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .value-card {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .step {
        flex: 1 1 calc(25% - 1.5rem);
    }
}
