﻿/* Set padding to keep content from hitting the edges */
.body-content {
    /*margin-top: 15px;*/
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

/* Landing Page */
:root {
    --navy: #0d2240;
    --crimson: #b5191e;
    --gold: #c8922a;
    --cream: #f9f5ef;
    --warm-white: #fdfbf8;
    --mid-gray: #6b7280;
    --light-gray: #e8e3db;
    --text: #1a1a2e;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/*body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--text);
    overflow-x: hidden;
}*/

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--text);

    /*background-image: url('../images/byunilho-papertexture-2061711.jpg');*/    /* Set image location */
    /* Scale image to cover entire screen without distortion */
    /*background-size: cover;*/
    /* Center the image */
    /*background-position: center center;*/
    /* Ensure the image does not repeat */
    /*background-repeat: no-repeat;*/
    /* Keep the background fixed in the viewport */
    /*background-attachment: fixed;*/
    /* Ensure the body takes up the full viewport height */
    /*min-height: 100vh;
    margin: 0;*/
}

/* HERO */
.hero {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 80vh;
    display: flex;
    display: grid;
    flex-direction: column;
}

    .hero::before {
        content: '';
        position: absolute;
        top: -120px;
        right: -120px;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(181,25,30,0.18) 0%, transparent 70%);
        pointer-events: none;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -80px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(200,146,42,0.12) 0%, transparent 70%);
        pointer-events: none;
    }

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*padding: 28px 64px;*/
    padding: 10px 64px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 10;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
}

    .nav-logo span {
        color: var(--gold);
    }

.nav-badge {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid rgba(200,146,42,0.4);
    padding: 8px 12px;
    border-radius: 2px;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*padding: 0px 64px 100px;*/
    padding: 0px 64px 10px;
    max-width: 900px;
    position: relative;
    z-index: 5;
}

.hero-eyebrow {
    font-size: 1.0rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}

    .hero-eyebrow::before {
        content: '';
        display: block;
        width: 36px;
        height: 1px;
        background: var(--gold);
    }

.hero-title {
    font-family: 'Playfair Display', serif;
    /*font-size: clamp(3rem, 6vw, 5.5rem);*/
    font-size: clamp(3rem, 5rem, 6rem);
    font-weight: 900;
    line-height: 1.0;
    color: #fff;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

    .hero-title em {
        font-style: italic;
        color: var(--gold);
    }

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    max-width: 680px;
    line-height: 1.7;
    margin-bottom: 56px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom:20px;
}


.cpr-logo {
    flex-wrap: wrap;
    /*height: 200px;*/
    margin: auto;
}


.img-logo {
    height: 200px;
    margin-top: 20px;
    box-shadow: 1px 1px 2px #000000;
}

.btn-primary {
    background: var(--crimson);
    color: #fff;
    padding: 16px 36px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
}

    .btn-primary:hover {
        background: #8f1217;
        transform: translateY(-1px);
    }

.btn-outline {
    background: transparent;
    color: #fff;
    padding: 16px 36px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.35);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, background 0.2s;
}

    .btn-outline:hover {
        border-color: rgba(255,255,255,0.7);
        background: rgba(255,255,255,0.05);
    }

.hero-stats {
/*    position: absolute;
    right: 64px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    z-index: 5;*/
}

.stat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 3px solid var(--crimson);
    padding: 20px 28px;
    max-width: 280px;
    margin:20px 20px;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
}

/* SECTIONS */
section {
    padding: 100px 64px;
}

.section-eyebrow {
    font-size: 1.0rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .section-eyebrow::before {
        content: '';
        display: block;
        width: 28px;
        height: 1px;
        background: var(--crimson);
    }

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 24px;
}



