* {
    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: #333;
    background: #fff;
}

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

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

.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;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #4CAF50;
    color: white;
}

.btn-cookie-accept:hover {
    background: #45a049;
}

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

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

.nav-floating {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #444;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #000;
}

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

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-content-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.hero-content-narrow h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtext {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.btn-hero-ghost {
    display: inline-block;
    padding: 1rem 3rem;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-hero-ghost:hover {
    background: #fff;
    color: #667eea;
}

.story-intro {
    padding: 6rem 2rem;
    background: #fafafa;
}

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

.content-narrow {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.story-intro h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #222;
}

.story-intro p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1.3rem;
    line-height: 1.7;
}

.problem-reveal {
    padding: 5rem 2rem;
    background: #fff;
}

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

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

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 12px;
}

.split-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #222;
}

.split-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.insight-block {
    padding: 5rem 2rem;
    background: #1a1a1a;
    color: #fff;
}

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

.insight-card h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.insight-card p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.storytelling-visual {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.background-image-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ff9a56 0%, #ff6a88 100%);
    opacity: 0.9;
}

.overlay-text-section {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.text-overlay-box {
    max-width: 700px;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.text-overlay-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #222;
}

.text-overlay-box p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.trust-indicators {
    padding: 5rem 2rem;
    background: #f8f8f8;
}

.trust-indicators h3 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #222;
}

.trust-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 2rem;
}

.trust-icon {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.trust-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #222;
}

.trust-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.testimonial-inline {
    padding: 5rem 2rem;
    background: #667eea;
}

.testimonial-inline blockquote {
    text-align: center;
    color: #fff;
}

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

.testimonial-inline cite {
    font-size: 1.1rem;
    font-style: normal;
    opacity: 0.9;
}

.benefits-asymmetric {
    padding: 5rem 2rem;
    background: #fff;
}

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

.benefit-block {
    flex: 1;
}

.benefit-block h3 {
    font-size: 2.1rem;
    margin-bottom: 1.5rem;
    color: #222;
}

.benefit-block p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.benefit-list li {
    padding: 0.8rem 0;
    font-size: 1.05rem;
    color: #444;
    padding-left: 1.5rem;
    position: relative;
}

.benefit-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.benefit-image {
    flex: 1;
}

.cta-inline-block {
    padding: 4rem 2rem;
    background: #f5f5f5;
    text-align: center;
}

.cta-text-large {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #222;
    font-weight: 600;
}

.btn-inline-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #222;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-inline-cta:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.deeper-story {
    padding: 5rem 2rem;
    background: #fff;
}

.deeper-story h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #222;
}

.deeper-story p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.3rem;
}

.testimonial-cards {
    padding: 5rem 2rem;
    background: #fafafa;
}

.testimonial-cards h3 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #222;
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.testimonial-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 0.95rem;
    color: #888;
    font-style: normal;
    font-weight: 600;
}

.value-proposition {
    padding: 4rem 2rem;
    background: #667eea;
    color: #fff;
    text-align: center;
}

.value-proposition h3 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.value-proposition p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.services-reveal {
    padding: 6rem 2rem;
    background: #fff;
}

.services-reveal h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #222;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-flow {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
}

.service-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ff6b6b;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.95);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 2rem;
}

.service-features span {
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-left: 3px solid #667eea;
    padding-left: 1rem;
}

.service-card.featured .service-features span {
    border-left-color: rgba(255, 255, 255, 0.7);
    color: rgba(255, 255, 255, 0.95);
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #5568d3;
    transform: scale(1.02);
}

.service-card.featured .btn-select-service {
    background: #fff;
    color: #667eea;
}

.service-card.featured .btn-select-service:hover {
    background: #f0f0f0;
}

.pricing-reveal {
    padding: 5rem 2rem;
    background: #f5f5f5;
}

.pricing-reveal h3 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #222;
}

.pricing-reveal > p {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.price-item {
    flex: 1;
    min-width: 240px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.price-item:hover {
    border-color: #667eea;
    transform: translateY(-3px);
}

.price-item.highlight {
    border-color: #667eea;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.15);
}

.price-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #222;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.price-detail {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.5;
}

.urgency-subtle {
    padding: 3rem 2rem;
    background: #fff8e1;
    text-align: center;
}

.urgency-text {
    font-size: 1.3rem;
    color: #f57c00;
    font-weight: 600;
}

.form-section {
    padding: 6rem 2rem;
    background: #fff;
}

.form-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #222;
}

.form-section > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 10px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    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: #667eea;
}

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

.btn-form-submit:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.final-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.final-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.btn-final-cta {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-final-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.footer-section p {
    font-size: 0.95rem;
    color: #999;
    line-height: 1.6;
}

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

.footer-section li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

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

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

.btn-sticky {
    display: block;
    padding: 1rem 2rem;
    background: #ff6b6b;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 107, 107, 0.5);
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }

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

    .hero-subtext {
        font-size: 1.1rem;
    }

    .split-layout {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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

    .services-flow {
        flex-direction: column;
    }

    .service-card {
        max-width: 100%;
    }

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

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

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

    .btn-sticky {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

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

    .content-centered,
    .content-narrow,
    .content-wide {
        padding: 0 1rem;
    }

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