@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400&family=Roboto:wght@400;700&display=swap');

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

body {
    font-family: 'Roboto', sans-serif;
    color: #111827;
    background-color: #ffffff;
}

.libre-baskerville {
    font-family: 'Libre Baskerville', serif;
}

/* Hero Section */
.hero-section {
    background-color: rgb(24, 24, 58);
    clip-path: url(#section-divider-68cb1f7a084d9460a23e335a);
    position: relative;
    padding: 61px 16px;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-mask {
    position: absolute;
    inset: 0;
    mask-image: url('https://www.figma.com/api/mcp/asset/5b7b0d10-5257-45ed-b482-5f5440e4daf2');
    mask-size: 303.13% 1251.997px;
    mask-position: -101.04% -625.997px;
    mask-repeat: no-repeat;
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    width: 100%;
    display: flex;
    gap: 90px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.hero-content {
    flex: 0 0 510px;
    color: white;
}

.hero-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 36px;
    line-height: 40px;
    color: white;
    margin-bottom: 11.5px;
}

.hero-description {
    font-size: 24px;
    line-height: 32px;
    color: #f3f4f6;
    margin-bottom: 30px;
}

.hero-description strong {
    font-weight: 700;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 5px;
    margin-bottom: 20px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 15px;
}

.hero-feature-icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
}

.hero-feature-text {
    font-size: 16px;
    line-height: 24px;
    color: white;
}

.hero-feature-text strong {
    font-weight: 700;
}

.hero-cta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-primary {
    background-color: white;
    color: #1d4ed8;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    text-decoration: none;
    display: inline-block;
}

.btn-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17.6px;
    line-height: 28px;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hero-image {
    flex: 0 0 664px;
    height: 445px;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section Styles */
.section {
    padding: 80px 384px;
    /* max-width: 1920px; */
    margin: 0 auto;
}

.section-white {
    background-color: white;
}

.section-gray {
    background-color: #f3f4f6;
}

.section-gray-light {
    background-color: #f9fafb;
}

.section-dark {
    background-color: #18183a;
    color: white;
}

.section-container {
    max-width: 1152px;
    margin: 0 auto;
}

.section-title {
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 56px;
}

.section-title-white {
    color: white;
}

/* Product Cards */
.product-cards-container {
    border: 1px solid #dbeafe;
    border-radius: 24px;
    padding: 41px 33px 9px;
    background: linear-gradient(148.93deg, #eff6ff 0%, #ffffff 50%, #eff6ff 100%);
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
    margin-bottom: 56px;
    position: relative;
}

.product-cards {
    display: flex;
    gap: 32px;
}

.product-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #d1fae5;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
}

/* Slider arrows */
.product-cards-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #dbeafe;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-cards-slider-arrow:hover {
    background: #eff6ff;
    border-color: #2563eb;
}

.product-cards-slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.product-cards-slider-arrow.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.product-cards-slider-arrow.disabled:hover {
    background: white;
    border-color: #dbeafe;
}

.product-cards-slider-arrow-left {
    left: 10px;
}

.product-cards-slider-arrow-right {
    right: 10px;
}

.product-cards-slider-arrow svg {
    width: 24px;
    height: 24px;
    stroke: #2563eb;
    stroke-width: 2;
    fill: none;
}

.product-card-header {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
    min-height: 56px;
}

.product-card-icon {
    width: 40px;
    height: 40px;
    background-color: #10b981;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-card-icon img {
    width: 28px;
    height: auto;
}

.product-card-title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: #111827;
}

.product-card-description {
    font-size: 15.9px;
    line-height: 26px;
    color: #374151;
    margin-bottom: 20px;
}

.product-card-list {
    list-style: none;
    margin-bottom: 20px;
}

.product-card-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.product-card-bullet {
    width: 10px;
    height: 10px;
    background-color: #10b981;
    border-radius: 9999px;
    margin-top: 4px;
    flex-shrink: 0;
}

