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

:root {
    --primary-color: #8B0000;
    --secondary-color: #2d2d2d;
    --accent-color: #c41e3a;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

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

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

.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(--primary-color);
}

.hero-fullscreen {
    height: 90vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
}

.hero-content-center {
    text-align: center;
    color: var(--bg-white);
    max-width: 900px;
    padding: 2rem;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.story-intro {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.container-standard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-heading {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.insight-reveal {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.insight-heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.insight-text-bold {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 2rem 0;
    color: var(--primary-color);
}

.insight-list {
    margin-top: 2rem;
    padding-left: 1.5rem;
}

.insight-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.trust-section {
    padding: 5rem 2rem;
    background: var(--secondary-color);
    color: var(--bg-white);
}

.testimonial-inline {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-inline blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-inline cite {
    font-size: 1rem;
    opacity: 0.8;
}

.how-it-works {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.process-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.process-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    line-height: 60px;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.social-proof {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

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

.stat-card {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.benefits-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-large {
    flex: 2;
    min-width: 300px;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.benefit-small {
    flex: 1;
    min-width: 250px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.benefit-large h3,
.benefit-small h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-middle {
    padding: 5rem 2rem;
    background: var(--primary-color);
    text-align: center;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    margin-top: 1.5rem;
    transition: all 0.3s;
}

.btn-cta-large:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.testimonials-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2rem;
    border-radius: 8px;
}

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

.testimonial-card cite {
    font-style: normal;
    color: var(--text-light);
}

.urgency-section {
    padding: 5rem 2rem;
    background: var(--secondary-color);
    color: var(--bg-white);
}

.urgency-heading {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

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

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

.pricing-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s;
    cursor: pointer;
}

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

.pricing-card.featured {
    border: 3px solid var(--primary-color);
}

.badge-popular {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pricing-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.pricing-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.pricing-features li:before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 0.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background: var(--accent-color);
}

.form-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

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

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    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 textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--accent-color);
}

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

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

.btn-cta-final {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    margin-top: 1.5rem;
    transition: all 0.3s;
}

.btn-cta-final:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.footer {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 3rem 2rem 1rem;
}

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

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

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

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

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

.footer-section a {
    color: var(--bg-white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section 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;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: flex;
}

.btn-sticky {
    padding: 0.8rem 2rem;
    background: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    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;
    gap: 2rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background: var(--accent-color);
}

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

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

.page-hero {
    margin-top: 70px;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    text-align: center;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-content,
.legal-content {
    padding: 4rem 2rem;
}

.about-content h2,
.legal-content h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary-color);
}

.about-content h3,
.legal-content h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--text-dark);
}

.about-content h4,
.legal-content h4 {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
    color: var(--text-dark);
}

.about-content p,
.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-content ul,
.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.about-content ul li,
.legal-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.values-list {
    margin-top: 2rem;
}

.values-list li {
    margin-bottom: 1.5rem;
}

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

.service-block {
    margin-bottom: 4rem;
}

.service-block h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-block ul {
    margin-top: 1.5rem;
    padding-left: 2rem;
}

.service-block ul li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.services-detail {
    padding: 4rem 2rem;
}

.pricing-overview {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.btn-pricing {
    display: inline-block;
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-pricing:hover {
    background: var(--accent-color);
}

.contact-info-section {
    padding: 4rem 2rem;
}

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

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

.contact-info-block h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-detail,
.faq-item {
    margin-bottom: 2rem;
}

.contact-detail h3,
.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-detail a {
    color: var(--primary-color);
    text-decoration: none;
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    margin-top: 70px;
}

.thanks-container {
    max-width: 900px;
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: #28a745;
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.service-confirmation {
    margin: 2rem 0;
}

.selected-service-display {
    font-size: 1.2rem;
    color: var(--text-dark);
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
}

.thanks-next-steps {
    margin: 3rem 0;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.step-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.step-item h3 {
    font-size: 1.2rem;
    margin: 1rem 0;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

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

    .hero-headline {
        font-size: 2.2rem;
    }

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

    .section-heading {
        font-size: 2rem;
    }

    .problem-grid,
    .process-flow,
    .benefits-asymmetric {
        flex-direction: column;
    }

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

    .sticky-cta {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .hero-headline {
        font-size: 1.8rem;
    }

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