/* 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.7;
    color: #1a1a1a;
    background: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

/* Navigation - Split Style */
.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
}

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

.nav-right a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
}

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

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

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111827;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.35rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    color: #4b5563;
    font-weight: 500;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #6b7280;
}

.hero-visual {
    flex: 1;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

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

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

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

.cta-secondary:hover {
    background: #eff6ff;
    opacity: 1;
}

/* Insight Block - Alternating Split */
.insight-block {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
    background: #f9fafb;
}

.insight-left {
    flex: 1;
    padding-right: 4rem;
}

.insight-left img {
    border-radius: 8px;
}

.insight-right {
    flex: 1;
}

.insight-right h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #111827;
    font-weight: 700;
}

.insight-right p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #4b5563;
}

/* Services Intro */
.services-intro {
    padding: 4rem 5%;
    text-align: center;
}

.services-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

.services-header p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Grid - Card-Based Split */
.services-grid {
    padding: 0 5% 5rem;
}

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

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.service-details {
    flex: 1;
    padding: 3rem;
}

.service-details h3 {
    font-size: 1.85rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

.service-details p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
    line-height: 1.7;
}

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

.service-details ul li {
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    position: relative;
    font-size: 1rem;
    color: #374151;
}

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

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

.btn-select {
    background: #f3f4f6;
    color: #111827;
    padding: 0.9rem 2rem;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

.btn-select.selected {
    background: #10b981;
    color: #ffffff;
    border-color: #10b981;
}

/* Trust Section */
.trust-segment {
    padding: 5rem 5%;
    background: #1f2937;
    color: #ffffff;
    text-align: center;
}

.trust-segment h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.testimonial {
    flex: 1 1 300px;
    max-width: 400px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.testimonial p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial cite {
    font-size: 0.95rem;
    color: #d1d5db;
    font-style: normal;
}

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

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

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    color: #6b7280;
}

.main-form {
    max-width: 650px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px 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 {
    width: 100%;
    padding: 1.1rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Final CTA Section */
.final-cta {
    padding: 5rem 5%;
    text-align: center;
    background: #eff6ff;
}

.final-cta h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

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

/* Footer */
.site-footer {
    padding: 4rem 5% 2rem;
    background: #111827;
    color: #d1d5db;
}

.footer-cols {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

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

.footer-col a {
    display: block;
    margin-bottom: 0.75rem;
    color: #d1d5db;
    font-size: 0.95rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #9ca3af;
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

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

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

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

.btn-reject:hover {
    background: #374151;
}

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

.sticky-cta.show {
    display: block;
}

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

.sticky-cta a:hover {
    transform: scale(1.05);
    opacity: 1;
}

/* Page Hero */
.page-hero {
    padding: 5rem 5%;
    text-align: center;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #4b5563;
}

/* About Page Styles */
.about-story {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
    gap: 4rem;
}

.story-left {
    flex: 1;
}

.story-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
    font-weight: 700;
}

.story-left p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #4b5563;
    line-height: 1.7;
}

.story-right {
    flex: 1;
}

.story-right img {
    border-radius: 10px;
}

.mission-block {
    padding: 5rem 5%;
    background: #f9fafb;
    text-align: center;
}

.mission-block h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

.mission-lead {
    font-size: 1.3rem;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

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

.mission-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2563eb;
    font-weight: 700;
}

.mission-item p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
}

.team-approach {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
    gap: 4rem;
}

.approach-visual {
    flex: 1;
}

.approach-visual img {
    border-radius: 10px;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
    font-weight: 700;
}

.approach-text p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #4b5563;
    line-height: 1.7;
}

.values-section {
    padding: 5rem 5%;
    background: #1f2937;
    color: #ffffff;
    text-align: center;
}

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

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

.value-card {
    flex: 1 1 280px;
    max-width: 350px;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #60a5fa;
    font-weight: 700;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #d1d5db;
}

.cta-block {
    padding: 5rem 5%;
    text-align: center;
    background: #eff6ff;
}

.cta-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

.cta-block p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4b5563;
}

/* Services Page Styles */
.services-detail-intro {
    display: flex;
    align-items: center;
    padding: 4rem 5%;
    gap: 4rem;
    background: #f9fafb;
}

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

.detail-intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
    font-weight: 700;
}

.detail-intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #4b5563;
    line-height: 1.7;
}

.detail-intro-visual {
    flex: 1;
}

.detail-intro-visual img {
    border-radius: 10px;
}

.services-detailed {
    padding: 4rem 5%;
}

.service-detail-card {
    max-width: 900px;
    margin: 0 auto 4rem;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem;
    background: #f9fafb;
    border-bottom: 2px solid #e5e7eb;
}

.service-detail-header h3 {
    font-size: 2rem;
    color: #111827;
    font-weight: 700;
    flex: 1;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
}

.service-detail-body {
    padding: 2.5rem;
}

.service-detail-body p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4b5563;
    line-height: 1.7;
}

.service-detail-body h4 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

.service-detail-body ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-body ul li {
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    position: relative;
    font-size: 1.05rem;
    color: #374151;
}

.service-detail-body ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.5rem;
}

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

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

.custom-training {
    padding: 5rem 5%;
    text-align: center;
    background: #1f2937;
    color: #ffffff;
}

.custom-training h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.custom-training p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #d1d5db;
}

/* Contact Page Styles */
.contact-split {
    display: flex;
    padding: 4rem 5%;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #111827;
    font-weight: 700;
}

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

.contact-block h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: #2563eb;
    font-weight: 700;
}

.contact-block p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
}

.contact-block a {
    color: #2563eb;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    border-radius: 10px;
}

.contact-cta {
    padding: 5rem 5%;
    text-align: center;
    background: #f9fafb;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

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

/* Thanks Page Styles */
.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
}

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

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
    font-weight: 800;
}

.thanks-lead {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #4b5563;
}

.thanks-details {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.thanks-details p {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.thanks-details strong {
    color: #2563eb;
}

.thanks-next {
    margin-bottom: 3rem;
}

.thanks-next h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #111827;
    font-weight: 700;
}

.next-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1 1 250px;
    max-width: 300px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.step p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

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

/* Legal Page Styles */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #111827;
    font-weight: 800;
}

.legal-intro {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.85rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #374151;
    font-weight: 700;
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    color: #4b5563;
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-page ul li {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: #4b5563;
    line-height: 1.7;
}

.legal-page a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
    font-weight: 600;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        gap: 1.5rem;
    }

    .hero-split,
    .insight-block,
    .about-story,
    .team-approach,
    .services-detail-intro,
    .contact-split {
        flex-direction: column;
    }

    .service-card,
    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .hero-content h1,
    .page-hero h1,
    .thanks-content h1 {
        font-size: 2.5rem;
    }

    .insight-right h2,
    .story-left h2,
    .approach-text h2,
    .mission-block h2,
    .services-header h2,
    .trust-segment h2 {
        font-size: 2rem;
    }

    .insight-left {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

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

    .sticky-cta a {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-detail-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .price-large {
        font-size: 2rem;
    }

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

    .thanks-actions .cta-primary,
    .thanks-actions .cta-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 3rem 5%;
    }

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

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

    .service-details {
        padding: 2rem;
    }

    .main-form {
        padding: 2rem;
    }

    .testimonials-wrap,
    .mission-grid,
    .values-wrap,
    .next-steps {
        flex-direction: column;
    }
}