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

:root {
    --primary-dark: #1a1a1a;
    --primary-red: #c41e3a;
    --secondary-red: #8b0000;
    --text-light: #f5f5f5;
    --text-gray: #b0b0b0;
    --bg-dark: #0d0d0d;
    --bg-section: #1f1f1f;
    --accent-gold: #d4af37;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-dark);
    padding: 20px;
    z-index: 10000;
    border-top: 2px solid var(--primary-red);
    display: none;
}

.cookie-banner.active {
    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;
    min-width: 250px;
}

.cookie-content a {
    color: var(--accent-gold);
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: var(--primary-red);
    color: var(--text-light);
}

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

.btn-reject {
    background-color: transparent;
    color: var(--text-gray);
    border: 1px solid var(--text-gray);
}

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    border-bottom: 1px solid rgba(196, 30, 58, 0.3);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-red);
    letter-spacing: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

.nav-menu a:hover {
    color: var(--primary-red);
}

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

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

.sticky-cta-btn {
    background-color: var(--primary-red);
    color: var(--text-light);
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(196, 30, 58, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: var(--secondary-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(196, 30, 58, 0.6);
}

.hero-intense {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1564752683515-d8fa1a8d3a94?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(13, 13, 13, 0.5) 100%);
}

.hero-content-narrow {
    max-width: 800px;
    text-align: center;
    padding: 40px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 68px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 40px;
    color: var(--text-gray);
}

.cta-hero {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--text-light);
    padding: 18px 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background-color: var(--secondary-red);
    transform: scale(1.05);
}

.story-intro {
    padding: 120px 40px;
    background-color: var(--bg-section);
}

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

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

.opening-line {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.4;
    color: var(--primary-red);
}

.story-intro p {
    font-size: 19px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.visual-break {
    margin: 0;
    position: relative;
}

.image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 60px 40px 30px;
    color: var(--text-light);
    font-size: 20px;
    font-weight: 600;
}

.problem-amplification {
    padding: 120px 40px;
    background-color: var(--bg-dark);
}

.problem-amplification h2 {
    font-size: 48px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.problem-amplification > .content-narrow > p {
    font-size: 20px;
    margin-bottom: 60px;
    line-height: 1.7;
}

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

.problem-item {
    border-left: 4px solid var(--primary-red);
    padding-left: 30px;
}

.problem-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.problem-item p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-gray);
}

.cta-inline {
    display: inline-block;
    color: var(--primary-red);
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.story-section {
    padding: 100px 40px;
    background-color: var(--bg-section);
}

.story-section.reverse {
    background-color: var(--bg-dark);
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-red);
}

.story-lead {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.5;
}

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

.story-emphasis {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-top: 30px;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.story-section.reverse .split-layout {
    flex-direction: row-reverse;
}

.testimonial-inline {
    padding: 80px 40px;
    background-color: var(--primary-dark);
}

.testimonial-inline.secondary {
    background-color: var(--bg-dark);
}

.testimonial-block {
    border-left: 6px solid var(--accent-gold);
    padding-left: 40px;
    font-style: italic;
}

.testimonial-block p {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-block cite {
    font-size: 16px;
    color: var(--text-gray);
    font-style: normal;
}

.insight-section {
    padding: 120px 40px;
    background-color: var(--bg-dark);
}

.insight-section h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 70px;
}

.insight-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-section);
    padding: 40px;
    border-top: 4px solid var(--primary-red);
}

.insight-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.insight-card p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-gray);
}

.trust-building {
    padding: 100px 40px;
    background-color: var(--bg-section);
}

.trust-building h2 {
    font-size: 42px;
    margin-bottom: 40px;
}

.trust-building p {
    font-size: 19px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.cta-inline-alt {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.cta-inline-alt:hover {
    background-color: #f0c040;
    transform: translateY(-2px);
}

.visual-break.secondary {
    background-color: var(--bg-dark);
    padding: 80px 0;
}

.benefits-reveal {
    padding: 120px 40px;
    background-color: var(--bg-dark);
}

.benefits-reveal h2 {
    font-size: 48px;
    margin-bottom: 50px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    font-size: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 40px;
    position: relative;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-size: 24px;
    font-weight: 700;
}

.services-section {
    padding: 140px 40px;
    background-color: var(--bg-section);
}

.services-section h2 {
    font-size: 52px;
    text-align: center;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 20px;
    margin-bottom: 70px;
    color: var(--text-gray);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background-color: var(--primary-dark);
    padding: 40px;
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

.service-card.featured {
    border-color: var(--accent-gold);
    background-color: rgba(212, 175, 55, 0.05);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 20px;
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.service-description {
    font-size: 17px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: var(--text-gray);
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-size: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 25px;
}

.select-service {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-red);
    color: var(--text-light);
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: var(--secondary-red);
}

.urgency-section {
    padding: 100px 40px;
    background-color: var(--bg-dark);
    text-align: center;
}

.urgency-section h2 {
    font-size: 46px;
    margin-bottom: 30px;
    color: var(--primary-red);
}

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

.urgency-emphasis {
    font-size: 26px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-top: 30px;
    margin-bottom: 40px;
}

.cta-urgency {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--text-light);
    padding: 20px 60px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-urgency:hover {
    background-color: var(--secondary-red);
    transform: scale(1.05);
}

.form-section {
    padding: 120px 40px;
    background-color: var(--bg-section);
}

.form-section h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 19px;
    margin-bottom: 60px;
    color: var(--text-gray);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background-color: var(--primary-dark);
    color: var(--text-light);
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

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

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.checkbox-group a {
    color: var(--accent-gold);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background-color: var(--primary-red);
    color: var(--text-light);
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-red);
    transform: translateY(-2px);
}

.final-cta {
    padding: 100px 40px;
    background-color: var(--primary-dark);
    text-align: center;
}

.final-cta h2 {
    font-size: 48px;
    margin-bottom: 30px;
}

.final-cta p {
    font-size: 22px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-final {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    padding: 20px 60px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-final:hover {
    background-color: #f0c040;
    transform: scale(1.05);
}

.site-footer {
    background-color: var(--bg-dark);
    padding: 60px 40px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-red);
}

.footer-section p {
    color: var(--text-gray);
}

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

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

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--text-light);
}

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

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

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        display: none;
    }

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

    .hero-title {
        font-size: 42px;
    }

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

    .split-layout {
        flex-direction: column;
    }

    .story-section.reverse .split-layout {
        flex-direction: column;
    }

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

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta-btn {
        padding: 14px 24px;
        font-size: 15px;
    }

    .content-narrow,
    .content-wide {
        padding: 0 20px;
    }

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