* {
    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-color: #ffffff;
}

.ad-disclosure {
    background-color: #34495e;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-float {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 36px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 45%;
    padding: 80px 60px;
    background-color: #f8f9fa;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a252f;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #5a6c7d;
    font-weight: 400;
}

.hero-image-float {
    position: absolute;
    right: 0;
    top: 10%;
    width: 60%;
    height: 80%;
    background-size: cover;
    background-position: center;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
}

.story-hook {
    display: flex;
    padding: 100px 60px;
    gap: 60px;
    align-items: center;
    background-color: #ffffff;
}

.hook-offset {
    width: 55%;
}

.hook-text {
    font-size: 1.8rem;
    line-height: 1.5;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
}

.hook-continue {
    font-size: 1.2rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.hook-visual {
    width: 40%;
    position: relative;
}

.hook-visual img {
    width: 100%;
    height: auto;
    box-shadow: 15px -15px 0 #e74c3c;
}

.problem-section {
    padding: 120px 60px;
    background-color: #f8f9fa;
}

.problem-grid {
    display: flex;
    gap: 80px;
    max-width: 1200px;
}

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a252f;
}

.problem-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.problem-stats {
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-block {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background-color: #ffffff;
    border-left: 4px solid #e74c3c;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.5;
}

.insight-reveal {
    display: flex;
    min-height: 600px;
}

.reveal-image {
    width: 40%;
    position: relative;
}

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

.reveal-content {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 100px 80px 80px;
    background-color: #1a252f;
    color: #ffffff;
}

.reveal-content h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.reveal-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #e0e4e8;
    line-height: 1.7;
}

.cta-inline {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-inline:hover {
    background-color: #c0392b;
}

.trust-layer {
    padding: 120px 60px;
    background-color: #ffffff;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    color: #1a252f;
}

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

.trust-card {
    flex: 1;
    padding: 40px 30px;
    background-color: #f8f9fa;
    border-top: 3px solid #e74c3c;
}

.trust-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.trust-card p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.testimonials-inline {
    padding: 100px 60px;
    background-color: #ecf0f1;
    display: flex;
    gap: 60px;
}

.testimonial-float {
    flex: 1;
    padding: 50px 40px;
    background-color: #ffffff;
    position: relative;
}

.testimonial-float blockquote {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2c3e50;
    font-style: italic;
}

.testimonial-float cite {
    display: block;
    margin-top: 25px;
    font-size: 0.95rem;
    color: #5a6c7d;
    font-style: normal;
    font-weight: 600;
}

.services-reveal {
    padding: 120px 60px;
    background-color: #ffffff;
}

.services-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
    color: #1a252f;
}

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e4e8;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card.large {
    width: calc(60% - 15px);
}

.service-card.medium {
    width: calc(50% - 15px);
}

.service-card.small {
    width: calc(40% - 15px);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.service-content h3 {
    font-size: 1.5rem;
    color: #1a252f;
}

.service-content p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e74c3c;
    margin-top: 10px;
}

.btn-select {
    padding: 12px 28px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
    margin-top: auto;
}

.btn-select:hover {
    background-color: #1a252f;
}

.form-section {
    padding: 120px 60px;
    background-color: #f8f9fa;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #1a252f;
}

.form-intro {
    color: #5a6c7d;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e4e8;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background-color: #f8f9fa;
}

.btn-submit {
    padding: 16px 40px;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #c0392b;
}

.footer-asymmetric {
    background-color: #1a252f;
    color: #e0e4e8;
    padding: 80px 60px 30px;
}

.footer-main {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-block {
    flex: 1;
}

.footer-block h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-block p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #b0b8c1;
}

.footer-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-block ul li a {
    color: #b0b8c1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-block ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #e74c3c;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #b0b8c1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #7f8c99;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.6;
}

.cookie-content a {
    color: #e74c3c;
    text-decoration: underline;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

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

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

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

.page-header {
    padding: 100px 60px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #1a252f;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.about-content {
    padding: 80px 60px;
}

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

.about-intro p {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #2c3e50;
}

.about-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 120px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a252f;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #5a6c7d;
    line-height: 1.7;
}

.about-image {
    width: 45%;
}

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

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

.about-values h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a252f;
}

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

.value-card {
    flex: 1;
    padding: 40px 30px;
    background-color: #f8f9fa;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-card p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.approach-image {
    width: 45%;
}

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

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a252f;
}

.approach-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #5a6c7d;
    line-height: 1.7;
}

.services-page {
    padding: 80px 60px;
}

.service-detail {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #2c3e50;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.price-label {
    font-size: 1rem;
    color: #5a6c7d;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e74c3c;
}

.service-detail-image {
    width: 45%;
}

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

.contact-page {
    padding: 80px 60px;
}

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 80px;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background-color: #f8f9fa;
}

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.contact-card p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 10px;
}

.contact-note {
    font-size: 0.9rem;
    font-style: italic;
}

.contact-additional {
    max-width: 800px;
    margin: 0 auto;
}

.contact-additional h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.contact-additional p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-areas {
    list-style: none;
    margin: 20px 0;
}

.service-areas li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #2c3e50;
    font-size: 1.05rem;
}

.service-areas li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 1.5rem;
}

.service-note {
    font-style: italic;
    color: #7f8c99;
}

.thanks-page {
    padding: 120px 60px;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.thanks-message {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 50px;
}

.thanks-details {
    text-align: left;
    margin-bottom: 40px;
    padding: 40px;
    background-color: #f8f9fa;
}

.thanks-details h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.thanks-steps {
    margin-left: 20px;
}

.thanks-steps li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.thanks-note {
    font-size: 1rem;
    color: #7f8c99;
    margin-bottom: 40px;
}

.thanks-service-info {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    padding: 14px 32px;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #c0392b;
}

.btn-secondary {
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #1a252f;
}

.legal-content {
    padding: 80px 60px;
}

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

.legal-text h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: #1a252f;
}

.legal-text h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    color: #2c3e50;
}

.legal-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 15px;
}

.legal-text ul {
    margin: 15px 0 25px 30px;
}

.legal-text ul li {
    margin-bottom: 10px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

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

.cookies-table th,
.cookies-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #e0e4e8;
}

.cookies-table th {
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    color: #5a6c7d;
}

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

    .hero-content-offset {
        width: 100%;
    }

    .hero-image-float {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
    }

    .story-hook,
    .about-grid,
    .about-approach,
    .service-detail {
        flex-direction: column;
    }

    .hook-offset,
    .hook-visual,
    .about-text,
    .about-image,
    .approach-image,
    .approach-text,
    .service-detail-content,
    .service-detail-image {
        width: 100%;
    }

    .service-card.large,
    .service-card.medium,
    .service-card.small {
        width: 100%;
    }

    .trust-grid,
    .values-grid,
    .footer-main,
    .testimonials-inline {
        flex-direction: column;
    }

    .problem-grid {
        flex-direction: column;
        gap: 40px;
    }

    .problem-stats {
        width: 100%;
    }
}

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

    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }

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

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

    .hook-text {
        font-size: 1.4rem;
    }

    .services-title,
    .page-header h1 {
        font-size: 2rem;
    }

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

    .footer-asymmetric {
        padding: 60px 30px 20px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }
}