/* PROBLEM SECTION */
.problem {
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.problem-left {
}

.problem-text {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 24px;
}

.problem-quote {
    border-left: 4px solid var(--crimson);
    padding: 20px 28px;
    margin: 32px 0;
    background: rgba(181,25,30,0.04);
}

    .problem-quote p {
        font-family: 'Playfair Display', serif;
        font-size: 1.4rem;
        font-style: italic;
        color: var(--navy);
        line-height: 1.6;
    }

.problem-right {
}

.data-card {
    background: var(--navy);
    color: #fff;
    padding: 36px 40px;
    margin-bottom: 20px;
    border-left: 3px solid var(--crimson);
}

    .data-card .big-num {
        font-family: 'Playfair Display', serif;
        font-size: 3.5rem;
        font-weight: 900;
        color: #FEFEFE;
        line-height: 1;
        margin-bottom: 10px;
    }

    .data-card .desc {
        font-size: 1.2rem;
        color: rgba(255,255,255,0.7);
        line-height: 1.6;
    }

.data-card-alt {
    background: var(--crimson);
    color: #fff;
    padding: 28px 32px;
    border-left: 3px solid var(--navy);
}

    .data-card-alt .big-num {
        color: #fff;
        font-size: 2.8rem;
    }

    .data-card-alt .desc {
        color: rgba(255,255,255,0.85);
    }

/* SOLUTION */
.solution {
    background: var(--warm-white);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 56px;
    background: var(--light-gray);
}

.solution-item {
    background: var(--warm-white);
    padding: 40px 44px;
    position: relative;
    transition: background 0.2s;
}

    .solution-item:hover {
        background: #f0ebe2;
    }

.solution-check {
    width: 44px;
    height: 44px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #FEFEFE;
    font-weight: 700;
}

.solution-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.solution-item p {
    font-size: 1.2rem;
    color: var(--mid-gray);
    line-height: 1.65;
}

/* AUDIENCE */
.audience {
    background: var(--navy);
    color: #fff;
}

    .audience .section-title {
        color: #fff;
    }

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.audience-card {
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 2px solid #CCCCCC;
    padding: 32px 28px;
    position: relative;
    transition: border-color 0.2s;
}

/*    .audience-card:hover {
        border-color: var(--gold);
    }

    .audience-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 100%;
        background: var(--gold);
        opacity: 0;
        transition: opacity 0.2s;
    }

    .audience-card:hover::before {
        opacity: 1;
    }*/

    .audience-card h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.4rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 10px;
    }

    .audience-card p {
        font-size: 1.2rem;
        color: rgba(255,255,255,0.55);
        line-height: 1.6;
    }

/* BENEFITS */
.benefits {
    background: var(--cream);
}

.benefits-intro {
    max-width: 650px;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 60px;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-item-lg {
    background: #fff;
    padding: 28px 32px;
    border: 1px solid var(--light-gray);
    border-left: 2px solid var(--light-gray);
    border-radius: 2px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: box-shadow 0.2s, transform 0.2s;
    margin-bottom:20px;
}
    .benefit-item-lg:hover {
        /*box-shadow: 0 8px 32px rgba(13,34,64,0.08);*/
        box-shadow: 0 8px 8px rgba(10,10,10,0.08);
        transform: translateY(-2px);
    }

.benefit-item {
    background: #fff;
    padding: 28px 32px;
    border: 1px solid var(--light-gray);
    border-left: 2px solid var(--light-gray);
    border-radius: 2px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: box-shadow 0.2s, transform 0.2s;
}

    .benefit-item:hover {
        /*box-shadow: 0 8px 32px rgba(13,34,64,0.08);*/
        box-shadow: 0 8px 8px rgba(10,10,10,0.08);
        transform: translateY(-2px);
    }

.benefit-icon {
    width: 36px;
    height: 36px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* font-size: 0.85rem; */
    font-size: 1.2rem;
    color: #FEFEFE;
}

.benefit-item h4 {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.benefit-item p {
    font-size: 1.2rem;
    color: var(--mid-gray);
    line-height: 1.55;
}

.benefit-item-lg p {
    font-size: 1.2rem;
    color: var(--mid-gray);
    line-height: 1.55;
}

/* STRATEGY */
.strategy {
    background: var(--warm-white);
}

.phases {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 56px;
    border: 1px solid #003366;
}

.phase {
    display: grid;
    grid-template-columns: 120px 1fr;
    border-bottom: 1px solid #003366;
    overflow: hidden;
}

    .phase:last-child {
        border-bottom: none;
    }

.phase-num {
    background: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
    color: var(--gold);
}

    .phase-num .label {
        font-size: 0.6rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.45);
        margin-bottom: 6px;
    }

    .phase-num .num {
        font-family: 'Playfair Display', serif;
        font-size: 4rem;
        font-weight: 900;
        line-height: 1;
        color: #EDEDED;
    }

.phase-content {
    padding: 32px 40px;
}

    .phase-content h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 8px;
    }

    .phase-content p {
        font-size: 1.2rem;
        color: var(--mid-gray);
        line-height: 1.65;
    }

