* {
    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;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px 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: 20px;
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid #fff;
}

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

.header-nav {
    background: rgba(255,255,255,0.98);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

.main-nav {
    display: flex;
    gap: 32px;
}

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

.main-nav a:hover {
    color: #3498db;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

.hero-intro {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,0.6);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.hero-text-block {
    max-width: 800px;
    text-align: center;
    color: white;
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-lead {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 16px 48px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #34495e;
}

.narrow-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #2c3e50;
}

.problem-reveal {
    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-column {
    flex: 1;
}

.text-column h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #2c3e50;
}

.text-column p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.image-column {
    flex: 1;
}

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

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

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

.centered-insight blockquote {
    font-size: 28px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 24px;
}

.quote-author {
    font-size: 18px;
    opacity: 0.8;
}

.solution-narrative {
    padding: 120px 20px;
    background: white;
}

.solution-narrative h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 32px;
    text-align: center;
}

.cta-sticky {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: #e74c3c;
    color: white;
    padding: 16px 20px;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    transition: bottom 0.3s ease;
}

.cta-sticky.visible {
    bottom: 0;
}

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

.sticky-text {
    font-size: 18px;
    font-weight: 600;
}

.btn-sticky {
    padding: 12px 32px;
    background: white;
    color: #e74c3c;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

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

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

.trust-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.trust-icon {
    font-size: 48px;
    color: #27ae60;
    margin-bottom: 16px;
}

.trust-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.trust-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #34495e;
}

.testimonials-flow {
    padding: 120px 20px;
    background: white;
}

.testimonials-flow h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.testimonial-item {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 32px;
    border-left: 4px solid #3498db;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 600;
}

.methodology-reveal {
    padding: 100px 20px;
    background: #ecf0f1;
}

.method-list {
    list-style: none;
    padding: 0;
}

.method-list li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    padding-left: 32px;
    position: relative;
}

.method-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 24px;
}

.benefits-cascade {
    padding: 120px 20px;
    background: white;
}

.benefits-cascade h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.benefit-item {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid #ecf0f1;
}

.benefit-item:last-child {
    border-bottom: none;
}

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

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

.pricing-reveal {
    padding: 120px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.pricing-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

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

.pricing-card {
    background: white;
    color: #2c3e50;
    padding: 40px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card.featured {
    border: 3px solid #f39c12;
}

.pricing-card.premium {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: white;
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #f39c12;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.price-tag {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #e74c3c;
}

.pricing-card.premium .price-tag {
    color: #f39c12;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.pricing-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.9;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.feature-list li {
    font-size: 15px;
    line-height: 1.8;
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.pricing-card.premium .feature-list li:before {
    color: #f39c12;
}

.btn-select-service {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: #3498db;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #2980b9;
    transform: scale(1.02);
}

.pricing-card.premium .btn-select-service {
    background: #f39c12;
}

.pricing-card.premium .btn-select-service:hover {
    background: #e67e22;
}

.urgency-block {
    padding: 100px 20px;
    background: #e74c3c;
    color: white;
    text-align: center;
}

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

.urgency-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.urgency-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.urgency-stat {
    font-size: 24px;
    margin-top: 40px;
    padding: 20px;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
}

.final-cta-section {
    padding: 120px 20px;
    background: white;
}

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

.form-container h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.contact-form {
    background: #f8f9fa;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39,174,96,0.3);
}

.reassurance-final {
    padding: 60px 20px;
    background: #ecf0f1;
}

.reassurance-text {
    text-align: center;
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
}

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

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

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
}

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

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

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

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

.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;
    opacity: 0.7;
}

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

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
    }

    .main-nav.active {
        display: flex;
    }

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

    .hero-lead {
        font-size: 18px;
    }

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

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

    .text-column h2 {
        font-size: 28px;
    }

    .centered-insight blockquote {
        font-size: 22px;
    }

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

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

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

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

    .contact-form {
        padding: 32px 24px;
    }
}
