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

.ad-notice {
    background: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.floating-nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

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

nav {
    display: flex;
    gap: 35px;
}

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

nav a:hover {
    color: #3498db;
}

.hero-immersive {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding: 60px 40px;
}

.hero-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.hero-text-zone {
    flex: 1;
    max-width: 600px;
}

.hero-text-zone h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a252f;
    font-weight: 700;
}

.hero-intro {
    font-size: 20px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 40px;
}

.cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.hero-visual {
    flex: 1;
    background: #d4dae0;
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.story-block {
    padding: 120px 40px;
    background: #ffffff;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
}

.narrow-content h2 {
    font-size: 42px;
    margin-bottom: 35px;
    color: #1a252f;
    line-height: 1.2;
}

.narrow-content p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: #4a5568;
}

.inline-image-float {
    float: right;
    margin: 20px 0 30px 40px;
    max-width: 400px;
    background: #e8ecf1;
}

.inline-image-float img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.insight-reveal {
    padding: 100px 40px;
    background: #f8f9fa;
}

.split-insight {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-text h3 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a252f;
    line-height: 1.3;
}

.insight-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 22px;
    color: #4a5568;
}

.insight-visual {
    flex: 1;
    background: #d4dae0;
}

.insight-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.social-proof-inline {
    padding: 90px 40px;
    background: #2c3e50;
}

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

.testimonial-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

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

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

.benefit-cascade {
    padding: 110px 40px;
    background: #ffffff;
}

.cascade-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.cascade-wrapper h2 {
    font-size: 44px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a252f;
}

.benefit-grid-offset {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.benefit-item {
    padding-left: 60px;
}

.benefit-item:nth-child(even) {
    padding-left: 120px;
}

.benefit-item h4 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.benefit-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.services-reveal {
    padding: 100px 40px;
    background: #f8f9fa;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 70px;
    text-align: center;
}

.services-intro h2 {
    font-size: 46px;
    margin-bottom: 20px;
    color: #1a252f;
}

.services-subtitle {
    font-size: 19px;
    color: #4a5568;
    line-height: 1.6;
}

.services-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    display: flex;
    gap: 50px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
    margin-left: 80px;
}

.service-card:nth-child(odd) {
    margin-right: 80px;
}

.service-card.featured {
    margin: 0;
}

.service-card img {
    width: 45%;
    height: auto;
    object-fit: cover;
    background: #d4dae0;
}

.service-content {
    flex: 1;
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a252f;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 25px;
}

.service-select {
    padding: 14px 35px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-select:hover {
    background: #2980b9;
    transform: translateX(4px);
}

.trust-layer {
    padding: 90px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
    color: #ffffff;
}

.trust-content h3 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.trust-point {
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.trust-point h5 {
    font-size: 22px;
    margin-bottom: 14px;
}

.trust-point p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

.form-section {
    padding: 100px 40px;
    background: #ffffff;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    margin-bottom: 50px;
    text-align: center;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 18px;
    color: #1a252f;
}

.form-intro p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.6;
}

.contact-form {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: #ffffff;
}

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

.submit-btn {
    width: 100%;
    padding: 18px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.final-disclaimer {
    padding: 60px 40px;
    background: #f8f9fa;
}

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

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

.site-footer {
    background: #1a252f;
    color: #ecf0f1;
    padding: 70px 40px 30px;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #95a5a6;
}

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

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

.footer-col ul li a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

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

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

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

.cookie-link {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
}

.cookie-link:hover {
    text-decoration: underline;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a252f;
}

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

.thanks-cta {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 40px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-cta:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.page-header {
    padding: 80px 40px 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a252f;
}

.page-header p {
    font-size: 20px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
}

.page-content h2 {
    font-size: 36px;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #1a252f;
}

.page-content h3 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.page-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.page-content ul {
    margin-bottom: 25px;
    padding-left: 30px;
}

.page-content ul li {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 12px;
}

.contact-page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
}

.contact-info {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a252f;
}

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

@media (max-width: 768px) {
    .hero-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .hero-text-zone h1 {
        font-size: 36px;
    }

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

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

    .service-card {
        flex-direction: column;
        margin: 0;
    }

    .service-card:nth-child(even) {
        flex-direction: column;
        margin: 0;
    }

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

    .footer-columns {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .inline-image-float {
        float: none;
        margin: 30px 0;
        max-width: 100%;
    }

    nav {
        flex-direction: column;
        gap: 15px;
    }
}