.product-card-item-text {
    font-size: 15.9px;
    line-height: 26px;
    color: #374151;
}

.product-card-item-text strong {
    font-weight: 700;
}

.product-card-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
}

.product-card-link button {
    background: none;
    border: none;
    color: #111827;
    font-size: 17.6px;
    line-height: 28px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

/* What is RenovationUp Section */
.what-is-section {
    text-align: center;
}

.what-is-section .section-title {
    margin-bottom: 15px;
}

.what-is-content {
    max-width: 768px;
    margin: 0 auto;
}

.what-is-text {
    font-size: 20px;
    line-height: 28px;
    color: #374151;
    margin-bottom: 0;
}

.what-is-text strong {
    font-weight: 700;
}

/* Why Choose Section */
.why-choose-container {
    display: flex;
    gap: 230px;
    align-items: flex-start;
}

.why-choose-left {
    margin-top: 10px;
    flex: 0 0 508px;
}

.why-choose-text {
    font-size: 20px;
    line-height: 28px;
    color: #374151;
    margin-bottom: 19px;
}

.why-choose-right {
    flex: 1;
}

.why-choose-item {
    display: flex;
    gap: 10px;
    margin-bottom: 29px;
}

.why-choose-icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
}

.why-choose-content {
    flex: 1;
}

.why-choose-item-title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.why-choose-item-text {
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}

/* Commitments Section */
.commitments-grid {
    display: flex;
    gap: 0;
    justify-content: space-between;
    padding: 0 61px;
    margin-bottom: 38px;
}

.commitment-item {
    flex: 1;
    text-align: center;
    max-width: 328px;
}

.commitment-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 10px;
}

.commitment-title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 21px;
}

.commitment-text {
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}

/* Testimonials Section */
.testimonial-container {
    max-width: 820px;
    margin: 0 auto;
}

.testimonial-video {
    width: 100%;
    height: 563px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    margin-bottom: 16px;
}

.testimonial-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
}

.testimonial-info {
    text-align: center;
    padding: 16px 0 24px;
    font-size: 16px;
    line-height: 24px;
    color: #374151;
}

.testimonial-info strong {
    font-weight: 700;
}

/* Blog Section */
.blog-cards-container {
    position: relative;
    margin-bottom: 64px;
}

.blog-cards {
    display: flex;
    gap: 32px;
    margin-bottom: 64px;
}

.blog-card {
    flex: 1;
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}

/* Blog cards slider arrows */
.blog-cards-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #dbeafe;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-cards-slider-arrow:hover {
    background: #eff6ff;
    border-color: #2563eb;
}

.blog-cards-slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.blog-cards-slider-arrow.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.blog-cards-slider-arrow.disabled:hover {
    background: white;
    border-color: #dbeafe;
}

.blog-cards-slider-arrow-left {
    left: 10px;
}

.blog-cards-slider-arrow-right {
    right: 10px;
}

.blog-cards-slider-arrow svg {
    width: 24px;
    height: 24px;
    stroke: #2563eb;
    stroke-width: 2;
    fill: none;
}

.blog-card-title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.blog-card-date {
    font-size: 14px;
    line-height: 20px;
    color: #4b5563;
    margin-bottom: 16px;
}

.blog-card-excerpt {
    font-size: 17.9px;
    line-height: 28px;
    color: #374151;
    margin-bottom: 16px;
}

.blog-card-button {
    background-color: #2563eb;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    display: inline-block;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 56px 0;
}

