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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

.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;
    min-width: 300px;
    margin: 0;
}

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

.btn-cookie {
    background: #27ae60;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: background 0.3s;
}

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

.btn-cookie-secondary {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-cookie-secondary:hover {
    background: white;
    color: #1a1a1a;
}

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

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

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

.nav-links a:hover {
    color: #27ae60;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.btn-sticky {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-sticky:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.5);
}

.hero-full {
    height: 85vh;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 73, 94, 0.8)), url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
}

.scroll-hint {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.narrative-intro {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

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

.opening-hook {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    color: #34495e;
}

.narrative-intro p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.problem-amplification {
    padding: 6rem 0;
    background: white;
}

.two-col-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 0 2rem;
}

.col-image {
    flex: 1;
}

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

.col-text {
    flex: 1;
}

.col-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.problem-item {
    display: flex;
    gap: 1.5rem;
}

.problem-number {
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
    min-width: 60px;
}

.problem-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.problem-item p {
    color: #555;
}

.insight-reveal {
    padding: 6rem 2rem;
    background: #34495e;
    color: white;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.insight-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
}

.visual-break {
    padding: 0;
}

.full-width-image {
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

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

.solution-intro {
    padding: 6rem 2rem;
    background: white;
}

.centered-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.centered-text {
    font-size: 1.3rem;
    text-align: center;
    color: #555;
}

.features-asymmetric {
    padding: 4rem 0;
    background: #f8f9fa;
}

.feature-block {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 0 2rem;
}

.feature-block.right {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.feature-visual {
    flex: 1;
}

.feature-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.testimonials-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    flex: 1;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

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

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
}

.benefits-reveal {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.benefit-timeline {
    margin-top: 3rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.timeline-marker {
    font-size: 1.2rem;
    font-weight: 700;
    min-width: 100px;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    text-align: center;
}

.timeline-item p {
    font-size: 1.1rem;
}

.cta-mid {
    padding: 4rem 2rem;
    background: #e74c3c;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background: white;
    color: #e74c3c;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

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

.comparison-table {
    margin-top: 3rem;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid #ecf0f1;
}

.comparison-row.header {
    font-weight: 700;
    background: #34495e;
    color: white;
}

.comparison-cell {
    flex: 1;
    padding: 1.5rem;
    text-align: center;
}

.comparison-cell:first-child {
    text-align: left;
    font-weight: 600;
}

.comparison-cell.highlight {
    background: #e8f5e9;
    color: #27ae60;
    font-weight: 600;
}

.trust-builders {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.trust-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-item {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.trust-item p {
    color: #555;
}

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

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
}

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

.pricing-card {
    flex: 1;
    max-width: 350px;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid #ecf0f1;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.pricing-card.featured {
    background: white;
    border: 3px solid #27ae60;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #27ae60;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-name {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.package-desc {
    color: #555;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 2rem;
}

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

.package-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #ecf0f1;
}

.package-features li:before {
    content: "✓ ";
    color: #27ae60;
    font-weight: 700;
    margin-right: 0.5rem;
}

.btn-package {
    width: 100%;
    background: #2c3e50;
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-package:hover {
    background: #34495e;
}

.additional-services {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.services-flex {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-item p {
    color: #555;
    margin-bottom: 1rem;
}

.service-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.btn-secondary {
    width: 100%;
    background: white;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #2c3e50;
    color: white;
}

.urgency-section {
    padding: 2rem;
    background: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.urgency-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.urgency-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #856404;
    margin-bottom: 0.5rem;
}

.urgency-subtext {
    font-size: 1rem;
    color: #856404;
}

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

.form-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
}

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

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

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

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

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

.btn-submit {
    width: 100%;
    background: #27ae60;
    color: white;
    border: none;
    padding: 1.25rem;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

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

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 1rem;
}

.final-reassurance {
    padding: 6rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.final-reassurance h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.final-reassurance p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

.site-footer {
    background: #2c3e50;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

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

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

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

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

.footer-col a:hover {
    color: white;
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .two-col-offset,
    .feature-block {
        flex-direction: column;
    }

    .feature-block.right {
        flex-direction: column;
    }

    .testimonials-grid,
    .pricing-grid,
    .services-flex,
    .trust-grid {
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .btn-sticky {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}