/* TEAM */
.team {
    background: var(--cream);
    text-align: center;
}

.team-text {
    max-width: 860px;
    margin: 0 auto 56px;
    font-size: 1.25rem;
    color: #333;
    line-height: 1.8;
}

.team-highlights {
    display: flex;
    gap: 2px;
    background: var(--light-gray);
    justify-content: center;
    flex-wrap: wrap;
}

.team-highlight {
    background: var(--warm-white);
    padding: 28px 32px;
    font-size: 1.2rem;
    color: var(--navy);
    font-weight: 600;
    flex: 1;
    min-width: 160px;
    text-align: center;
}

    .team-highlight span {
        display: block;
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

.team-cta {
    background: var(--warm-white);
    margin-top: 20px;
    padding: 28px 32px;
    font-size: 1.2rem;
    flex: 1;
    min-width: 160px;
    text-align: center;
}

.team-cta-link {
    font-size: 1.2rem;
    color: var(--crimson);
    text-decoration: none;
    font-weight: 600;
}

/* NEXT STEPS */
.next-steps {
    background: var(--warm-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.step-card {
    /*padding: 32px 28px;*/
    padding: 10px 10px;
    border: 1px solid #CCCCCC;
    box-shadow: 1px 1px 4px #999999;
    border-left: 6px solid #BBBBBB;
    position: relative;
}

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: #BBBBBB;
    line-height: 1;
    margin-bottom: 16px;
}

.step-card h3 {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.4;
}

.step-card p {
    font-size: 1.2rem;
    color: var(--mid-gray);
    line-height: 1.55;
}

/* CTA FOOTER */
.cta-footer {
    background: var(--crimson);
    padding: 80px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-footer::before {
        content: 'CPR';
        position: absolute;
        top: -40px;
        left: 50%;
        transform: translateX(-50%);
        font-family: 'Playfair Display', serif;
        font-size: 18rem;
        font-weight: 900;
        color: rgba(255,255,255,0.04);
        pointer-events: none;
        white-space: nowrap;
    }

    .cta-footer h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2rem, 4vw, 3.5rem);
        font-weight: 700;
        color: #fff;
        margin-bottom: 20px;
        position: relative;
    }

    .cta-footer p {
        font-size: 1rem;
        color: rgba(255,255,255,0.8);
        margin-bottom: 40px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.7;
        position: relative;
    }

.cta-contact {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    position: relative;
}

.contact-item {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 4px;
    transition: border-color 0.2s;
}

    .contact-item:hover {
        border-color: #fff;
    }

footer {
    background: var(--navy);
    padding: 28px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
}

.footer-draft {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.img-logo {
    animation: fadeUp 0.7s ease both;
}

.hero-eyebrow {
    animation: fadeUp 0.7s ease both;
}

.hero-title {
    animation: fadeUp 0.7s 0.15s ease both;
}

.hero-subtitle {
    animation: fadeUp 0.7s 0.3s ease both;
}

.hero-ctas {
    animation: fadeUp 0.7s 0.45s ease both;
}

.hero-stats {
    animation: fadeUp 0.7s 0.7s ease both;
}

@media (max-width: 960px) {
    nav, section, .cta-footer, footer {
        padding-left: 32px;
        padding-right: 32px;
    }

    .hero-content {
        padding: 60px 32px 260px;
    }

    .hero-stats {
        right: 32px;
        bottom: 40px;
    }

    .problem, .solution-grid, .audience-grid, .benefits-list, .steps-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        max-width: 100%;
    }

    .team-highlights {
        flex-direction: column;
    }

    .phase {
        grid-template-columns: 80px 1fr;
    }
}