.cta-title {
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 19.8px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

/* Footer Note */
.footer-note {
    font-size: 14px;
    line-height: 20px;
    color: #4b5563;
    text-align: center;
    margin-top: 56px;
}

.section-why-homeowners {
    padding: 54px 0;
}

.section-why-homeowners .section-container {
    max-width: 1350px;
}

.section-why-homeowners .section-container h2 {
    margin-bottom: 12px;
}

.section-our-commitments {
    padding: 54px 0;
}

.section-our-commitments .section-container {
    max-width: 1350px;
}

.section-upgrade-coverage {
    padding: 80px 0;
}

.section-blog {
    padding: 80px 0;
}

/* Desktop versions - show on screens >= 768px */
.hero-features-desktop,
.hero-cta-desktop {
    display: block;
}

.hero-features-mobile,
.hero-cta-mobile {
    display: none;
}

@media (max-width: 1350px) {
    .section {
        padding: 80px 128px;
    }

    .hero-image {
        flex: 0 0 350px;
        height: auto;
    }

    .section-upgrade-coverage {
        padding: 80px 20px;
    }

    .section-why-homeowners {
        padding: 80px 20px;
    }

    .section-our-commitments {
        padding: 80px 20px;
    }

    .section-blog {
        padding: 80px 20px;
    }

    .cta-section {
        padding: 80px 20px;
    }

    .why-choose-container {
        gap: 40px;
    }
}

/* Mobile Responsive */
@media (max-width: 980px) {
    .section {
        padding: 80px 16px;
    }

    .hero-content {
        flex: 1;
        max-width: 100%;
    }

    .hero-image {
        flex: 1;
        max-width: 100%;
    }

    .hero-section {
        padding: 12px 15px 100px;
        min-height: auto;
    }

    .hero-container {
        flex-direction: column;
        gap: 30px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 40px;
    }

    .hero-description {
        font-size: 24px;
        line-height: 32px;
    }

    /* Hide desktop versions on mobile */
    .hero-features-desktop,
    .hero-cta-desktop {
        display: none;
    }

    /* Show mobile versions on mobile */
    .hero-features-mobile,
    .hero-cta-mobile {
        display: block;
    }

    .hero-features-mobile {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Product cards slider for screens < 980px */
    .product-cards-container {
        padding: 41px 16px 9px;
        overflow: hidden;
    }

    .product-cards {
        flex-direction: row;
        flex-wrap: nowrap;
        transition: transform 0.3s ease;
        gap: 20px;
        width: 100%;
    }

    .product-card {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        flex-shrink: 0;
    }

    .product-cards-slider-arrow {
        display: flex;
    }

    .why-choose-container {
        flex-direction: column;
        gap: 38px;
    }

    .why-choose-left {
        flex: 1;
    }

    .commitments-grid {
        flex-direction: column;
        gap: 19px;
        padding: 0;
    }

    .commitment-item {
        max-width: 100%;
    }

    /* Blog cards slider for screens < 980px */
    .blog-cards-container {
        overflow: hidden;
        padding: 0 16px;
    }

    .blog-cards {
        flex-direction: row;
        flex-wrap: nowrap;
        transition: transform 0.3s ease;
        gap: 20px;
        width: 100%;
        margin-bottom: 64px;
    }

    .blog-card {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        flex-shrink: 0;
    }

    .blog-cards-slider-arrow {
        display: flex;
    }

    .cta-section {
        padding: 56px 16px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 12px 15px 100px;
        min-height: auto;
    }

    .hero-container {
        flex-direction: column;
        gap: 30px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 40px;
    }

    .hero-description {
        font-size: 24px;
        line-height: 32px;
    }

    /* Hide desktop versions on mobile */
    .hero-features-desktop,
    .hero-cta-desktop {
        display: none;
    }

    /* Show mobile versions on mobile */
    .hero-features-mobile,
    .hero-cta-mobile {
        display: block;
    }

    .hero-cta-mobile {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .hero-features-mobile {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .section {
        padding: 80px 16px;
    }

    .section-title {
        font-size: 36px;
        line-height: 40px;
    }

    .product-cards-container {
        padding: 41px 16px 9px;
    }

    .what-is-text {
        font-size: 20px;
        line-height: 28px;
    }

    .why-choose-text {
        font-size: 20px;
        line-height: 28px;
    }

    .testimonial-video {
        height: 237px;
    }

    .testimonial-play {
        width: 50px;
        height: 50px;
    }
}

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

body {
    font-family: 'Roboto', sans-serif;
    color: #111827;
    background-color: #ffffff;
    line-height: 1.5;
}

.libre-baskerville {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    font-style: normal;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-color: rgb(24, 24, 58);
    clip-path: url(#section-divider-68cb1f7a084d9460a23e335a);
    padding: 61px 15px 118px;
    min-height: 570px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-mask {
    position: absolute;
    inset: 0;
    mask-image: url('https://www.figma.com/api/mcp/asset/94b96306-a4b9-4b20-95b3-0c07c2350810');
    mask-size: 303.13% 1251.997px;
    mask-position: -101.04% -625.997px;
    mask-repeat: no-repeat;
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    width: 100%;
    display: flex;
    gap: 90px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    margin-top: 0;
    flex: 0 0 545.59px;
    color: white;
}

.hero-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 36px;
    line-height: 40px;
    color: white;
    margin-bottom: 40px;
}

.hero-subtitle {
    font-size: 24px;
    line-height: 32px;
    color: #f3f4f6;
    font-weight: 700;
    margin-bottom: 13px;
}

.hero-description {
    font-size: 24px;
    line-height: 32px;
    color: #f3f4f6;
    margin-bottom: 70px;
}

.hero-description strong {
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: white;
    color: #1d4ed8;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-secondary {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17.6px;
    line-height: 28px;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hero-image {
    flex: 0 0 667px;
    height: 448px;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Plan at a Glance Section */
.plan-section {
    background-color: white;
    padding: 0 0 52px;
}

.plan-container {
    max-width: 1152px;
    margin: 0 auto;
    width: 632px;
    display: flex;
    justify-content: center;
}

.plan-card {
    background-color: rgba(236, 253, 245, 0.6);
    border: 1px solid rgba(209, 250, 229, 0.8);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
    height: 260px;
    width: 484px;
}

.plan-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #111827;
    margin-bottom: 16px;
}

.plan-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.plan-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.plan-bullet {
    width: 10px;
    height: 10px;
    background-color: #10b981;
    border-radius: 9999px;
    margin-top: 4px;
    flex-shrink: 0;
}

.plan-item-content {
    display: flex;
    gap: 12px;
    flex: 1;
}

.plan-item-label {
    font-size: 15.9px;
    font-weight: 700;
    line-height: 26px;
    color: #064e3b;
    min-width: 92px;
}

.plan-item-value {
    font-size: 15.9px;
    line-height: 26px;
    color: #064e3b;
}

/* How It Works Section */
.how-it-works-section {
    background-color: #f3f4f6;
    padding: 64px 0;
}

.how-it-works-container {
    max-width: 1438px;
    margin: 0 auto;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    color: #111827;
    text-align: center;
    margin-bottom: 22px;
}

.steps-container {
    display: flex;
    gap: 45px;
    justify-content: center;
    padding: 0 61px;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 328px;
}

.step-icon {
    width: 54px;
    height: 54px;
}

.step-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.step-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #000;
    min-height: 19px;
}

.step-description {
    font-size: 16px;
    line-height: 24px;
    color: #000;
    min-height: 137px;
}

/* What's Not Covered Section */
.not-covered-section {
    background-color: white;
    padding: 80px 0;
}

.not-covered-container {
    max-width: 1152px;
    margin: 0 auto;
}

.not-covered-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    color: #111827;
    text-align: center;
    margin-bottom: 31px;
}

.not-covered-cards {
    display: flex;
    gap: 28px;
    justify-content: center;
}

.not-covered-card {
    background-color: rgba(255, 241, 242, 0.6);
    border: 1px solid rgba(255, 228, 230, 0.8);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
    width: 484px;
    min-height: 246px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.not-covered-header {
    display: flex;
    gap: 12px;
    align-items: center;
}

.not-covered-icon {
    width: 40px;
    height: 40px;
    background-color: #ffe4e6;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.not-covered-icon-text {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: #e11d48;
}

.not-covered-label {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: #e11d48;
    letter-spacing: 0.35px;
}

.not-covered-text {
    font-size: 20px;
    line-height: 28px;
    color: #1f2937;
}

/* CTA Section */
.cta-section {
    background-color: #18183a;
    padding: 56px 0;
}

.cta-container {
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    color: white;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 19.8px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Pricing Section */
.pricing-section {
    background-color: white;
    padding: 80px 0;
}

.pricing-container {
    max-width: 1152px;
    margin: 0 auto;
}

.pricing-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    color: #111827;
    text-align: center;
    margin-bottom: 31px;
}

.pricing-cards {
    display: flex;
    gap: 56px;
    justify-content: center;
}

.pricing-card {
    background-color: rgba(236, 253, 245, 0.6);
    border: 1px solid rgba(209, 250, 229, 0.8);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.pricing-card:first-child {
    width: 282px;
    height: 306px;
    vertical-align: middle;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.pricing-card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #111827;
    margin-bottom: 16px;
}

.pricing-card-content {
    font-size: 15.9px;
    line-height: 26px;
    color: #064e3b;
}

.pricing-card-content strong {
    font-weight: 700;
}

.eligibility-card {
    width: 533px;
    height: 306px;
}

.eligibility-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.eligibility-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.eligibility-bullet {
    width: 10px;
    height: 10px;
    background-color: #10b981;
    border-radius: 9999px;
    margin-top: 4px;
    flex-shrink: 0;
}

.eligibility-text {
    font-size: 15.9px;
    line-height: 26px;
    color: #064e3b;
}

/* Commitments Section */
.commitments-section {
    background-color: #f3f4f6;
    padding: 64px 0;
}

.commitments-container {
    max-width: 1438px;
    margin: 0 auto;
}

.commitments-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    color: #111827;
    text-align: center;
    margin-bottom: 38px;
}

.commitments-grid {
    display: flex;
    gap: 120px;
    justify-content: center;
    padding: 0 61px;
}

.commitment-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 328px;
}

.commitment-icon {
    width: 54px;
    height: 54px;
}

.commitment-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.commitment-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #000;
    min-height: 19px;
}

.commitment-description {
    font-size: 16px;
    line-height: 24px;
    color: #000;
    min-height: 74px;
}

.commitments-link {
    margin-top: 38px;
    text-align: center;
}

.commitments-link-text {
    font-size: 17.6px;
    font-weight: 700;
    line-height: 28px;
    color: #111827;
    text-decoration: none;
}

/* Testimonials Section */
.testimonials-section {
    background-color: white;
    padding: 80px 0;
}

.testimonials-container {
    max-width: 1920px;
    margin: 0 auto;
}

.testimonials-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    color: #111827;
    text-align: center;
    margin-bottom: 46px;
}

.testimonials-grid-container {
    position: relative;
    margin-bottom: 46px;
}

.testimonials-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
}

/* Testimonials slider arrows */
.testimonials-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #dbeafe;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonials-slider-arrow:hover {
    background: #eff6ff;
    border-color: #2563eb;
}

