* {
    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: #e0e0e0;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    border-top: 2px solid #ff5722;
    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;
    min-width: 250px;
    margin: 0;
    font-size: 14px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #ff5722;
    color: white;
}

.btn-accept:hover {
    background-color: #e64a19;
}

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

.btn-reject:hover {
    background-color: #333;
}

.header-asymmetric {
    background-color: #000;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #222;
}

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

.logo-block .logo {
    font-size: 28px;
    font-weight: 700;
    color: #ff5722;
    letter-spacing: -1px;
}

.ad-disclosure {
    font-size: 11px;
    color: #888;
    padding: 4px 10px;
    border: 1px solid #333;
    background-color: #111;
}

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

.nav-main a {
    font-size: 15px;
    font-weight: 500;
    color: #e0e0e0;
    transition: color 0.3s ease;
    position: relative;
}

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

.hero-offset {
    display: flex;
    min-height: 85vh;
    position: relative;
}

.hero-text-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #0d0d0d;
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-text-block h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 800;
}

.hero-subtext {
    font-size: 20px;
    color: #bbb;
    margin-bottom: 40px;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ff5722;
    color: white;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-hero:hover {
    background-color: #e64a19;
    transform: translateY(-2px);
}

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

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

.story-section {
    padding: 100px 40px;
    background-color: #0a0a0a;
}

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

.story-left {
    flex: 1.2;
    padding-right: 40px;
}

.story-left h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 700;
}

.story-left p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 24px;
    line-height: 1.7;
}

.story-right {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

.story-right img {
    width: 100%;
    height: 100%;
}

.problem-section {
    padding: 120px 40px;
    background-color: #111;
}

.problem-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.problem-card {
    flex: 1;
    min-width: 300px;
    padding: 50px;
    background-color: #0d0d0d;
}

.problem-card h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #fff;
    font-weight: 700;
}

.problem-card p {
    font-size: 17px;
    color: #bbb;
    line-height: 1.7;
}

.problem-card-1 {
    flex: 1.5;
}

.problem-card-2 {
    flex: 1;
    padding: 0;
    overflow: hidden;
}

.problem-card-2 img {
    width: 100%;
    height: 100%;
}

.problem-card-3 {
    flex: 1;
}

.insight-section {
    padding: 140px 40px;
    background-color: #ff5722;
}

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

.insight-box h2 {
    font-size: 46px;
    color: #fff;
    margin-bottom: 35px;
    font-weight: 800;
}

.insight-box p {
    font-size: 19px;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 24px;
}

.services-reveal {
    padding: 120px 40px;
    background-color: #0a0a0a;
}

.services-title {
    text-align: center;
    font-size: 52px;
    color: #fff;
    margin-bottom: 80px;
    font-weight: 800;
}

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

.service-card {
    flex: 1;
    min-width: 350px;
    background-color: #111;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-image {
    height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
}

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

