* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #667eea;
    --primary-dark: #764ba2;
    --coral: #f5576c;
    --coral-light: #f093fb;
    --yellow: #fee140;
    --text-dark: #1a1a2e;
    --text-gray: #4a4a5e;
    --text-light: #6b6b7e;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e8e8ee;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-gray);
}

a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    color: white;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
}

.btn-hero {
    padding: 18px 48px;
    font-size: 1.15rem;
}

.btn-light {
    background: white;
    color: var(--primary-purple);
}

.btn-light:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-purple);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 20px 52px;
    font-size: 1.2rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 24px 20px;
    z-index: 10000;
    display: none;
    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;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.main-nav {
    background: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--text-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    align-items: center;
}

.hero-right {
    flex: 1;
    min-height: 85vh;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.hero-image {
    width: 100%;
    height: 100%;
    min-height: 85vh;
}

.gradient-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-coral {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.intro-split {
    display: flex;
    padding: 120px 0;
}

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

.split-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.visual-block {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.problem-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.problem-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.problem-card h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.case-split {
    display: flex;
    padding: 100px 0;
}

.label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-purple);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    color: var(--primary-purple);
    font-weight: 600;
    margin-top: 1.5rem;
}

.link-arrow::after {
    content: '→';
    margin-left: 8px;
    transition: margin 0.3s ease;
}

.link-arrow:hover::after {
    margin-left: 14px;
}

.insight-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.insight-header {
    text-align: center;
    margin-bottom: 60px;
}

.insight-split-layout {
    display: flex;
    gap: 60px;
}

.insight-left,
.insight-right {
    flex: 1;
}

.insight-item {
    margin-bottom: 50px;
}

.insight-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.testimonial-section {
    padding: 100px 0;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-dark) 100%);
    padding: 60px;
    border-radius: 16px;
    color: white;
}

.testimonial-quote {
    font-size: 1.35rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: white;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    font-size: 1.1rem;
}

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

.services-preview-split {
    display: flex;
    padding: 100px 0;
}

.services-quick-list {
    margin: 40px 0;
}

.service-quick-item {
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.service-quick-item:last-child {
    border-bottom: none;
}

.service-quick-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.service-quick-item p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.price-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-purple);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.cta-section-dark {
    padding: 120px 0;
    background: var(--text-dark);
    color: white;
    text-align: center;
}

.cta-section-dark h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

.form-section-split {
    display: flex;
    padding: 100px 0;
    background: var(--bg-light);
}

.split-form-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-form {
    flex: 1;
    padding: 60px;
    background: white;
    display: flex;
    align-items: center;
}

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

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    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: var(--primary-purple);
}

.form-group textarea {
    resize: vertical;
}

.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: none;
}

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

.sticky-cta-btn {
    display: inline-block;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--coral-light) 0%, var(--coral) 100%);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.4);
    transition: transform 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: scale(1.05);
    color: white;
}

.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
}

