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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --text-color: #2d2d2d;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

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

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

ul {
    list-style: none;
}

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

.container.narrow {
    max-width: 800px;
}

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

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

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

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

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

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

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

.hero-text {
    max-width: 600px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-lead {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 15px 35px;
    border-radius: var(--border-radius);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.cta-primary:hover {
    background: #d63851;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

.cta-primary.large {
    padding: 20px 50px;
    font-size: 1.125rem;
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: var(--border-radius);
    font-weight: 600;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

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

.cta-inline {
    color: var(--accent-color);
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 2px;
}

.cta-inline:hover {
    border-bottom-color: transparent;
}

.cta-link {
    color: var(--accent-color);
    font-weight: 600;
}

.trust-bar {
    background: var(--accent-color);
    padding: 20px 0;
    text-align: center;
}

.trust-text {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 500;
}

section {
    padding: 80px 0;
}

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

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

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

.split-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.split-content p {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

.split-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.problem-section {
    background: var(--light-bg);
}

.insight-section {
    background: var(--white);
}

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

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

.subtitle {
    font-size: 1.25rem;
    color: #666;
}

.insight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.insight-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

.insight-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

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

.story-section {
    background: var(--light-bg);
}

.story-intro {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.story-visual {
    margin: 40px 0;
}

.story-visual img {
    border-radius: var(--border-radius);
}

.testimonials-scattered {
    background: var(--primary-color);
    color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--white);
}

.testimonial-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-box {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
    backdrop-filter: blur(10px);
}

.testimonial-box.left {
    margin-right: 20%;
}

.testimonial-box.right {
    margin-left: 20%;
}

.testimonial-box.center {
    margin: 0 10%;
}

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

cite {
    font-style: normal;
    font-weight: 600;
    color: var(--accent-color);
}

.services-preview {
    background: var(--white);
}

.service-quick-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.service-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0.5rem 0;
}

.transformation-section {
    background: var(--light-bg);
}

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

.transformation-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.transform-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    text-align: center;
}

.transform-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

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

.form-section {
    background: var(--primary-color);
    color: var(--white);
}

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

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

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

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    color: var(--text-color);
}

.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: 12px 15px;
    border: 2px solid #ddd;
    border-radius: var(--border-radius);
    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(--accent-color);
}

.contact-form button[type="submit"] {
    width: 100%;
    margin-top: 10px;
}

.final-cta {
    background: var(--light-bg);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

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

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

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

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

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

.footer-col a:hover {
    color: var(--accent-color);
}

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

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

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

.sticky-cta-button {
    background: var(--accent-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
    transition: var(--transition);
}

.sticky-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.cookie-accept:hover {
    background: #d63851;
}

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

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

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

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.about-story,
.mission-section,
.team-section,
.values-section,
.results-section {
    background: var(--white);
}

.mission-section {
    background: var(--light-bg);
}

.mission-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

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

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-role {
    color: var(--accent-color);
    font-weight: 600;
    margin: 0.5rem 0;
}

.values-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
}

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

.results-list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 2rem;
}

.results-list li {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.approach-section {
    background: var(--light-bg);
}

.approach-cta {
    text-align: center;
    margin-top: 2rem;
}

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

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    text-align: center;
}

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

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

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

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

.service-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.service-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-body h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding-left: 30px;
    margin-bottom: 0.75rem;
    position: relative;
    font-size: 1.05rem;
}

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

.service-duration {
    font-weight: 600;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.services-grid .service-card {
    flex: 1;
    min-width: 300px;
}

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

.comparison-guide {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.guide-item {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--border-radius);
}

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

.faq-section {
    background: var(--white);
    padding: 60px 0;
}

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

.faq-item {
    background: var(--light-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

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

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

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

.contact-info {
    flex: 1;
}

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

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

.contact-email a {
    color: var(--accent-color);
    font-weight: 600;
}

.contact-image {
    flex: 1;
}

.contact-caption {
    margin-top: 1rem;
    font-style: italic;
    color: #666;
}

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

.visit-content {
    max-width: 800px;
    margin: 0 auto;
}

.visit-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.visit-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

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

.map-placeholder {
    background: var(--light-bg);
    padding: 100px 40px;
    border-radius: var(--border-radius);
    text-align: center;
}

.map-placeholder p {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
}

.map-note {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
    margin-top: 1rem;
}

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

.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

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

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

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

.thanks-message {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.thanks-info {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

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

.thanks-next h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.steps-list {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 40px;
}

.resources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.resource-card {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
}

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

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

.contact-email {
    font-size: 1.5rem;
    margin-top: 1rem;
}

.legal-page {
    padding: 80px 0;
    background: var(--white);
}

.legal-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
}

.legal-content h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
}

.legal-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.75rem;
}

.legal-content p {
    margin-bottom: 1.25rem;
}

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

.legal-nav {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

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

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

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

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

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

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

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

    .insight-grid,
    .transformation-grid,
    .services-grid,
    .team-grid,
    .values-layout {
        flex-direction: column;
    }

    .testimonial-box.left,
    .testimonial-box.right,
    .testimonial-box.center {
        margin: 0;
    }

    .footer-grid {
        flex-direction: column;
    }

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

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

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

    .contact-layout {
        flex-direction: column;
    }

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

    .hero-subtitle {
        font-size: 1.125rem;
    }

    section {
        padding: 50px 0;
    }

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

    .sticky-cta-button {
        padding: 12px 20px;
        font-size: 0.875rem;
    }
}