@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* // <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name

.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} 
  
// <weight>: Use a value from 300 to 800
// <uniquifier>: Use a unique and descriptive class name

.open-sans-<uniquifier> {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
}
body {
    font-family: "Open Sans", sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1216px;
    margin: 0 auto;
    padding: 12px 0;
}

.logo {
    width: 70px;
}
.logo img{
    width: 100%;
}

.hero {
    /* display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center; */
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
    padding: 100px 0;
}
/* Thank you for completing the CEO Freedom Assessment */


h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
    line-height: 120%;
    /* or 48px */
    letter-spacing: -0.025em;

    /* Title Gradient */
    background: linear-gradient(180deg, #FFFFFF 0%, #B3B3B3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
h2{
 /* Title Gradient */
    background: linear-gradient(180deg, #FFFFFF 0%, #B3B3B3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 600;
}
.subtitle {
    color: #FFF;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 400;
}

.score-badge {
}

.score-label {
    color: #FFF;
    font-size: 1.50rem;
    line-height: 1.6;
    font-weight: 500;

}

.score-value {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
     background: linear-gradient(180deg, #FFFFFF 0%, #B3B3B3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.score-status {
    color: #ff3366;
    font-weight: 600;
    font-size: 1.1rem;
}

.description {
    color: #B3B3B3;
    margin: 1rem 0;
    line-height: 1.6;
    font-size: 1.125rem;
    font-weight: 400;
}

.cta-button {
    background: linear-gradient(180deg, #C80206 0%, #9F1D22 100%);
    border-radius: 4px;
    color: #fff;
    padding: 16px 32px;
    border: 1px solid transparent;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    
}

.cta-button:hover {
    background: transparent;
    border: 1px solid #FFF;
}
.mt-40{
    margin-top: 40px;
}
.chart-outer {
    padding-top: 40px;
    min-width: 500px;
    display: flex;
    justify-content: end;
}

.chart-container {
    position: relative;
    width: 380px;
    height: 380px;
}

.donut-chart {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.chart-center-label {
    font-size:1rem;
    color: #FFF;
    margin-bottom: 5px;
}

.chart-center-value {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    font-size: 56px;
    font-family: "Montserrat", sans-serif;
}

.chart-legend {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.legend-item > div{text-align: center;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}
.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-top-left .legend-item > div::after{
    content: "";
    position: absolute;
    bottom: 4px;
    right: -50px;
    width: 74px;
    height: 16px;
    background-image: url(../image/dotted-line.svg);
}
.legend-label {
    font-size: 0.85rem;
    color: #FFF;
}

.legend-value {
    font-weight: 600;
    color: #fff;
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
}
.legend-top-left {
    top: 0;
    left: -100px;
}

.legend-top-right {
    top: 0;
    right: -70px;
}

.legend-bottom-left {
    bottom: 0;
    left: -92px;
}

.legend-bottom-left .legend-item > div::after {
    content: "";
    position: absolute;
    top: 5px;
    right: -24px;
    width: 80px;
    height: 16px;
    background-position: bottom right;
    background-image: url(../image/dotted-line-bottom-right.svg);
}

.legend-bottom-right {
    bottom: 0;
    right:-80px;
}
.legend-bottom-right .legend-item > div .legend-value{
    width: 100%;
    text-align: right;
}

.legend-bottom-right .legend-item > div::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 60px;
    width: 80px;
    height: 16px;
    background-position: bottom right;
    background-image: url(../image/dotted-line-bottom-left.svg);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #B3B3B3;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.25rem;
    line-height: 1.6;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    
}

.card {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border: 1px solid #b3b3b333;
    border-radius: 8px;
    padding: 2rem;
    background: radial-gradient(66.6667% 64% at 50% 100%, #c802064d 0%, #0000 100%);
}

.card-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.card-score {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-family: "Montserrat", sans-serif;
}

.card-score.red {
    color: #C80206;
}

.card-score.orange {
    color: #DC6803;
}

.card-score.yellow {
    color: #ffd500;
}

.card-content {
    color: #aaa;
    line-height: 1.8;
}

.card-content p {
    margin-bottom: 1rem;
    font-size: 16px;
    line-height: 1.6;
    color: #B3B3B3;
}

footer {
    border-top: 1px solid #333;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #B3B3B3;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #B3B3B3;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #666;
    font-size: 1.2rem;
    text-decoration: none;
}

.social-icons a:hover {
    color: #fff;
}

.stats-section{
    padding: 48px 0 100px;
}


@media (max-width: 1366px) {
.container {
    max-width: none;
    width: 100%;
    margin: 0 auto;
    padding: 12px 40px;
}
.content_card {
    width: 100%;
    padding-right: 40px;
}
.chart-outer {
    padding-top: 40px;
    min-width: 500px;
    display: flex;
    justify-content: center;
}
}


@media (max-width: 1199px) {
.hero {
    flex-direction: column;
    gap: 40px;
    padding: 60px 0;
}
.content_card{
    text-align: center;
}
.cards {
    grid-template-columns: repeat(1, 1fr);
}
.stats-section {
    padding: 48px 0 60px;
}

.content_card {
    padding-right: 0;
}
}

@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .chart-container {
        margin: 0 auto;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2rem;
    }

    footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}



@media (max-width: 767px) {
.container {
    padding: 12px 20px;
}
.stats-section {
    padding: 48px 0;
}
.chart-container{
    transform: scale(0.80);
    margin-top:2rem
}
.chart-outer{
    padding-top: 0;
}
.hero{
    gap: 0;
}
.mt-40 {
    margin-top: 24px;
}
.logo {
    width: 70px;
    margin: 0 auto;
}
}


@media (max-width:640px) {
.score-label {
    font-size: 1.125rem;
}
.score-value, .card-score{
    font-size: 1.75rem;
}
.description, .section-subtitle, .card-title{
    font-size: 1rem;
}
.section-subtitle{
    margin-bottom: 24px;
}

.cta-button {
    padding: 12px 32px;
    font-size: 0.88rem;
}
h2.section-title{
    font-size: 1.5rem !important;
}
.card{
    padding: 1.5rem;
}
.card-score{
    margin-bottom: 1rem;
}
.card-content p{
    font-size: 0.88rem;
}
.card-content p:last-child{
    margin-bottom: 0;
}
.chart-outer{
    min-width: auto;
}
.chart-container{
    transform: scale(0.70);
    margin-top:2rem
}
.logo {
    width: 60px;
}
h1 {
    font-size:1.80rem;
}
.score-value, .card-score {
    font-size: 1.50rem;
}
.subtitle {
    font-size: 1rem;
}
}

@media (max-width:480px) {
.chart-container{
    transform: scale(0.60);
    margin-top:0;
}
.hero{
    padding-bottom: 0;
}
}