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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 0.9rem;
}

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

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    background: white;
    color: #1a1a1a;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
}

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

.btn-cookie.secondary {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-cookie.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 0.6;
}

.nav-cta {
    background: #1a1a1a;
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s;
}

.hero-immersive {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.intro-statement {
    padding: 8rem 5%;
    background: #1a1a1a;
    color: white;
}

.intro-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.lead-text {
    font-size: clamp(1.3rem, 3vw, 2rem);
    line-height: 1.6;
    font-weight: 300;
}

.visual-break {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.break-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.break-text {
    position: relative;
    z-index: 2;
    padding: 5%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.95);
    margin-left: 5%;
}

.break-text h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.2;
    font-weight: 700;
}

.story-section {
    padding: 8rem 5%;
    background: #f5f5f5;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-col {
    flex: 1;
}

.story-col h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-col p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.story-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.insight-reveal {
    padding: 10rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.insight-content {
    max-width: 900px;
    margin: 0 auto;
}

.insight-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 600;
}

.insight-headline {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin: 1.5rem 0;
    line-height: 1.2;
    font-weight: 800;
}

.insight-body {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-top: 2rem;
    opacity: 0.95;
}

.approach-section {
    padding: 8rem 5%;
    background: white;
}

.approach-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-header {
    text-align: center;
    margin-bottom: 4rem;
}

.approach-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.approach-header p {
    font-size: 1.2rem;
    color: #666;
}

.approach-steps {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 280px;
    padding: 3rem 2rem;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s;
}

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

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

.testimonials-inline {
    padding: 8rem 5%;
    background: #1a1a1a;
    color: white;
}

.testimonial-item {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

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

.testimonial-quote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 1rem;
    opacity: 0.7;
}

.visual-divider {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.divider-overlay {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    padding: 3rem;
    max-width: 700px;
    text-align: center;
}

.divider-text {
    font-size: 2rem;
    color: white;
    font-weight: 300;
    line-height: 1.5;
}

.benefits-layered {
    background: white;
}

.benefit-block {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.benefit-block.reverse {
    flex-direction: row-reverse;
}

.benefit-content {
    flex: 1;
    padding: 6rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f5f5f5;
}

.benefit-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.benefit-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
}

.benefit-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-width: 50%;
}

.trust-markers {
    padding: 6rem 5%;
    background: #667eea;
    color: white;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.trust-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.services-section {
    padding: 8rem 5%;
    background: white;
}

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

.services-intro h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.services-intro p {
    font-size: 1.2rem;
    color: #666;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.service-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-body h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-body p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.service-duration {
    font-size: 0.9rem;
    color: #888;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #667eea;
}

.btn-select {
    width: 100%;
    padding: 1rem;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
}

.btn-select:hover {
    background: #333;
}

.urgency-block {
    padding: 4rem 5%;
    background: #ff6b6b;
    color: white;
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.urgency-text {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.cta-urgency {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.cta-urgency:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-section {
    padding: 8rem 5%;
    background: #f5f5f5;
}

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

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

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

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

.main-form {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.1rem;
}

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

.thank-you-state {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.thank-you-state.hidden {
    display: none;
}

.thank-you-content {
    background: white;
    padding: 4rem;
    border-radius: 8px;
    text-align: center;
    max-width: 600px;
}

.thank-you-check {
    width: 80px;
    height: 80px;
    background: #4caf50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem auto;
}

.thank-you-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.thank-you-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.thank-you-note {
    font-style: italic;
    color: #888;
    margin-top: 1.5rem;
}

.btn-close {
    margin-top: 2rem;
    padding: 0.9rem 2rem;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
}

.btn-close:hover {
    background: #333;
}

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

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #667eea;
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(102, 126, 234, 0.6);
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-col p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.8;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.6;
}

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

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

    .nav-toggle {
        display: flex;
    }

    .story-container {
        flex-direction: column;
    }

    .break-image {
        width: 100%;
        height: 50%;
        top: 50%;
    }

    .break-text {
        margin: 2rem;
        width: calc(100% - 4rem);
    }

    .approach-steps {
        flex-direction: column;
    }

    .benefit-block,
    .benefit-block.reverse {
        flex-direction: column;
    }

    .trust-container {
        flex-direction: column;
        gap: 2rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .sticky-btn {
        display: block;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .main-form {
        padding: 2rem 1.5rem;
    }

    .thank-you-content {
        padding: 2rem;
    }

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