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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f4c75;
    --highlight-color: #3282b8;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --gray: #666;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

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

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

.cookie-content a {
    color: var(--highlight-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept, .btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--highlight-color);
    color: var(--white);
}

.btn-accept:hover {
    background: var(--accent-color);
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

.header-async {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-primary {
    display: flex;
    gap: 1.5rem;
}

.nav-primary a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-primary a:hover {
    color: var(--highlight-color);
}

.ad-disclosure {
    padding: 0.5rem 1rem;
    background: var(--light-bg);
    font-size: 0.75rem;
    color: var(--gray);
    border-radius: 4px;
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    align-items: center;
    padding: 4rem 5%;
    gap: 4rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content-left {
    flex: 1;
    max-width: 580px;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.hero-content-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content-left p {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--highlight-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15,76,117,0.3);
}

.hero-image-right {
    flex: 1;
    position: relative;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    object-fit: cover;
    background-color: var(--light-bg);
}

.story-block {
    padding: 6rem 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
    background: var(--white);
}

.story-narrow {
    flex: 1.2;
    max-width: 600px;
}

.story-narrow h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.story-narrow p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.story-block img {
    flex: 1;
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--light-bg);
}

.services-reveal {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.services-header-offset {
    max-width: 700px;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.services-header-offset h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.services-grid-async {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card-left, .service-card-right {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.service-card-right {
    flex-direction: row-reverse;
}

.service-card-left img, .service-card-right img {
    flex: 1;
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--light-bg);
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-block;
    color: var(--highlight-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--highlight-color);
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.trust-segment {
    padding: 6rem 5%;
    background: var(--primary-color);
    color: var(--white);
}

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

.trust-content-wide h2 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    text-align: center;
}

.trust-features {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
}

.trust-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.trust-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.trust-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
}

.testimonials-flow {
    padding: 6rem 5%;
    background: var(--white);
}

.testimonial-block {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background: var(--light-bg);
    border-radius: 10px;
    border-left: 5px solid var(--highlight-color);
}

.testimonial-block:last-child {
    margin-bottom: 0;
}

.testimonial-block blockquote {
    font-style: normal;
}

.testimonial-block p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.testimonial-block cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--gray);
    font-size: 0.95rem;
}

.pricing-reveal {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.pricing-header h2 {
    font-size: 2.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-header p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.price-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.price-card.featured {
    border: 3px solid var(--highlight-color);
}

.card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--highlight-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
}

.price-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin-bottom: 1.5rem;
}

.price-features {
    list-style: none;
    margin-bottom: 2rem;
}

.price-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--light-bg);
    color: var(--gray);
    font-size: 0.95rem;
}

.price-features li:last-child {
    border-bottom: none;
}

.btn-select-service {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-select-service:hover {
    background: var(--highlight-color);
}

.form-section-offset {
    padding: 6rem 5%;
    background: var(--white);
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-container-left {
    flex: 1;
    max-width: 450px;
}

.form-container-left h2 {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-container-left p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
}

.form-wrapper-right {
    flex: 1;
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    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: var(--highlight-color);
}

.btn-submit {
    padding: 1rem 2rem;
    background: var(--highlight-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--highlight-color) 100%);
    text-align: center;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 2.6rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--highlight-color);
}

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

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    background: var(--light-bg);
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    background: var(--white);
    padding: 4rem;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.thanks-icon {
    font-size: 4rem;
    color: var(--highlight-color);
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-content p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.legal-page {
    padding: 4rem 5%;
    background: var(--white);
}

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

.legal-content h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.legal-content ul, .legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 0.7rem;
}

.contact-page {
    padding: 4rem 5%;
    background: var(--light-bg);
}

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

.contact-container h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-info {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-bg);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
}

.contact-item p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
}

@media (max-width: 968px) {
    .hero-offset {
        flex-direction: column;
        min-height: auto;
        padding: 3rem 5%;
    }

    .hero-content-left h1 {
        font-size: 2.4rem;
    }

    .story-block {
        flex-direction: column;
        padding: 4rem 5%;
    }

    .service-card-left, .service-card-right {
        flex-direction: column;
    }

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

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .form-section-offset {
        flex-direction: column;
    }

    .footer-main {
        flex-direction: column;
    }

    .nav-primary {
        flex-direction: column;
        gap: 0.7rem;
    }

    .header-async {
        flex-direction: column;
        gap: 1rem;
    }

    .header-right {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .hero-content-left h1 {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
}