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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --text-color: #2d2d2d;
    --light-bg: #f8f9fa;
    --dark-bg: #0f3460;
    --white: #ffffff;
    --gray: #6c757d;
    --light-gray: #e9ecef;
}

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

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.header-right {
    display: flex;
    gap: 30px;
}

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

.header-right a:hover,
.header-right a.active {
    color: var(--accent-color);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: 0.3s;
}

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

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

.hero-left {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-right {
    background: var(--light-gray);
    overflow: hidden;
}

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

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

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

.cta-secondary {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.cta-secondary:hover {
    background: var(--accent-color);
    color: var(--white);
}

.trust-strip {
    padding: 40px 0;
    background: var(--light-bg);
    text-align: center;
}

.trust-strip p {
    font-size: 18px;
    color: var(--gray);
    font-style: italic;
}

.insight-section,
.methodology-section,
.story-section,
.values-section {
    padding: 100px 0;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.split-image,
.split-content {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.split-content p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.check-list {
    list-style: none;
    margin-top: 30px;
}

.check-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
}

.check-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.dark-bg {
    background: var(--dark-bg);
    color: var(--white);
}

.dark-bg h2,
.dark-bg h3 {
    color: var(--white);
}

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

.centered {
    text-align: center;
}

.lead-text {
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.8;
}

.problem-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.problem-card {
    flex: 1;
    padding: 40px 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.problem-card p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.method-step {
    margin-bottom: 35px;
    padding-left: 70px;
    position: relative;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
}

.method-step h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.method-step p {
    font-size: 16px;
    line-height: 1.6;
}

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

.testimonial {
    padding: 50px;
    background: var(--white);
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.testimonial p {
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--gray);
}

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

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 20px;
    text-align: center;
    color: var(--gray);
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
    position: relative;
}

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

.service-card.featured {
    border: 3px solid var(--accent-color);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-header {
    margin-bottom: 20px;
}

.service-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
}

.service-features li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 20px;
}

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

.form-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: var(--gray);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--light-gray);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
}

.checkbox-group a {
    color: var(--accent-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

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

.final-cta,
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.final-cta h2,
.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--white);
}

.final-cta p,
.cta-section p {
    font-size: 20px;
    margin-bottom: 30px;
}

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

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 25px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

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

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

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

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

.btn-cookie,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

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

.btn-cookie:hover {
    background: #d63850;
}

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

.btn-cookie-reject:hover {
    background: var(--white);
    color: var(--primary-color);
}

.page-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 22px;
    opacity: 0.9;
}

.philosophy-section,
.clients-section,
.team-section {
    padding: 80px 0;
}

.philosophy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.philosophy-card {
    padding: 40px 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.philosophy-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--white);
}

.philosophy-card p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.values-list {
    list-style: none;
}

.values-list li {
    padding: 15px 0;
    font-size: 18px;
    border-bottom: 1px solid var(--light-gray);
}

.values-list li:last-child {
    border-bottom: none;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    text-align: center;
}

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

.team-member h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-member p {
    color: var(--gray);
    font-size: 16px;
}

.service-detail-card {
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 40px;
    position: relative;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 30px;
}

.service-tagline {
    font-size: 18px;
    color: var(--gray);
    margin-top: 5px;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    white-space: nowrap;
}

.service-detail-body h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.service-detail-body ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-detail-body ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-detail-body ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.btn-inline {
    display: inline-block;
    padding: 14px 35px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-inline:hover {
    background: #d63850;
}

.services-detail {
    padding: 80px 0;
}

.comparison-section {
    padding: 80px 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.comparison-item {
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.comparison-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--white);
}

.comparison-item p {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 600;
}

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

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-gray);
}

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

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
}

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

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info,
.contact-map {
    flex: 1;
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
}

.contact-block a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-map img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.response-section {
    padding: 60px 0;
}

.inline-link {
    color: var(--accent-color);
    text-decoration: underline;
}

.thanks-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

.thanks-service {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    font-size: 18px;
}

.next-steps {
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step-item {
    text-align: center;
    padding: 30px;
}

.step-num {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 20px;
}

.step-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray);
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #d63850;
}

.legal-page {
    padding: 60px 0 100px;
}

.legal-intro {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-page ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-page a {
    color: var(--accent-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header-right {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        display: none;
    }

    .header-right.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 60px 30px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-lead {
        font-size: 18px;
    }

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

    .problem-grid,
    .footer-grid,
    .contact-grid {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-header {
        flex-direction: column;
    }

    .service-price-large {
        align-self: flex-start;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie,
    .btn-cookie-reject {
        width: 100%;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}