.service-content h3 {
    font-size: 26px;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.service-price {
    font-size: 32px;
    color: #ff5722;
    font-weight: 700;
    margin-bottom: 24px;
    display: block;
}

.btn-service {
    padding: 14px 32px;
    background-color: #ff5722;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-service:hover {
    background-color: #e64a19;
    transform: translateY(-2px);
}

.testimonials-inline {
    padding: 100px 40px;
    background-color: #0d0d0d;
}

.testimonials-inline h2 {
    text-align: center;
    font-size: 46px;
    color: #fff;
    margin-bottom: 70px;
    font-weight: 700;
}

.testimonials-flow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-item {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: #1a1a1a;
    border-left: 4px solid #ff5722;
}

.testimonial-item p {
    font-size: 17px;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #888;
    font-weight: 600;
}

.form-section {
    padding: 120px 40px;
    background-color: #111;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #1a1a1a;
    padding: 60px;
}

.form-container h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-intro {
    font-size: 17px;
    color: #bbb;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 15px;
    color: #e0e0e0;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    background-color: #0d0d0d;
    border: 1px solid #333;
    color: #e0e0e0;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 16px 40px;
    background-color: #ff5722;
    color: white;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 10px;
}

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

.final-cta {
    padding: 140px 40px;
    background-color: #0a0a0a;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 50px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 800;
}

.final-cta-content p {
    font-size: 20px;
    color: #bbb;
    margin-bottom: 40px;
}

.btn-final {
    display: inline-block;
    padding: 18px 50px;
    background-color: #ff5722;
    color: white;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-final:hover {
    background-color: #e64a19;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px 40px;
    background-color: #111;
}

.disclaimer-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 13px;
    color: #888;
    line-height: 1.7;
    text-align: center;
}

.footer-main {
    background-color: #000;
    padding: 70px 40px 30px;
    border-top: 1px solid #222;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

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

.footer-col p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

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

.footer-bottom p {
    font-size: 13px;
    color: #666;
}

.page-hero {
    padding: 100px 40px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 56px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 800;
}

.page-hero-content p {
    font-size: 20px;
    color: #bbb;
}

.about-content {
    padding: 80px 40px 120px;
    background-color: #0a0a0a;
}

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

.about-intro h2 {
    font-size: 44px;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-intro p {
    font-size: 19px;
    color: #bbb;
    line-height: 1.7;
}

.about-story-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 100px;
}

.about-block {
    flex: 1;
    min-width: 350px;
    padding: 50px;
    background-color: #0d0d0d;
}

.about-block h3 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 24px;
    font-weight: 700;
}

.about-block p {
    font-size: 17px;
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-values {
    max-width: 1200px;
    margin: 0 auto 100px;
}

.about-values h2 {
    font-size: 44px;
    color: #fff;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #111;
}

.value-item h4 {
    font-size: 24px;
    color: #ff5722;
    margin-bottom: 16px;
    font-weight: 700;
}

.value-item p {
    font-size: 16px;
    color: #bbb;
    line-height: 1.6;
}

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

.about-team h2 {
    font-size: 44px;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-team p {
    font-size: 18px;
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 24px;
}

.cta-section {
    padding: 100px 40px;
    background-color: #111;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    color: #bbb;
    margin-bottom: 40px;
}

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ff5722;
    color: white;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #e64a19;
    transform: translateY(-2px);
}

.services-detailed {
    padding: 80px 40px 120px;
    background-color: #0a0a0a;
}

.service-detail {
    max-width: 1400px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-detail-reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    height: 450px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
}

.service-detail-content {
    flex: 1;
    padding: 40px;
}

.service-detail-content h2 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-detail-price {
    font-size: 36px;
    color: #ff5722;
    font-weight: 700;
    margin-bottom: 24px;
    display: block;
}

.service-detail-content p {
    font-size: 17px;
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    margin: 30px 0;
    padding-left: 20px;
}

.service-features li {
    font-size: 16px;
    color: #ccc;
    line-height: 1.8;
    list-style: disc;
    margin-bottom: 10px;
}

.btn-service-page {
    display: inline-block;
    padding: 14px 36px;
    background-color: #ff5722;
    color: white;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-service-page:hover {
    background-color: #e64a19;
    transform: translateY(-2px);
}

.contact-page-content {
    padding: 80px 40px 120px;
    background-color: #0a0a0a;
}

.contact-info-wrapper {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 20px;
    color: #ff5722;
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-detail p {
    font-size: 17px;
    color: #bbb;
    line-height: 1.7;
}

.contact-additional {
    flex: 1;
    background-color: #111;
    padding: 50px;
}

.contact-additional h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 24px;
    font-weight: 700;
}

.contact-additional p {
    font-size: 17px;
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map-placeholder p {
    font-size: 18px;
    color: #888;
}

.thanks-page {
    padding: 150px 40px;
    background-color: #0a0a0a;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 20px;
}

.selected-service-info {
    background-color: #111;
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid #ff5722;
}

.thanks-email {
    font-size: 20px;
    color: #ff5722;
    font-weight: 600;
    margin: 30px 0;
}

.btn-back {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ff5722;
    color: white;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.btn-back:hover {
    background-color: #e64a19;
    transform: translateY(-2px);
}

.legal-page {
    padding: 80px 40px 120px;
    background-color: #0a0a0a;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 44px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.legal-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 50px;
}

.legal-container h2 {
    font-size: 28px;
    color: #fff;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 22px;
    color: #ff5722;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-container p {
    font-size: 16px;
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-container ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-container ul li {
    font-size: 16px;
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 12px;
    list-style: disc;
}

.legal-container a {
    color: #ff5722;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #e64a19;
}

.cookies-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.cookies-table thead {
    background-color: #111;
}

.cookies-table th {
    padding: 16px;
    text-align: left;
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    border: 1px solid #333;
}

.cookies-table td {
    padding: 14px 16px;
    font-size: 15px;
    color: #bbb;
    border: 1px solid #333;
}

.cookies-table tbody tr {
    background-color: #0d0d0d;
}

.cookies-table tbody tr:nth-child(even) {
    background-color: #111;
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
    }

    .hero-text-block {
        max-width: 100%;
    }

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

    .service-detail,
    .service-detail-reverse {
        flex-direction: column;
    }

    .contact-info-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-asymmetric {
        padding: 15px 20px;
    }

    .nav-container {
        gap: 15px;
    }

    .nav-main {
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    .hero-text-block h1 {
        font-size: 40px;
    }

    .services-title {
        font-size: 38px;
    }

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

    .form-container {
        padding: 40px 30px;
    }

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

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

    .footer-grid {
        gap: 40px;
    }
}