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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

a:hover {
    color: #1d4ed8;
}

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

h1 {
    font-size: 2.5rem;
    color: #0f172a;
}

h2 {
    font-size: 2rem;
    color: #1e293b;
}

h3 {
    font-size: 1.5rem;
    color: #334155;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

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

.btn-accept {
    background: #10b981;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background: #334155;
    border-color: #94a3b8;
}

/* Split Navigation */
.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

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

.nav-right a {
    color: #475569;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.hero-left {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.hero-subtitle {
    font-size: 1.35rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-text {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 2rem;
}

.hero-right {
    flex: 1;
    min-height: 600px;
}

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

/* CTA Buttons */
.cta-primary, .cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.cta-primary {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.cta-primary:hover {
    background: #1d4ed8;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

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

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

/* Insight Split Section */
.insight-split {
    display: flex;
    min-height: 600px;
    background: #f8fafc;
}

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

.split-image {
    flex: 1;
}

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

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

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

.split-content p {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 1.2rem;
}

/* Services Showcase */
.services-showcase {
    padding: 5rem 5%;
    background: #ffffff;
}

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

.section-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-intro p {
    font-size: 1.15rem;
    color: #64748b;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 450px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.service-card.featured {
    border-color: #2563eb;
    border-width: 3px;
}

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

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

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

.service-content > p {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    margin-left: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #475569;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.service-pricing {
    padding: 2rem;
    background: #f8fafc;
    border-top: 2px solid #e2e8f0;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.price-detail {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

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

/* Testimonial Split */
.testimonial-split {
    display: flex;
    min-height: 500px;
    background: #0f172a;
    color: #ffffff;
}

.testimonial-split .split-content {
    background: transparent;
}

.testimonial-split blockquote {
    font-size: 1.35rem;
    line-height: 1.7;
    font-style: italic;
    color: #e2e8f0;
    margin: 0;
}

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

/* CTA Split */
.cta-split {
    display: flex;
    min-height: 500px;
    background: #eff6ff;
}

.split-left-narrow {
    flex: 0.8;
}

.split-right-wide {
    flex: 1.2;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-right-wide h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.split-right-wide p {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 2rem;
}

/* Problem Amplification */
.problem-amplification {
    padding: 5rem 5%;
    background: #0f172a;
    color: #ffffff;
}

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

.problem-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

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

.problem-item {
    flex: 1;
    min-width: 260px;
    padding: 2rem;
    background: #1e293b;
    border-radius: 12px;
}

.problem-item h3 {
    color: #60a5fa;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.problem-item p {
    color: #cbd5e1;
    margin: 0;
}

/* Form Split Section */
.form-split {
    display: flex;
    min-height: 700px;
    background: #ffffff;
}

.form-split .split-content {
    flex: 0.9;
    background: #f8fafc;
}

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

.form-note {
    font-size: 0.95rem;
    color: #64748b;
    font-style: italic;
}

form {
    width: 100%;
    max-width: 500px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.btn-submit {
    width: 100%;
    padding: 1.125rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

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

.form-privacy {
    font-size: 0.85rem;
    color: #64748b;
    text-align: center;
    margin: 0;
}

.form-privacy a {
    text-decoration: underline;
}

/* Trust Split */
.trust-split {
    display: flex;
    min-height: 600px;
    background: #f8fafc;
}

.trust-list {
    list-style: none;
    margin-left: 0;
    margin-bottom: 1.5rem;
}

.trust-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #475569;
}

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

.trust-stat {
    background: #eff6ff;
    padding: 1.5rem;
    border-left: 4px solid #2563eb;
    font-weight: 600;
    color: #1e40af;
    margin-top: 2rem;
}

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

.footer-left {
    flex: 1;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-left p {
    margin-bottom: 0.5rem;
    color: #94a3b8;
}

.footer-right {
    flex: 1.5;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column {
    flex: 1;
}

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

.footer-column a {
    display: block;
    color: #94a3b8;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

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

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

.sticky-cta-btn {
    display: block;
    padding: 1rem 2rem;
    background: #10b981;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #059669;
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.5);
    transform: translateY(-3px);
}

/* Page Hero Split */
.page-hero-split {
    display: flex;
    min-height: 450px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    align-items: center;
}

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

.hero-content h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-content .lead {
    font-size: 1.25rem;
    color: #e0e7ff;
}

.hero-image {
    flex: 1;
    min-height: 450px;
}

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

/* Story Split */
.story-split {
    display: flex;
    min-height: 600px;
    background: #ffffff;
}

.story-split .split-content {
    background: transparent;
}

/* Values Split */
.values-split {
    display: flex;
    min-height: 600px;
    background: #f8fafc;
}

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

/* Team Showcase */
.team-showcase {
    padding: 5rem 5%;
    background: #ffffff;
    text-align: center;
}

.team-showcase h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.team-member .role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

/* Stats Split */
.stats-split {
    display: flex;
    min-height: 400px;
    background: #0f172a;
    color: #ffffff;
}

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

.split-right {
    flex: 1.2;
    padding: 4rem 5%;
    display: flex;
    align-items: center;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
}

.stat-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

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

.stat-item p {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin: 0;
}

/* Philosophy Split */
.philosophy-split {
    display: flex;
    min-height: 600px;
    background: #ffffff;
}

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

/* CTA About */
.cta-about {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
    color: #e0e7ff;
    margin-bottom: 2rem;
}

/* Services Detailed */
.services-detailed {
    padding: 3rem 5%;
    background: #f8fafc;
}

.service-detail-card {
    margin-bottom: 3rem;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.service-detail-content {
    flex: 1.2;
    padding: 3rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

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

.price-sub {
    font-size: 1.2rem;
    font-weight: 500;
    color: #64748b;
}

.service-intro {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 2rem;
    font-weight: 500;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    color: #334155;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-detail-content ul {
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    color: #475569;
    margin-bottom: 0.5rem;
}

.service-badge-inline {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-detail-image {
    flex: 0.8;
    min-height: 600px;
}

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

/* Comparison Section */
.comparison-section {
    padding: 5rem 5%;
    background: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.comparison-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.comparison-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.comparison-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #f8fafc;
    border-left: 4px solid #2563eb;
    border-radius: 8px;
}

.comparison-item h3 {
    font-size: 1.3rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.comparison-item p {
    color: #475569;
    margin: 0;
}

.free-call-cta {
    margin-top: 3rem;
    padding: 3rem;
    background: #eff6ff;
    border-radius: 12px;
    text-align: center;
}

.free-call-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.free-call-cta p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 2rem;
}

/* Guarantee Split */
.guarantee-split {
    display: flex;
    min-height: 500px;
    background: #f8fafc;
}

.guarantee-note {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
    margin-top: 1.5rem;
}

/* Contact Split */
.contact-split {
    display: flex;
    min-height: 700px;
    background: #ffffff;
}

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

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

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

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

.contact-item p {
    color: #475569;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #94a3b8;
    font-style: italic;
}

.quick-links {
    margin-top: 3rem;
}

.quick-links h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.quick-links ul {
    list-style: none;
    margin-left: 0;
}

.quick-links li {
    margin-bottom: 0.75rem;
}

.quick-links a {
    color: #2563eb;
    font-weight: 500;
    text-decoration: underline;
}

.contact-map {
    flex: 1;
}

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

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

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

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

.faq-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #64748b;
    margin: 0;
}

/* Final CTA Contact */
.final-cta-contact {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #ffffff;
}

.final-cta-contact h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

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

/* Thanks Page */
.thanks-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thanks-content {
    max-width: 900px;
    text-align: center;
    color: #ffffff;
}

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

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

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

.service-selected {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    font-size: 1.1rem;
}

.next-steps {
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.next-steps h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: left;
}

.step-item {
    flex: 1;
    min-width: 220px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.step-item h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.step-item p {
    color: #cbd5e1;
    margin: 0;
}

.thanks-cta {
    margin: 3rem 0;
}

.thanks-cta h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.thanks-cta p {
    color: #e0e7ff;
    margin-bottom: 2rem;
}

.thanks-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn-secondary {
    padding: 0.875rem 1.75rem;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

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

.thanks-contact p {
    color: #cbd5e1;
    margin: 0;
}

.thanks-contact a {
    color: #ffffff;
    text-decoration: underline;
}

/* Testimonial Thanks */
.testimonial-thanks {
    padding: 5rem 5%;
    background: #ffffff;
}

.testimonial-thanks h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #f8fafc;
    border-left: 4px solid #2563eb;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: #475569;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    display: block;
    font-style: normal;
    color: #64748b;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 5%;
    background: #ffffff;
    min-height: 70vh;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

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

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

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

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

.legal-content ul {
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    color: #475569;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #ffffff;
}

.cookie-table thead {
    background: #f8fafc;
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #1e293b;
    border-bottom: 2px solid #e2e8f0;
}

.cookie-table td {
    padding: 1rem;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
}

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

    h2 {
        font-size: 1.75rem;
    }

    .hero-split,
    .insight-split,
    .testimonial-split,
    .cta-split,
    .form-split,
    .trust-split,
    .page-hero-split,
    .story-split,
    .values-split,
    .stats-split,
    .philosophy-split,
    .service-detail-split,
    .guarantee-split,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-right,
    .split-image,
    .hero-image,
    .service-detail-image {
        min-height: 350px;
    }

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

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

    .nav-right {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .services-grid,
    .problem-grid,
    .stats-grid,
    .comparison-split,
    .steps-grid {
        flex-direction: column;
    }

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

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

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

    .price-display {
        font-size: 2.2rem;
    }

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

    .thanks-icon {
        font-size: 3.5rem;
        width: 80px;
        height: 80px;
    }

    .contact-map {
        min-height: 400px;
    }
}

@media (max-width: 640px) {
    .split-nav {
        padding: 1rem 3%;
    }

    .nav-left .logo {
        font-size: 1.25rem;
    }

    .nav-right {
        gap: 0.75rem;
        font-size: 0.85rem;
    }

    h1 {
        font-size: 1.75rem;
    }

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

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

    .cookie-actions {
        width: 100%;
    }

    .btn-accept, .btn-reject {
        flex: 1;
    }

    .team-grid,
    .faq-grid,
    .testimonial-grid {
        flex-direction: column;
    }

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

    .btn-secondary {
        width: 100%;
    }

    .cookie-table {
        font-size: 0.85rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem 0.5rem;
    }
}