.testimonials-slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.testimonials-slider-arrow.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.testimonials-slider-arrow.disabled:hover {
    background: white;
    border-color: #dbeafe;
}

.testimonials-slider-arrow-left {
    left: 10px;
}

.testimonials-slider-arrow-right {
    right: 10px;
}

.testimonials-slider-arrow svg {
    width: 24px;
    height: 24px;
    stroke: #2563eb;
    stroke-width: 2;
    fill: none;
}

.testimonial-card {
    background-color: white;
    border: 1px solid #eff6ff;
    border-radius: 24px;
    padding: 41px;
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 560px;
    min-height: 802px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.testimonial-image-container {
    height: 320px;
    border-radius: 40px;
    overflow: hidden;
}

.testimonial-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content-card {
    background-color: rgba(236, 253, 245, 0.6);
    border: 1px solid rgba(209, 250, 229, 0.8);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
    min-height: 372px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-header {
    display: flex;
    gap: 12px;
    align-items: center;
}

.testimonial-category {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: #064e3b;
    letter-spacing: 0.35px;
}

.testimonial-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #111827;
}

.testimonial-quote {
    font-size: 20px;
    line-height: 28px;
    color: #1f2937;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: #064e3b;
    letter-spacing: 0.35px;
}

.testimonial-details {
    font-size: 16px;
    line-height: 24px;
    color: #111827;
}

.testimonials-link {
    text-align: center;
}

.testimonials-link-text {
    font-size: 17.6px;
    font-weight: 700;
    line-height: 28px;
    color: #111827;
    text-decoration: none;
}

/* FAQ Section */
.faq-section {
    background-color: white;
    padding: 80px 0;
}

.faq-container {
    max-width: 896px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 64px;
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    color: #111827;
    margin-bottom: 16px;
}

.faq-subtitle {
    font-size: 20px;
    line-height: 28px;
    color: #4b5563;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 64px;
}

.faq-item {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: #f9fafb;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: #111827;
}

.faq-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-arrow.rotate-180 {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 24px 16px 24px;
    font-size: 16px;
    line-height: 24px;
    color: #1f2937;
}

.faq-content.hidden {
    display: none;
}

.faq-link {
    text-align: center;
}

.faq-link-text {
    font-size: 17.6px;
    font-weight: 700;
    line-height: 28px;
    color: #111827;
    text-decoration: none;
}

.upgrade-card-flex {
    display: flex;
    gap: 32px;
    justify-content: center;
}


@media (max-width: 1350px) {
    .hero-container {
        gap: 30px;
    }

    .hero-content {
        flex: 0 0 500px;
    }

    .hero-image {
        flex: 0 0 500px;
        height: auto;
    }
}

@media (max-width: 1050px) {
    .hero-container {
        gap: 10px;
    }

    .hero-content {
        flex: 0 0 300px;
    }

    .hero-image {
        flex: 0 0 400px;
    }

    .steps-container {
        flex-direction: column;
        gap: 0;
    }

    .step-item {
        max-width: 100%;
    }

    .pricing-card {
        overflow: hidden;
    }

    .commitments-grid {
        flex-direction: column;
        gap: 0;
    }

    .commitment-item {
        max-width: 100%;
    }

    /* Testimonials slider for screens < 1050px */
    .testimonials-grid-container {
        overflow: hidden;
        padding: 0 16px;
    }

    .testimonials-grid {
        flex-direction: row;
        flex-wrap: nowrap;
        transition: transform 0.3s ease;
        gap: 20px;
        width: 100%;
        justify-content: flex-start;
    }

    .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        flex-shrink: 0;
    }

    .testimonials-slider-arrow {
        display: flex;
    }
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        padding: 12px 15px 100px;
        min-height: auto;
        position: relative;
    }

    .hero-container {
        flex-direction: column;
        gap: 33px;
        width: 100%;
    }

    .hero-content {
        flex: none;
        width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
        line-height: 40px;
        width: 100%;
    }

    .hero-subtitle {
        font-size: 24px;
        line-height: 32px;
    }

    .hero-description {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 40px;
    }

    .hero-image {
        flex: none;
        width: 100%;
        height: auto;
        aspect-ratio: 2528/1696;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 17px;
    }

    .plan-section,
    .how-it-works-section,
    .upgrade-section,
    .not-covered-section,
    .cta-section,
    .pricing-section,
    .commitments-section,
    .testimonials-section,
    .faq-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .plan-section {
        padding-top: 51px;
        padding-bottom: 51px;
    }

    .plan-container {
        width: 100%;
        max-width: 345px;
    }

    .plan-card {
        width: 100%;
        height: auto;
        min-height: 364px;
    }

    .plan-list {
        gap: 20px;
    }

    .plan-item-content {
        flex-direction: column;
        gap: 0;
    }

    .plan-item-label,
    .plan-item-value {
        width: 100%;
    }

    .how-it-works-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .how-it-works-container {
        width: 100%;
    }

    .section-title {
        font-size: 36px;
        line-height: 40px;
        width: 263px;
        margin: 0 auto 80px;
    }

    .steps-container {
        flex-direction: column;
        padding: 0 61px;
        gap: 29px;
    }

    .step-item {
        max-width: 100%;
    }

    .step-content {
        gap: 11px;
    }

    .step-description {
        min-height: 143px;
    }

    .not-covered-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .not-covered-container {
        width: 100%;
        max-width: 353px;
    }

    .not-covered-title {
        font-size: 30px;
        line-height: 36px;
        width: 353px;
        margin-bottom: 31px;
    }

    .not-covered-cards {
        flex-direction: column;
        gap: 28px;
        width: 341px;
    }

    .not-covered-card {
        width: 100%;
        height: auto;
        min-height: 246px;
    }

    .not-covered-text {
        width: 302px;
    }

    .cta-section {
        padding: 56px 15px;
    }

    .cta-container {
        width: 100%;
    }

    .cta-title {
        font-size: 36px;
        line-height: 40px;
        margin: 0 auto 16px;
    }

    .cta-description {
        font-size: 19.8px;
        line-height: 28px;
        margin: 0 auto 16px;
    }

    .cta-buttons {
        margin: 0 auto;
    }

    .pricing-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .pricing-container {
        width: 100%;
        max-width: 319px;
    }

    .pricing-title {
        font-size: 36px;
        line-height: 40px;
        width: 301px;
        margin: 0 auto 31px;
    }

    .pricing-cards {
        flex-direction: column;
        gap: 24px;
    }

    .pricing-card {
        width: 100%;
        max-width: 339px;
        height: auto;
    }

    .pricing-card:first-child {
        min-height: 145px;
        width: 100% !important;
    }

    .eligibility-card {
        width: 100%;
        max-width: 339px;
        height: auto;
        min-height: 412px;
    }

    .commitments-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .commitments-container {
        width: 100%;
    }

    .commitments-title {
        font-size: 36px;
        line-height: 40px;
        width: 263px;
        margin: 0 auto 46px;
    }

    .commitments-grid {
        flex-direction: column;
        padding: 0 61px;
        gap: 19px;
    }

    .commitment-item {
        max-width: 100%;
    }

    .commitment-content {
        gap: 21px;
    }

    .commitment-description {
        min-height: 74px;
    }

    .testimonials-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .testimonials-container {
        width: 100%;
    }

    .testimonials-title {
        font-size: 30px;
        line-height: 36px;
        margin: 0 auto 31px;
    }

    .testimonials-grid-container {
        overflow: hidden;
        padding: 0 16px;
    }

    .testimonials-grid {
        flex-direction: row;
        flex-wrap: nowrap;
        transition: transform 0.3s ease;
        gap: 20px;
        width: 100%;
        justify-content: flex-start;
    }

    .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        flex-shrink: 0;
        height: auto;
        min-height: 643px;
        margin: 0;
    }

    .testimonials-slider-arrow {
        display: flex;
    }

    .testimonial-image-container {
        height: 183px;
    }

    .testimonial-content-card {
        height: auto;
        min-height: 374px;
    }

    .faq-section {
        padding: 80px 15px;
    }

    .faq-container {
        width: 100%;
    }

    .faq-title {
        font-size: 36px;
        line-height: 40px;
    }
}