/* Product Section */
.product-section {
    position: relative;
    z-index: 50;
    background-color: #FCF9F1;
    padding: 88px 0 72px;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    overflow: hidden;
}

.product-container {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.product-content {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(420px, 520px) minmax(620px, 1fr);
    grid-template-areas:
        "intro intro"
        "features visual";
    align-items: start;
    column-gap: clamp(40px, 4.5vw, 88px);
    row-gap: 48px;
    padding-left: clamp(56px, 8vw, 150px);
}

.product-copy {
    grid-area: intro;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 20px;
    color: #7DB8CC;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.product-eyebrow span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #7DB8CC;
    flex: 0 0 auto;
}

.product-heading {
    margin: 0;
    max-width: 650px;
    color: #111111;
    font-family: 'Comfortaa', sans-serif;
    font-size: clamp(2.65rem, 3vw, 3.45rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0;
}

.product-feature-list {
    grid-area: features;
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding-top: 6px;
}

.product-feature {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 22px;
    align-items: flex-start;
}

.product-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-feature-icon img {
    width: 28px;
    height: 28px;
    display: block;
}

.product-feature-icon--pink {
    background-color: #F1C5D3;
}

.product-feature-icon--blue {
    background-color: #C5E1E8;
}

.product-feature-icon--green {
    background-color: #CADFCF;
}

.product-feature-icon--lavender {
    background-color: #D7DFF1;
}

.product-feature h3 {
    margin: 1px 0 8px;
    color: #121212;
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.16rem;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 0;
}

.product-feature p {
    margin: 0;
    max-width: 430px;
    color: #222222;
    font-size: 0.76rem;
    font-weight: 400;
    line-height: 1.55;
}

.product-visual {
    grid-area: visual;
    min-height: 430px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: visible;
}

.product-visual-shape {
    position: relative;
    width: min(740px, 52vw);
    min-height: 390px;
    margin-right: -7vw;
}

.product-visual-shape img {
    position: absolute;
    width: 100%;
    max-width: none;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
}

.product-cta-btn {
    align-self: center;
    margin-top: 48px;
    min-width: 260px;
    border: 2px solid #7DB8CC;
    border-radius: 12px;
    background-color: #7DB8CC;
    color: #FFFFFF;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    padding: 20px 34px;
}

.product-cta-btn:hover {
    background-color: #66AFC5;
    border-color: #66AFC5;
}

@media (max-width: 1180px) {
    .product-content {
        grid-template-columns: minmax(400px, 500px) minmax(470px, 1fr);
        padding-left: 48px;
        column-gap: 36px;
        row-gap: 42px;
    }

    .product-heading {
        max-width: 520px;
        font-size: clamp(2.35rem, 3.8vw, 3.05rem);
    }

    .product-visual-shape {
        width: min(640px, 52vw);
        min-height: 370px;
        margin-right: -6vw;
    }
}

@media (max-width: 1024px) {
    .product-section {
        padding: 84px 0 76px;
    }

    .product-content {
        grid-template-columns: 1fr;
        grid-template-areas:
            "intro"
            "visual"
            "features";
        gap: 44px;
        padding: 0 20px;
    }

    .product-heading {
        max-width: 720px;
        font-size: clamp(2.1rem, 7vw, 3rem);
    }

    .product-visual {
        min-height: auto;
        width: 100%;
        justify-content: center;
    }

    .product-visual-shape {
        width: min(620px, 108%);
        min-height: 430px;
        margin-right: -8%;
        margin-left: auto;
    }

    .product-visual-shape img {
        width: 100%;
        left: 0;
        right: auto;
    }
}

@media (max-width: 640px) {
    .product-section {
        padding: 58px 0 64px;
    }

    .product-eyebrow {
        margin-bottom: 16px;
        font-size: 0.68rem;
        line-height: 1.4;
    }

    .product-heading {
        margin-bottom: 0;
        font-size: clamp(2.35rem, 10vw, 2.75rem);
        line-height: 1.12;
    }

    .product-feature-list {
        gap: 34px;
    }

    .product-feature {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 18px;
    }

    .product-feature-icon {
        width: 52px;
        height: 52px;
        border-radius: 12px;
    }

    .product-feature-icon img {
        width: 26px;
        height: 26px;
    }

    .product-feature h3 {
        margin-top: 0;
        font-size: 1.22rem;
        line-height: 1.12;
    }

    .product-feature p {
        font-size: 0.86rem;
        line-height: 1.62;
    }

    .product-visual-shape {
        width: min(460px, 122%);
        min-height: 350px;
        margin-left: auto;
        margin-right: -10%;
        margin-top: -10px;
    }

    .product-visual-shape img {
        width: 100%;
        left: 0;
    }

    .product-cta-btn {
        width: calc(100% - 40px);
        min-width: 0;
        margin-top: 48px;
    }
}
