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

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a5f7a;
}

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

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

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

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    background: #ecf0f1;
    padding: 4px 12px;
    border-radius: 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    padding: 20px;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    text-decoration: none;
    color: #2c3e50;
    padding: 15px;
    border-bottom: 1px solid #ecf0f1;
    font-weight: 500;
}

.ad-label-mobile {
    font-size: 0.75rem;
    color: #7f8c8d;
    text-align: center;
    padding: 10px;
}

.hero-fullwidth {
    width: 100%;
    height: 90vh;
    margin-top: 80px;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
}

.hero-text-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-hero {
    display: inline-block;
    padding: 18px 45px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-hero:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
}

.story-intro {
    padding: 100px 20px;
    background: #f8f9fa;
}

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

.opening-line {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #34495e;
}

.problem-section {
    padding: 100px 20px;
    background: white;
}

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

.content-wrapper.reverse {
    flex-direction: row-reverse;
}

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a5f7a;
}

.text-block p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.insight-list {
    margin-top: 30px;
    list-style: none;
}

.insight-list li {
    padding: 15px 0 15px 30px;
    position: relative;
    font-size: 1.05rem;
}

.insight-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.image-block {
    flex: 1;
    background: #ecf0f1;
    border-radius: 12px;
    overflow: hidden;
}

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

.insight-reveal {
    padding: 100px 20px;
    background: #2c3e50;
    color: white;
}

.insight-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.insight-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    margin: 25px 0;
    border-radius: 12px;
    border-left: 4px solid #e74c3c;
}

.insight-point {
    font-size: 1.15rem;
    line-height: 1.7;
}

.trust-builder {
    padding: 100px 20px;
    background: white;
}

.testimonials-inline {
    padding: 100px 20px;
    background: #ecf0f1;
}

.testimonial {
    margin: 40px 0;
    padding: 35px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 15px;
    color: #34495e;
    line-height: 1.7;
}

.attribution {
    font-weight: 600;
    color: #1a5f7a;
}

.benefits-reveal {
    padding: 100px 20px;
    background: white;
}

.benefits-reveal h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a5f7a;
}

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

.benefit-item {
    flex: 1 1 calc(50% - 20px);
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

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

.benefit-item p {
    line-height: 1.7;
    color: #34495e;
}

.services-pricing {
    padding: 100px 20px;
    background: #f8f9fa;
}

.services-pricing h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #1a5f7a;
}

.pricing-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 60px;
    color: #34495e;
}

.service-card {
    background: white;
    padding: 40px;
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s;
}

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

.service-card.featured {
    border: 3px solid #e74c3c;
}

.popular-tag {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #e74c3c;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.service-card p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #34495e;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a5f7a;
    margin: 25px 0;
}

.select-service {
    width: 100%;
    padding: 15px;
    background: #1a5f7a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background: #145270;
    transform: translateY(-2px);
}

.form-section {
    padding: 100px 20px;
    background: white;
}

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a5f7a;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #34495e;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background: #f8f9fa;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.final-cta {
    padding: 100px 20px;
    background: #1a5f7a;
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 18px 45px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.site-footer {
    background: #2c3e50;
    color: white;
    padding: 60px 20px 20px;
}

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

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

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #e74c3c;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

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

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

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

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

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

.btn-secondary {
    background: transparent;
    border: 2px solid white;
}

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .hero-text-content h1 {
        font-size: 2rem;
    }

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

    .content-wrapper,
    .content-wrapper.reverse {
        flex-direction: column;
    }

    .text-block h2 {
        font-size: 1.8rem;
    }

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

    .benefit-item {
        flex: 1 1 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .btn-cookie {
        width: 100%;
    }
}
