/* === HERO SECTION === */
.section-hero .container {
    align-items: center;
}

/* Left Side */
.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    color: #276DCD;
}

.hero-title {
    font-size: 6rem;
    font-weight: 800;
    color: #262D63;
    line-height: 1.3;
    letter-spacing: 2px;
}

.hero-light {
    color: #3d7cd2;
}

.hero-lighter {
    color: #a9c5eb;
}

.btn-box {
    margin-top: 4rem;
    display: flex;
    gap: 2.4rem;
}

.btn-box a {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.hero-btn-icon {
    width: 2rem;
    height: 2rem;
}

.hero-btn {
    padding: 1.6rem 3.2rem;
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(38, 45, 99, 0.2);
}

.btn-fill {
    background-color: #fcb400;
    /* color: #F4F5F8; */
    color: #262D63;
}

.btn-fill:hover {
    background-color: #e3a200;
}

.btn-outline {
    background-color: #D9E1EC;
    color: #262D63;
    border: 1px solid #262D63;
}

.btn-outline:hover {
    background-color: #ced6e0;
}

/* Right Side */
.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 40rem;
    height: 28rem;
    background: #276DCD;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(38, 45, 99, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 3.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    box-sizing: border-box;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

/* QUICK INFO SECTION */
.section-quick-info .container {
    max-width: 90rem;
}

.section-quick-info .subtitle {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.5;
}

/* === PROBLEM SECTION === */
.problem-title {
    font-size: 3rem;
    font-weight: 700;
    /* color: #D9E1EC; */
    color: #cbdcf3;
    margin-bottom: 2.4rem;
}

.problem-desc {
    font-size: 1.6rem;
    color: #F4F5F8;
    line-height: 1.6;
}

.carousel-dots {
    display: flex;
    gap: 12px;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d1d5db;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    padding: 0;
}

.carousel-dots .dot:hover {
    background-color: #9ca3af;
}

.carousel-dots .dot.active {
    background-color: #276DCD;
    transform: scale(1.2);
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background-color: #a9c5eb;
    width: 0;
}

@keyframes progressFill {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.progress-bar.animate {
    animation: progressFill 7s linear forwards;
}

/* === PROBLEM SECTION === */
/* === Scenario Box === */
.scenario-box {
    position: relative;
    max-width: 80rem;
    margin: 4rem auto 0;
}

.scenario-viewport {
    overflow: hidden;
    border-radius: 15px;
    /* border: 1px solid #a9c5eb; */
    /* box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.15); */
}

.scenario-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.scenario-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
}

.scenario-top {
    /* background-color: #D9E1EC; */
    padding: 4.8rem 4.8rem 2.4rem;
}

.scenario-title {
    margin-bottom: 2.4rem;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #D9E1EC;
}

.scenario-content {
    display: flex;
    gap: 3.2rem;
    align-items: center;
}

.scenario-img {
    width: 25rem;
    height: 18rem;
    object-fit: cover;
    border-radius: 10px;
    background-color: #fff;
}

.scenario-desc {
    font-size: 2rem;
    /* color: #4b5563; */
    color: #D9E1EC;
    line-height: 1.6;
    flex: 1;
}

.scenario-bottom {
    background-color: #a9c5eb;
    padding: 2.4rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #262D63;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scenario-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    background-color: #fff;
    color: #276DCD;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.scenario-btn:hover {
    background-color: #f3f4f6;
    color: #1f57a4;
    transform: translateY(-50%) scale(1.05);
}

.scenario-prev {
    left: -2.4rem;
}

.scenario-next {
    right: -2.4rem;
}

.scenario-dots {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 3.2rem;
}

.s-dot {
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #a9c5eb;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.s-dot.active {
    background-color: #a9c5eb;
}

/* === QUOTE SECTION === */
.section-quote .container {
    max-width: 90rem;
}

.section-quote .subtitle {
    color: #276DCD;
}

.quote-content {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
    /* column-gap: 8rem; */
    row-gap: 2.4rem;
    /* margin-top: 4rem; */
}

.quote-img {
    grid-column: 1;
    grid-row: 1;
    width: 28rem;
    height: 28rem;
    border-radius: 50%;
    object-fit: cover;
    background-color: #9fb5cc;
}

.quote-author-info {
    grid-column: 1;
    grid-row: 2;
    text-align: center;
}

.quote-name {
    font-size: 2.4rem;
    font-weight: 700;
    color: #262D63;
    margin-bottom: 0.8rem;
}

.quote-role {
    font-size: 1.6rem;
    color: #718096;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quote-text-box {
    grid-column: 2;
    display: flex;
    align-items: center;
}

.quote-text {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.5;
    font-style: italic;
    text-align: center;
}

.quote-mark {
    font-size: 6.2rem;
    color: #276DCD;
    font-family: 'Times New Roman', Times, serif;
    line-height: 0;
    vertical-align: -0.8rem;
    display: inline-block;
}

/* === SOLUTION SECTION === */
.subtitle-subtext span {
    font-weight: 700;
}

.section-solution .subtitle-subtext {
    text-align: center;
}

.solution-grid {
    margin-top: 4.8rem;
    gap: 2.4rem;
}

.solution-box {
    background-color: #F4F5F8;
    border-radius: 15px;
    padding: 3.2rem;
    display: flex;
    flex-direction: column;
    aspect-ratio: 1 / 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.s-icon-box {
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.4rem;
}

.s-icon {
    font-size: 3.2rem;
}

.s-icon-orange {
    background-color: #fdefdd;
    color: #f6ad55;
}

.s-icon-purple {
    background-color: #f1eafd;
    color: #b794f4;
}

.s-icon-green {
    background-color: #e1f6e9;
    color: #68d391;
}

.s-icon-yellow {
    background-color: #fefce7;
    color: #faf089;
}

.s-icon-blue {
    background-color: #e0f0fb;
    color: #63b3ed;
}

.s-icon-red {
    background-color: #fee6e6;
    color: #fc8181;
}

.solution-title {
    font-size: 2rem;
    font-weight: 700;
    color: #262D63;
    margin-bottom: 1.6rem;
}

.solution-desc {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #4a5568;
    flex-grow: 1;
    /* Pushes the link to the bottom */
}

.solution-link {
    font-size: 1.4rem;
    color: #4299e1;
    font-weight: 500;
    text-decoration: none;
    margin-top: 2.4rem;
    transition: color 0.3s;
}

.solution-link:hover {
    color: #2b6cb0;
    text-decoration: underline;
}

/* === CTA SECTION === */
.section-cta,
.section-quick-info {
    padding: 3.2rem 0;
    background-color: #a9c5eb;
    color: #fff;
    text-align: center;
}

.section-box {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.section-box .subtitle {
    color: #262D63;
}

.cta-btn {
    padding: 1.6rem 3.2rem;
    border-radius: 50px;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    background-color: #fff;
    color: #276DCD;
}

/* === OBJECTIONS SECTION === */
.section-objections .subtitle-subtext {
    color: inherit;
    text-align: center;
}

.objection-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2.4rem;
    margin-top: 4.8rem;
    align-items: stretch;
}

.objection-box {
    background-color: #D9E1EC;
    border-radius: 10px;
    padding: 2.4rem;
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.objection-text {
    font-size: 1.6rem;
    color: #4b5563;
    font-weight: 500;
    line-height: 1.5;
}

.objection-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.8rem;
    color: #276DCD;
}