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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #0f172a;
    --text-color: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

/* Navigation */
.nav-primary {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 0;
}

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

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

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

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.nav-cta {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Split Screen */
.hero-split {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 3rem 2rem;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-block;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-block;
    border: 2px solid var(--primary-color);
}

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

.hero-visual {
    flex: 1;
}

.hero-visual img {
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Trust Markers */
.trust-markers {
    background: var(--bg-light);
    padding: 3rem 2rem;
}

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

.marker-grid {
    display: flex;
    justify-content: space-around;
    gap: 3rem;
}

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

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

.marker-item p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Split Sections */
.split-problem,
.split-process,
.split-story,
.team-approach {
    padding: 5rem 2rem;
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

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

.split-visual {
    flex: 1;
}

.split-visual img {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.split-text {
    flex: 1;
}

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

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

.checklist {
    margin-top: 2rem;
}

.checklist li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-color);
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Headers */
.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

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

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

.section-title-center {
    font-size: 2.5rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.section-title-left {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

/* Services Overview */
.services-overview {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    color: var(--primary-color);
}

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.service-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1rem;
}

.service-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Process Steps */
.process-steps {
    margin-top: 2rem;
}

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

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(37, 99, 235, 0.2);
    min-width: 60px;
}

.step-content h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 2rem;
}

.testimonials-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 5rem 2rem;
    text-align: center;
    color: var(--bg-white);
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.btn-white {
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Form Section */
.form-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

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

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    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);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1.1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

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

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

.footer-col {
    flex: 1 1 220px;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li a:hover {
    color: var(--bg-white);
}

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

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

.sticky-cta a {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    display: inline-block;
}

.sticky-cta a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-accept:hover {
    background: var(--primary-dark);
}

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

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(37, 99, 235, 0.02));
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-hero .lead {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Values Section */
.values-section {
    padding: 5rem 2rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
}

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

.value-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Timeline */
.timeline-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-year {
    position: absolute;
    left: -3rem;
    top: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    transform: translateX(-100%);
    margin-left: -1rem;
}

.timeline-content h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-light);
}

/* Team Roles */
.team-roles {
    margin-top: 2rem;
}

.team-roles li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.team-roles li:last-child {
    border-bottom: none;
}

.team-roles strong {
    color: var(--secondary-color);
}

/* Stats Section */
.stats-section {
    padding: 5rem 2rem;
    background: var(--primary-color);
}

.stats-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-box {
    text-align: center;
    flex: 1 1 200px;
}

.stat-value {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* CTA Simple */
.cta-simple {
    padding: 5rem 2rem;
    text-align: center;
}

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

.cta-simple p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Services Detailed */
.services-detailed {
    padding: 3rem 2rem;
}

.service-detail-item {
    margin-bottom: 5rem;
}

.service-detail-item:last-child {
    margin-bottom: 0;
}

.service-detail-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

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

.service-detail-text {
    flex: 1;
}

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

.service-detail-text h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-detail-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-color);
}

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

.service-price-box {
    background: rgba(37, 99, 235, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

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

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

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

.service-detail-image img {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Process Overview */
.process-overview {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.process-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.process-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.process-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* FAQ Section */
.faq-section,
.faq-contact {
    padding: 5rem 2rem;
}

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

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

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

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 5rem 2rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

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

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

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

.contact-item h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    background: rgba(37, 99, 235, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Contact Reasons */
.contact-reasons {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.reason-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
}

.reason-card h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.reason-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Map Section */
.map-section {
    padding: 0;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.05));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
    background: var(--bg-white);
    padding: 2.5rem 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-overlay h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.7rem;
    font-weight: 700;
}

.map-overlay p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Thanks Page */
.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    text-align: center;
}

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

.thanks-icon {
    margin: 0 auto 2rem;
    width: 100px;
    height: 100px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-icon svg {
    color: var(--success-color);
}

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

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

.thanks-details {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2.5rem;
    text-align: left;
}

.thanks-details h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.thanks-details ul {
    list-style: none;
}

.thanks-details li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-color);
}

.thanks-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.thanks-service-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 8px;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Next Steps */
.next-steps {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.steps-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.step-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
}

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

.step-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.step-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.step-card a:hover {
    text-decoration: underline;
}

/* Contact Alternative */
.contact-alternative {
    padding: 3rem 2rem;
    text-align: center;
}

.contact-alternative h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.email-highlight {
    font-size: 1.3rem;
    margin-top: 1.5rem;
}

.email-highlight a {
    color: var(--primary-color);
    font-weight: 700;
}

.email-highlight a:hover {
    text-decoration: underline;
}

/* Legal Page */
.legal-page {
    padding: 3rem 2rem 5rem;
}

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

.last-updated {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-content p {
    color: var(--text-color);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.legal-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-content ul li {
    list-style: disc;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-content a {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content,
    .split-container,
    .service-detail-content,
    .contact-container {
        flex-direction: column;
        gap: 3rem;
    }

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

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

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

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

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        gap: 1.5rem;
    }

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

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .service-card,
    .value-item,
    .reason-card,
    .process-card,
    .step-card {
        flex: 1 1 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .sticky-cta a {
        padding: 0.8rem 1.3rem;
        font-size: 0.95rem;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .section-title-center,
    .section-header-center h2,
    .split-text h2,
    .service-detail-text h2 {
        font-size: 2rem;
    }

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

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

    .marker-number,
    .stat-value {
        font-size: 2.5rem;
    }

    .contact-form {
        padding: 2rem;
    }
}