.story-section {
    padding: 100px 0;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.values-split {
    display: flex;
    padding: 100px 0;
    background: var(--bg-light);
}

.value-item {
    margin-bottom: 40px;
}

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

.team-section {
    padding: 100px 0;
}

.team-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.team-card {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 24px;
}

.team-role {
    display: block;
    color: var(--primary-purple);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-card p {
    font-size: 0.95rem;
}

.approach-split {
    display: flex;
    padding: 100px 0;
}

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

.approach-steps {
    margin-top: 30px;
}

.approach-step {
    padding: 20px 0;
    border-left: 3px solid var(--primary-purple);
    padding-left: 24px;
    margin-bottom: 24px;
}

.approach-step strong {
    color: var(--primary-purple);
}

.cta-section {
    padding: 100px 0;
    text-align: center;
    background: var(--bg-light);
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.services-intro {
    padding: 60px 0;
}

.services-detailed {
    padding: 60px 0;
}

.service-detail-card {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
    align-items: center;
}

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

.service-detail-content {
    flex: 1.2;
}

.service-detail-visual {
    flex: 1;
    min-height: 400px;
}

.service-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-purple);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.service-features {
    margin: 30px 0;
    padding-left: 0;
    list-style: none;
}

.service-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

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

.service-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.service-duration {
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.process-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.process-steps {
    margin-top: 60px;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.contact-info-section {
    padding: 80px 0;
}

.contact-split {
    display: flex;
    gap: 80px;
}

.contact-info-block {
    flex: 1;
}

.info-item {
    margin-bottom: 40px;
}

.info-item h3 {
    margin-bottom: 0.5rem;
}

.info-item p {
    margin-bottom: 0.5rem;
}

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

.contact-map-placeholder {
    flex: 1;
}

.map-visual {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
}

.contact-approach {
    padding: 100px 0;
    background: var(--bg-light);
}

.approach-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.approach-item {
    flex: 1;
    min-width: 260px;
}

.faq-section {
    padding: 100px 0;
}

.faq-list {
    margin-top: 60px;
}

.faq-item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-purple);
}

.contact-cta-section {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.cta-lead {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.thanks-hero {
    padding: 120px 0;
    text-align: center;
    background: var(--bg-light);
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.thanks-info {
    background: white;
    padding: 24px;
    border-radius: 12px;
    margin-top: 40px;
}

.thanks-info p {
    margin: 0;
}

.next-steps-section {
    padding: 100px 0;
}

.steps-timeline {
    margin-top: 60px;
}

.timeline-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 29px;
    top: 60px;
    width: 2px;
    height: calc(100% + 50px);
    background: var(--border-color);
}

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

.step-content h3 {
    margin-bottom: 0.5rem;
}

.thanks-resources {
    padding: 100px 0;
    background: var(--bg-light);
}

.resource-cards {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1;
    min-width: 260px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.resource-card h3 {
    margin-bottom: 0.75rem;
}

.resource-card p {
    margin-bottom: 1.5rem;
}

.card-arrow {
    color: var(--primary-purple);
    font-weight: 700;
    font-size: 1.5rem;
}

.thanks-contact-info {
    padding: 60px 0;
    text-align: center;
}

.thanks-contact-info a {
    font-weight: 600;
}

.legal-header {
    padding: 80px 0 40px;
    background: var(--bg-light);
    text-align: center;
}

.legal-date {
    color: var(--text-light);
    font-style: italic;
}

.legal-content {
    padding: 80px 0;
}

.legal-content h2 {
    margin-top: 50px;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    margin-top: 30px;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 30px;
}

.legal-content ul li {
    margin-bottom: 10px;
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

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

.gdpr-table th,
.cookies-table th {
    background: var(--bg-light);
    font-weight: 700;
    color: var(--text-dark);
}

.gdpr-table td,
.cookies-table td {
    color: var(--text-gray);
}

@media (max-width: 968px) {
    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-split,
    .intro-split,
    .case-split,
    .services-preview-split,
    .form-section-split,
    .page-hero-split,
    .values-split,
    .approach-split,
    .service-detail-card {
        flex-direction: column;
    }

    .intro-split.reverse,
    .approach-split.reverse,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .split-content,
    .split-visual,
    .split-form-content,
    .split-form {
        padding: 40px 20px;
    }

    .hero-right,
    .visual-block,
    .hero-image {
        min-height: 400px;
    }

    .insight-split-layout,
    .contact-split {
        flex-direction: column;
        gap: 40px;
    }

    .service-detail-visual {
        min-height: 300px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta-btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
        gap: 20px;
    }

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

    .nav-toggle {
        display: flex;
    }

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

    .cookie-content p {
        min-width: auto;
    }

    .service-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .testimonial-card {
        padding: 40px 30px;
    }

    .testimonial-quote {
        font-size: 1.15rem;
    }
}