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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --success-color: #2ecc71;
    --border-color: #bdc3c7;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 800px;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

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

.btn-accept {
    background: var(--success-color);
    color: white;
}

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

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

.btn-reject:hover {
    background: white;
    color: var(--primary-color);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn {
    padding: 15px 30px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

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

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.hero-overlay {
    width: 100%;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.5;
}

.cta-hero {
    padding: 18px 45px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.story-intro {
    padding: 80px 20px;
    background: white;
}

.container-narrow {
    max-width: 750px;
    margin: 0 auto;
}

.story-text {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    line-height: 1.8;
}

.story-text.strong {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 40px;
}

.problem-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.problem-image .image-placeholder {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.problem-image .image-placeholder svg {
    width: 100%;
    height: auto;
    display: block;
}

.problem-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.problem-text p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 30px;
}

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

.problem-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.problem-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.3rem;
}

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

.section-title {
    font-size: 2.3rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
}

.insight-text {
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.emphasize {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 40px;
    margin-bottom: 40px;
}

.inline-cta {
    text-align: center;
    margin-top: 50px;
}

.cta-inline {
    padding: 16px 40px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: #2980b9;
    transform: scale(1.05);
}

.visual-break {
    padding: 0;
}

.visual-container {
    width: 100%;
}

.image-placeholder-large {
    width: 100%;
}

.image-placeholder-large svg {
    width: 100%;
    height: auto;
    display: block;
}

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

.centered-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.trust-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
}

.trust-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.trust-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.trust-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.testimonial-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.testimonial {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 5px solid var(--secondary-color);
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: right;
}

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

.reveal-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.reveal-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.reveal-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.reveal-item {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

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

.reveal-item h3 {
    font-size: 1.6rem;
    margin: 25px 25px 15px 25px;
    color: var(--primary-color);
}

.reveal-item p {
    font-size: 1.05rem;
    margin: 0 25px 25px 25px;
    color: var(--text-dark);
    line-height: 1.7;
}

.benefits-section {
    padding: 100px 20px;
    background: var(--primary-color);
    color: white;
}

.benefits-section h2 {
    color: white;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 60px;
}

.benefit-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.benefit-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    flex-shrink: 0;
    line-height: 1;
}

.benefit-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.benefit-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.cta-centered {
    text-align: center;
    margin-top: 50px;
}

.cta-section {
    padding: 18px 45px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 20px auto;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.process-step p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.process-arrow {
    text-align: center;
    font-size: 2rem;
    color: var(--secondary-color);
    display: none;
}

.urgency-section {
    padding: 80px 20px;
    background: var(--accent-color);
    color: white;
}

.urgency-box h2 {
    color: white;
    font-size: 2.3rem;
    margin-bottom: 30px;
    text-align: center;
}

.urgency-box p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.urgency-highlight {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

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

.pricing-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pricing-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
}

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

.pricing-card.featured {
    background: var(--secondary-color);
    color: white;
}

.pricing-card.featured h3,
.pricing-card.featured .pricing-description,
.pricing-card.featured .price {
    color: white;
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.pricing-description {
    font-size: 1.05rem;
    margin-bottom: 25px;
    color: var(--text-light);
    line-height: 1.6;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.pricing-cta {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    background: #1a252f;
    transform: scale(1.02);
}

.pricing-card.featured .pricing-cta {
    background: white;
    color: var(--secondary-color);
}

.pricing-card.featured .pricing-cta:hover {
    background: var(--bg-light);
}

.final-push {
    padding: 80px 20px;
    background: var(--bg-light);
}

.final-push h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

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

.final-highlight {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 40px;
    text-align: center;
}

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

.form-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

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

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.thank-you-message {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 30px;
}

.thank-you-content {
    background: var(--bg-light);
    padding: 50px 40px;
    border-radius: 15px;
    border-top: 5px solid var(--success-color);
}

.thank-you-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thank-you-content p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thank-you-service {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.thank-you-note {
    color: var(--text-light);
    font-size: 1rem;
}

.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 20px 30px 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 1rem;
}

.footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.8;
}

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

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.95rem;
}

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

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

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .problem-grid {
        flex-direction: row;
        align-items: center;
    }

    .problem-image {
        flex: 1;
    }

    .problem-text {
        flex: 1;
    }

    .trust-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .trust-card {
        flex: 1;
        min-width: 300px;
    }

    .reveal-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .reveal-item {
        flex: 1;
        min-width: calc(50% - 20px);
    }

    .process-flow {
        flex-direction: row;
        align-items: center;
    }

    .process-arrow {
        display: block;
    }

    .process-step {
        flex: 1;
    }

    .pricing-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .pricing-card {
        flex: 1;
        min-width: calc(33.333% - 20px);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .trust-grid {
        flex-wrap: nowrap;
    }

    .reveal-item {
        min-width: calc(25% - 30px);
    }

    .pricing-card {
        min-width: calc(33.333% - 20px);
    }
}
