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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2c7fb8;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --bg-light: #f8f9fa;
    --bg-dark: #1e1e1e;
    --border-color: #dfe6e9;
}

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

.nav-funnel {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

.nav-links a:hover {
    color: var(--secondary-color);
}

.hero-story {
    background: linear-gradient(135deg, #1a4d7a 0%, #2c7fb8 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1559526324-4b87b5e36e44?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
}

.hero-overlay {
    background: rgba(26, 77, 122, 0.85);
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-content-narrow {
    max-width: 700px;
    text-align: center;
    color: white;
}

.hero-content-narrow h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtext {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.3);
}

.intro-narrative {
    padding: 5rem 2rem;
    background: white;
}

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

.content-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.content-narrow p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.problem-amplify {
    background: var(--bg-light);
    padding: 6rem 2rem;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.problem-list {
    list-style: none;
    margin: 2rem 0;
}

.problem-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.problem-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 1.5rem;
    font-weight: bold;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.curiosity-hook {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

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

.content-wide h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.insight-text {
    font-size: 1.4rem;
    line-height: 1.7;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
}

.story-section {
    padding: 6rem 2rem;
    background: white;
}

.story-section h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.insight-reveal {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 6rem 2rem;
    color: white;
}

.insight-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.insight-badge {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
}

.insight-container h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.insight-container > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.insight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.insight-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.insight-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.insight-card p {
    font-size: 1rem;
    line-height: 1.6;
}

.trust-builder {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.trust-builder h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

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

.trust-col {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.trust-col h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.trust-col p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.social-proof {
    padding: 6rem 2rem;
    background: white;
}

.social-proof h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.testimonial {
    background: var(--bg-light);
    padding: 2.5rem;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-color);
    border-radius: 5px;
}

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

.cta-inline {
    display: inline-block;
    margin-top: 2rem;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.cta-inline:hover {
    transform: translateY(-2px);
}

.method-breakdown {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.method-breakdown h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.method-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.method-step {
    flex: 1;
    min-width: 260px;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    padding-top: 4rem;
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 2rem;
    background: var(--accent-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
}

.method-step h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.method-step p {
    font-size: 1rem;
    line-height: 1.6;
}

.benefits-cascade {
    padding: 6rem 2rem;
    background: white;
}

.benefits-cascade h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.benefit-item {
    margin: 3rem 0;
    padding-left: 2rem;
    border-left: 3px solid var(--secondary-color);
}

.benefit-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.benefit-item p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.reality-check {
    padding: 5rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.reality-check h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.reality-check p {
    font-size: 1.15rem;
    max-width: 900px;
    margin: 1rem auto;
    line-height: 1.7;
}

.services-reveal {
    padding: 6rem 2rem;
    background: white;
}

.services-reveal h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #555;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 2.5rem;
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card.featured {
    border-color: var(--accent-color);
    border-width: 3px;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.service-card > p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #555;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 0.95rem;
}

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

.service-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1.5rem 0;
    text-align: center;
}

.cta-service {
    width: 100%;
    background: var(--secondary-color);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.cta-service:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.urgency-element {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.urgency-element h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.urgency-element p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.final-cta {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.cta-box p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #555;
}

.cta-primary-large {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(243, 156, 18, 0.3);
}

.form-section {
    padding: 6rem 2rem;
    background: white;
}

.form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.8rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.cta-submit {
    width: 100%;
    background: var(--accent-color);
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

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

.footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-col p {
    line-height: 1.6;
    opacity: 0.8;
}

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

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

.footer-col ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.98);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

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

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

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

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

.cookie-btn.reject {
    background: #7f8c8d;
    color: white;
}

.cookie-btn.reject:hover {
    background: #5d6d7e;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta-btn {
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.4);
    transition: transform 0.3s;
    display: block;
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

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

    .split-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .method-steps {
        flex-direction: column;
    }

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

    .insight-card {
        max-width: 100%;
    }

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

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

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .content-narrow h2,
    .content-wide h2 {
        font-size: 1.8rem;
    }
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 6rem 2rem 4rem;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.page-content {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: var(--primary-color);
}

.page-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.page-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.page-content ul,
.page-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.page-content li {
    margin: 0.7rem 0;
    line-height: 1.7;
}

.contact-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin: 0.8rem 0;
}

.contact-info strong {
    color: var(--primary-color);
}
