* {
    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: #2c3e50;
    background: #ffffff;
}

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

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

.container-fluid {
    max-width: 100%;
    padding: 0 40px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

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

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

.btn-cookie-accept {
    background: #f39c12;
    color: #ffffff;
}

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

.btn-cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-cookie-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.header-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #e67e22;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #e67e22;
}

.ad-label {
    background: #34495e;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.hero-visual-story {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
}

.hero-text-layer {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 0 20px;
}

.hero-text-layer h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-subtext {
    font-size: 22px;
    line-height: 1.5;
    opacity: 0.95;
}

.intro-narrow {
    padding: 100px 20px;
    background: #f8f9fa;
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #34495e;
}

.problem-amplification {
    padding: 100px 20px;
    background: #ffffff;
}

.problem-amplification h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.problem-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.problem-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-8px);
}

.problem-card img {
    width: 100%;
    height: 240px;
    display: block;
}

.problem-card h3 {
    font-size: 22px;
    padding: 20px 25px 10px;
    color: #2c3e50;
}

.problem-card p {
    padding: 0 25px 25px;
    color: #555;
    line-height: 1.7;
}

.insight-section {
    padding: 100px 20px;
    background: #ecf0f1;
}

.insight-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

.large-text {
    font-size: 24px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #34495e;
    font-weight: 500;
}

.insight-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.insight-section a {
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
}

.story-section {
    padding: 100px 20px;
    background: #ffffff;
}

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

.story-image {
    flex: 1;
    min-width: 400px;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.story-content {
    flex: 1;
    min-width: 400px;
}

.story-content h3 {
    font-size: 30px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.benefits-reveal {
    padding: 100px 20px;
    background: #2c3e50;
    color: #ffffff;
}

.benefits-reveal h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 70px;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.benefit-item {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background: rgba(255,255,255,0.08);
    padding: 35px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #f39c12;
}

.benefit-item p {
    line-height: 1.7;
    color: #ecf0f1;
}

.benefit-item a {
    color: #f39c12;
    text-decoration: none;
}

.trust-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.trust-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.trust-section a {
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
}

.testimonials-inline {
    padding: 100px 20px;
    background: #ffffff;
}

.testimonials-inline h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background: #ecf0f1;
    padding: 40px;
    border-radius: 8px;
    border-left: 5px solid #e67e22;
}

.testimonial p {
    font-size: 19px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    color: #2c3e50;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #555;
}

.how-it-works {
    padding: 100px 20px;
    background: #f8f9fa;
}

.how-it-works h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.process-visual {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #e67e22;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.process-step p {
    line-height: 1.6;
    color: #555;
}

.composition-section {
    padding: 100px 20px;
    background: #ffffff;
}

.composition-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.composition-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.comp-item {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid #f39c12;
}

.comp-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.comp-item p {
    line-height: 1.7;
    color: #555;
}

.cta-soft {
    padding: 80px 20px;
    background: #e67e22;
    color: #ffffff;
    text-align: center;
}

.cta-soft h3 {
    font-size: 34px;
    margin-bottom: 20px;
}

.cta-soft p {
    font-size: 18px;
    margin-bottom: 35px;
}

.btn-cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background: #ffffff;
    color: #e67e22;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.services-pricing {
    padding: 100px 20px;
    background: #f8f9fa;
}

.services-pricing h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 340px;
    max-width: 400px;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card.featured {
    border: 3px solid #e67e22;
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e67e22;
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    z-index: 10;
}

.service-header {
    background: #2c3e50;
    color: #ffffff;
    padding: 30px 25px;
    text-align: center;
}

.service-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-price {
    font-size: 36px;
    font-weight: 800;
    color: #f39c12;
}

.service-body {
    padding: 30px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-desc {
    font-size: 16px;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
    flex: 1;
}

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #2c3e50;
    line-height: 1.5;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.btn-select-service {
    width: 100%;
    padding: 16px;
    background: #e67e22;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #d35400;
}

.form-section {
    padding: 100px 20px;
    background: #ffffff;
}

.form-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 25px;
    color: #2c3e50;
}

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #555;
}

.lead-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus {
    outline: none;
    border-color: #e67e22;
}

.form-group input[type="checkbox"] {
    margin-right: 10px;
}

.form-group label:has(input[type="checkbox"]) {
    display: flex;
    align-items: flex-start;
    font-weight: 400;
}

.form-group a {
    color: #e67e22;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #e67e22;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-trust {
    padding: 100px 20px;
    background: #ecf0f1;
    text-align: center;
}

.final-trust h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.final-trust p {
    font-size: 19px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 25px;
    color: #34495e;
}

.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 30px;
}

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

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

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

.footer-col p {
    line-height: 1.7;
    color: #ccc;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f39c12;
}

.footer-references {
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-bottom: 30px;
}

.footer-references h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #f39c12;
}

.references-list {
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.references-list a {
    color: #ccc;
    text-decoration: none;
}

.references-list a:hover {
    color: #f39c12;
}

.footer-disclaimer {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.7;
    color: #bbb;
}

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

@media (max-width: 768px) {
    .hero-text-layer h1 {
        font-size: 34px;
    }

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

    .main-nav {
        flex-direction: column;
        gap: 15px;
    }

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

    .story-image {
        min-width: 100%;
    }

    .story-content {
        min-width: 100%;
    }

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