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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    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-buttons {
    display: flex;
    gap: 15px;
}

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

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

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

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

.cookie-btn.reject:hover {
    background: #ffffff;
    color: #2c3e50;
}

.header-main {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-section {
    flex: 0 0 auto;
}

.logo-link {
    font-size: 26px;
    font-weight: 700;
    color: #e67e22;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo-link:hover {
    color: #d35400;
}

.ad-notice {
    flex: 1 1 auto;
    text-align: center;
}

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    background: #ecf0f1;
    border-radius: 4px;
}

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

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

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

.hero-visual {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.7), rgba(230, 126, 34, 0.5));
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

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

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
}

.story-intro {
    padding: 100px 0;
    background: #ffffff;
}

.story-intro h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.3;
}

.story-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.insight-block {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.insight-image {
    flex: 1;
    background: #ecf0f1;
}

.insight-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.insight-text {
    flex: 1;
}

.insight-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.insight-text p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #34495e;
}

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

.insight-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    color: #34495e;
}

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

.problem-amplify {
    padding: 100px 0;
    background: #ffffff;
}

.problem-amplify h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.problem-amplify > p {
    font-size: 18px;
    margin-bottom: 50px;
    color: #34495e;
}

.problem-cards {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.problem-card {
    flex: 1;
    padding: 35px;
    background: #ecf0f1;
    border-radius: 8px;
}

.problem-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #e74c3c;
}

.problem-card p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.6;
}

.trust-section {
    padding: 90px 0;
    background: #2c3e50;
    color: #ffffff;
}

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

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.trust-content p {
    font-size: 17px;
    margin-bottom: 20px;
    opacity: 0.92;
}

.trust-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #e67e22;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 5px;
}

.trust-image {
    flex: 1;
    background: #34495e;
}

.trust-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.testimonials-inline {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.testimonial-item {
    padding: 40px;
    background: #ffffff;
    margin-bottom: 30px;
    border-left: 4px solid #e67e22;
    border-radius: 4px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: #34495e;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #7f8c8d;
}

.services-reveal {
    padding: 100px 0;
    background: #ffffff;
}

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

.services-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: #34495e;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 300px;
}

.service-image {
    height: 250px;
    overflow: hidden;
    background: #ecf0f1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 20px;
    display: block;
}

.btn-select {
    padding: 14px 28px;
    background: #e67e22;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

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

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

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

.contact-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 15px;
    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: #e67e22;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.disclaimer-section {
    padding: 60px 0;
    background: #fffbf0;
    border-top: 2px solid #f39c12;
}

.disclaimer-text {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.8;
    text-align: center;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

.footer-columns {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #e67e22;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .insight-flex,
    .trust-split {
        flex-direction: column;
    }

    .problem-cards {
        flex-direction: column;
    }

    .trust-stats {
        flex-wrap: wrap;
    }

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

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

    .footer-columns {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(50% - 25px);
    }
}

@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
        text-align: center;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

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

    .contact-form {
        padding: 30px 20px;
    }

    .footer-col {
        flex: 1 1 100%;
    }
}