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

:root {
    --primary: #2d3436;
    --secondary: #0984e3;
    --accent: #fd79a8;
    --text: #2d3436;
    --text-light: #636e72;
    --bg: #ffffff;
    --bg-light: #f8f9fa;
    --border: #e1e8ed;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-right a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: var(--secondary);
}

.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: var(--primary);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 540px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
}

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

.hero-visual {
    flex: 1;
    height: 85vh;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #0770c7;
}

.intro-asymmetric {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
    background: var(--bg-light);
}

.intro-text-block {
    flex: 1.2;
}

.intro-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.intro-text-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.intro-image-offset {
    flex: 0.8;
}

.intro-image-offset img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.approach-section {
    padding: 6rem 5%;
}

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

.approach-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: box-shadow 0.3s;
}

.approach-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.card-icon {
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.approach-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

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

.services-highlight {
    padding: 6rem 5%;
    background: var(--bg-light);
}

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

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.services-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.service-block {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

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

.service-visual {
    flex: 1;
}

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

.service-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

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

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.select-service {
    padding: 0.9rem 2rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

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

.case-study-section {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
}

.case-study-content {
    flex: 1.3;
}

.case-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--accent);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.case-study-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    line-height: 1.3;
}

.case-study-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.case-results {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
}

.result-stat {
    display: flex;
    flex-direction: column;
}

.result-stat strong {
    font-size: 2.5rem;
    color: var(--secondary);
}

.result-stat span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.case-study-image {
    flex: 0.7;
}

.case-study-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.testimonials-section {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

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

.testimonial-author strong {
    display: block;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

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

.cta-split-section {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    background: var(--primary);
    color: white;
}

.cta-text-side {
    flex: 1;
}

.cta-text-side h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-text-side p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.9;
}

.cta-benefits {
    list-style: none;
}

.cta-benefits li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    opacity: 0.95;
}

.cta-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.cta-form-side {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255,255,255,0.1);
    color: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.contact-form option {
    color: var(--text);
}

.submit-btn {
    padding: 1rem 2rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #e25c8d;
}

.footer-split {
    background: #1a1d1f;
    color: white;
    padding: 4rem 5% 2rem;
}

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

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

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

.footer-col p,
.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
}

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

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-btn.accept {
    background: var(--secondary);
    color: white;
}

.cookie-btn.reject {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn:hover {
    opacity: 0.9;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
}

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(253, 121, 168, 0.4);
    transition: transform 0.3s;
}

.sticky-cta a:hover {
    transform: translateY(-2px);
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
}

.thanks-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.thanks-container p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.thanks-details {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-details p {
    margin-bottom: 0.5rem;
}

.contact-page {
    padding: 4rem 5%;
}

.contact-split {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.info-block p {
    margin-bottom: 0.3rem;
}

.about-page {
    padding: 4rem 5%;
}

.about-hero {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.about-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.about-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.team-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.team-member {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

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

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    color: var(--primary);
}

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

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

.services-page-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-page-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

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

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.legal-page .last-updated {
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.legal-page p,
.legal-page li {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

@media (max-width: 768px) {
    .hero-split,
    .intro-asymmetric,
    .case-study-section,
    .cta-split-section,
    .contact-split {
        flex-direction: column;
    }

    .hero-visual {
        height: 50vh;
    }

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

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

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

    .nav-right {
        gap: 1rem;
    }

    .footer-main {
        gap: 2rem;
    }

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