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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

.cookie-buttons {
    display: flex;
    gap: 12px;
}

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

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

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

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

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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1300px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    background: #ecf0f1;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
}

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #2c3e50;
}

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    position: relative;
    margin-top: 100px;
    padding: 60px 5%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content-offset {
    width: 45%;
    align-self: center;
    padding-right: 40px;
}

.hero-title {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a252f;
}

.hero-subtitle {
    font-size: 20px;
    color: #546e7a;
    line-height: 1.7;
}

.hero-image-wrap {
    width: 55%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #b0bec5;
}

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

.intro-story {
    padding: 120px 5%;
    display: flex;
    gap: 60px;
    align-items: center;
    background: #ffffff;
}

.story-block-left {
    width: 50%;
}

.story-block-left h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.story-block-left p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.8;
}

.story-image-right {
    width: 50%;
    background: #90a4ae;
    border-radius: 8px;
    overflow: hidden;
}

.story-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.problem-amplification {
    min-height: 500px;
    background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.85)),
                url('https://images.unsplash.com/photo-1484101403633-562f891dc89a?w=1400&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
}

.problem-overlay {
    max-width: 800px;
}

.problem-text h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 32px;
}

.problem-text p {
    font-size: 19px;
    color: #ecf0f1;
    margin-bottom: 20px;
    line-height: 1.8;
}

.insight-section {
    padding: 100px 5%;
    background: #fdfefe;
}

.insight-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.insight-card {
    width: 50%;
    padding: 50px;
    background: #e8f5e9;
    border-radius: 10px;
}

.insight-card.offset-top {
    margin-top: -60px;
}

.insight-card h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1b5e20;
}

.insight-card p {
    font-size: 17px;
    color: #2e7d32;
    margin-bottom: 18px;
    line-height: 1.75;
}

.insight-image {
    width: 50%;
    background: #a5d6a7;
    border-radius: 8px;
    overflow: hidden;
}

.insight-image.offset-bottom {
    margin-top: 60px;
}

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

.trust-building {
    padding: 100px 5%;
    background: #263238;
}

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

.trust-content-asymmetric h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 60px;
    text-align: center;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 56px;
    font-weight: 700;
    color: #ffd54f;
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 17px;
    color: #cfd8dc;
}

.testimonials-inline {
    padding: 120px 5%;
    background: #f1f8e9;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-card {
    max-width: 700px;
    padding: 36px 44px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.testimonial-card.tilt-left {
    align-self: flex-start;
    margin-left: 8%;
}

.testimonial-card.tilt-right {
    align-self: flex-end;
    margin-right: 8%;
}

.testimonial-card p {
    font-size: 18px;
    font-style: italic;
    color: #37474f;
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-author {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #546e7a;
}

.benefits-reveal {
    padding: 100px 5%;
    background: #ffffff;
}

.benefits-reveal h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 70px;
    color: #1c313a;
}

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

.benefit-block {
    background: #f5f5f5;
    padding: 36px;
    border-radius: 8px;
}

.benefit-block.large {
    width: calc(60% - 15px);
}

.benefit-block.medium {
    width: calc(50% - 15px);
    padding: 0;
    background: #cfd8dc;
    overflow: hidden;
}

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

.benefit-block.small {
    width: calc(40% - 15px);
}

.benefit-block.offset {
    margin-top: 40px;
}

.benefit-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #263238;
}

.benefit-block p {
    font-size: 16px;
    color: #455a64;
    line-height: 1.7;
}

.services-pricing {
    padding: 100px 5%;
    background: #eceff1;
}

.services-pricing h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1c313a;
}

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

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    width: calc(33.333% - 20px);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.service-card.offset-up {
    margin-top: -30px;
}

.service-card.offset-down {
    margin-top: 30px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #263238;
}

.service-card p {
    font-size: 15px;
    color: #546e7a;
    margin-bottom: 24px;
    flex-grow: 1;
    line-height: 1.6;
}

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

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

.btn-select:hover {
    background: #00695c;
}

.btn-select:active {
    transform: scale(0.98);
}

.form-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-container-asymmetric {
    max-width: 700px;
    margin: 0 0 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a237e;
}

.form-intro p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 36px;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #37474f;
}

.form-group input,
.form-group select {
    padding: 14px;
    border: 1px solid #cfd8dc;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 32px;
    background: #5e35b1;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    margin-top: 12px;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #4527a0;
}

.btn-submit:active {
    transform: scale(0.98);
}

.disclaimer-section {
    padding: 60px 5%;
    background: #fff8e1;
}

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

.disclaimer-content p {
    font-size: 14px;
    color: #5d4037;
    line-height: 1.7;
}

.references-section {
    padding: 60px 5%;
    background: #fafafa;
}

.references-section h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #263238;
    text-align: center;
}

.references-list {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 24px;
}

.references-list li {
    margin-bottom: 16px;
    font-size: 14px;
    color: #546e7a;
    line-height: 1.6;
}

.references-list a {
    color: #1565c0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.references-list a:hover {
    color: #0d47a1;
    text-decoration: underline;
}

.footer {
    background: #263238;
    color: #cfd8dc;
    padding: 60px 5% 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #fff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
}

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

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

.footer-column a {
    color: #90caf9;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #64b5f6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #37474f;
    font-size: 13px;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 5%;
    margin-top: 100px;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: #fff;
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #00897b;
}

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

.thanks-content .btn-home {
    display: inline-block;
    padding: 14px 32px;
    background: #00897b;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 24px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.thanks-content .btn-home:hover {
    background: #00695c;
}

.contact-page {
    margin-top: 100px;
    padding: 80px 5%;
    background: #fff;
    min-height: 60vh;
}

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

.contact-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #263238;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #37474f;
}

.contact-item p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.7;
}

.about-page {
    margin-top: 100px;
    padding: 80px 5%;
    background: #fafafa;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content h1 {
    font-size: 46px;
    margin-bottom: 32px;
    color: #263238;
}

.about-content h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #37474f;
}

.about-content p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-page {
    margin-top: 100px;
    padding: 80px 5%;
    background: #fff;
}

.services-page-content {
    max-width: 1100px;
    margin: 0 auto;
}

.services-page-content h1 {
    font-size: 46px;
    margin-bottom: 60px;
    text-align: center;
    color: #263238;
}

.service-detail {
    margin-bottom: 50px;
    padding: 40px;
    background: #f5f5f5;
    border-radius: 8px;
}

.service-detail h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #263238;
}

.service-detail p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-detail .price {
    font-size: 24px;
    font-weight: 700;
    color: #00796b;
}

.legal-page {
    margin-top: 100px;
    padding: 80px 5%;
    background: #fff;
    min-height: 70vh;
}

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

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 32px;
    color: #263238;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #37474f;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #455a64;
}

.legal-content p {
    font-size: 15px;
    color: #546e7a;
    margin-bottom: 16px;
    line-height: 1.75;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 28px;
}

.legal-content li {
    font-size: 15px;
    color: #546e7a;
    margin-bottom: 10px;
    line-height: 1.7;
}

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

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

    .hero-content-offset {
        padding-right: 0;
        margin-bottom: 30px;
    }

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

    .story-block-left,
    .story-image-right {
        width: 100%;
    }

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

    .insight-card,
    .insight-image {
        width: 100%;
    }

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

    .benefit-block.large,
    .benefit-block.medium,
    .benefit-block.small {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(255, 255, 255, 0.98);
        padding: 20px;
        border-radius: 0 0 12px 12px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: 36px;
    }

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

    .service-card {
        width: 100%;
    }

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

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