/* =========================================================
   PRODUCT PAGE HERO
========================================================= */

.prodpage-hero {
    position: relative;
    min-height: 700px;
    padding: 60px 0;
    background: #07100d;
    overflow: hidden;

    display: flex;
    align-items: center;
}


/* Background Grid */

.prodpage-hero-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 65px 65px;

    mask-image: linear-gradient(
        to bottom,
        black,
        transparent 90%
    );

    pointer-events: none;
}


/* Main Green Glow */

.prodpage-hero::before {
    content: "";
    position: absolute;

    width: 650px;
    height: 650px;

    right: -250px;
    top: -250px;

    background: rgba(99, 212, 113, 0.10);

    filter: blur(120px);

    border-radius: 50%;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.prodpage-hero-content {
    position: relative;
    z-index: 3;
}


/* Label */

.prodpage-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 8px 15px;
    margin-bottom: 24px;

    color: #63d471;

    border: 1px solid rgba(99, 212, 113, 0.25);

    background: rgba(99, 212, 113, 0.06);

    border-radius: 50px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}


.prodpage-label-dot {
    width: 7px;
    height: 7px;

    background: #63d471;

    border-radius: 50%;

    box-shadow: 0 0 14px rgba(99, 212, 113, 0.8);
}


/* Heading */

.prodpage-hero-title {
    max-width: 650px;

    margin: 0 0 25px;

    color: #ffffff;

    font-size: clamp(48px, 5.5vw, 76px);
    line-height: 1.02;

    font-weight: 800;

    letter-spacing: -2.5px;
}


.prodpage-hero-title span {
    display: block;

    color: #63d471;
}


/* Description */

.prodpage-hero-description {
    max-width: 570px;

    margin-bottom: 32px;

    color: rgba(255,255,255,0.62);

    font-size: 16px;
    line-height: 1.8;
}


/* Buttons */

.prodpage-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-bottom: 35px;
}


.prodpage-btn-primary,
.prodpage-btn-outline {
    min-height: 50px;

    padding: 13px 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 600;

    transition: all 0.3s ease;
}


.prodpage-btn-primary {
    color: #07100d;

    background: #63d471;

    border: 1px solid #63d471;
}


.prodpage-btn-primary:hover {
    color: #07100d;

    background: #7be987;
    border-color: #7be987;

    transform: translateY(-2px);
}


.prodpage-btn-outline {
    color: #ffffff;

    background: transparent;

    border: 1px solid rgba(255,255,255,0.18);
}


.prodpage-btn-outline:hover {
    color: #ffffff;

    background: rgba(99,212,113,0.08);

    border-color: #63d471;
}


/* =========================================================
   HERO POINTS
========================================================= */

.prodpage-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}


.prodpage-hero-point {
    display: flex;
    align-items: center;
    gap: 7px;

    color: rgba(255,255,255,0.55);

    font-size: 12px;
}


.prodpage-hero-point i {
    color: #63d471;

    font-size: 13px;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.prodpage-hero-visual {
    position: relative;

    min-height: 540px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Main Glow */

.prodpage-visual-glow {
    position: absolute;

    width: 430px;
    height: 430px;

    background: rgba(99,212,113,0.12);

    filter: blur(90px);

    border-radius: 50%;
}


/* Ring */

.prodpage-visual-ring {
    position: absolute;

    width: 430px;
    height: 430px;

    border: 1px solid rgba(99,212,113,0.16);

    border-radius: 50%;
}


.prodpage-visual-ring::before {
    content: "";

    position: absolute;
    inset: 35px;

    border: 1px dashed rgba(99,212,113,0.12);

    border-radius: 50%;
}


/* =========================================================
   ALL PRODUCTS IMAGE
========================================================= */

.prodpage-products-image {
    position: relative;

    z-index: 3;

    width: 85%;
    max-width: 530px;

    display: flex;
    align-items: center;
    justify-content: center;

    animation: prodpageProductFloat 5s ease-in-out infinite;
}


.prodpage-products-image img {
    width: 100%;
    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(0 25px 35px rgba(0,0,0,0.5))
        drop-shadow(0 0 25px rgba(99,212,113,0.08));
}


/* =========================================================
   FLOATING PRODUCT LABELS
========================================================= */

.prodpage-floating-label {
    position: absolute;

    z-index: 6;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 14px;

    background: rgba(8,20,15,0.88);

    border: 1px solid rgba(255,255,255,0.10);

    border-radius: 10px;

    backdrop-filter: blur(12px);

    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}


.prodpage-floating-label i {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #63d471;

    background: rgba(99,212,113,0.10);

    border-radius: 7px;
}


.prodpage-floating-label small {
    display: block;

    color: rgba(255,255,255,0.38);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.3px;
}


.prodpage-floating-label strong {
    display: block;

    margin-top: 2px;

    color: #ffffff;

    font-size: 10px;
    font-weight: 600;
}


/* Positions */

.prodpage-floating-one {
    top: 55px;
    right: 0;
}


.prodpage-floating-two {
    bottom: 105px;
    left: 0;
}


.prodpage-floating-three {
    right: 15px;
    bottom: 20px;
}


/* =========================================================
   FLOAT ANIMATION
========================================================= */

@keyframes prodpageProductFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .prodpage-hero {
        min-height: auto;
        padding: 80px 0;
    }

    .prodpage-hero-content {
        text-align: center;
    }

    .prodpage-hero-title,
    .prodpage-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .prodpage-hero-buttons {
        justify-content: center;
    }

    .prodpage-hero-points {
        justify-content: center;
    }

    .prodpage-hero-visual {
        min-height: 480px;
        margin-top: 15px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .prodpage-hero {
        padding: 60px 0 45px;
    }

    .prodpage-hero-title {
        font-size: 43px;
        letter-spacing: -1.5px;
    }

    .prodpage-hero-description {
        font-size: 14px;
        line-height: 1.7;
    }

    .prodpage-hero-buttons {
        flex-direction: column;
    }

    .prodpage-btn-primary,
    .prodpage-btn-outline {
        width: 100%;
    }

    .prodpage-hero-points {
        gap: 10px 15px;
    }

    .prodpage-hero-point {
        font-size: 10px;
    }

    .prodpage-hero-visual {
        min-height: 350px;
        margin-top: 15px;
    }

    .prodpage-visual-ring {
        width: 280px;
        height: 280px;
    }

    .prodpage-visual-ring::before {
        inset: 25px;
    }

    .prodpage-products-image {
        width: 92%;
    }

    .prodpage-floating-label {
        padding: 7px 9px;
        gap: 7px;
    }

    .prodpage-floating-label i {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .prodpage-floating-label strong {
        font-size: 8px;
    }

    .prodpage-floating-one {
        top: 15px;
        right: -5px;
    }

    .prodpage-floating-two {
        bottom: 65px;
        left: -5px;
    }

    .prodpage-floating-three {
        right: -5px;
        bottom: 10px;
    }

}

/* =========================================================================================== */

/* =========================================================
   PRODUCT CATEGORY NAVIGATION
========================================================= */

.prodpage-category-section {
    position: relative;

    padding: 60px 0;

    background: #f7f9f7;

    overflow: hidden;
}


/* Section Label */

.prodpage-category-label {
    display: inline-block;

    margin-bottom: 10px;

    color: #4fae5d;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}


/* Heading */

.prodpage-category-title {
    margin: 0;

    color: #101713;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -1.5px;
}


.prodpage-category-title span {
    color: #4fae5d;
}


/* Description */

.prodpage-category-description {
    max-width: 480px;

    margin: 0 0 4px auto;

    color: #69736d;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   CATEGORY CARDS
========================================================= */

.prodpage-category-wrapper {
    margin-top: 45px;
}


.prodpage-category-card {
    position: relative;

    min-height: 140px;

    padding: 25px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    text-decoration: none;

    background: #ffffff;

    border: 1px solid #e5ebe6;

    border-radius: 16px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


/* Background Number */

.prodpage-category-number {
    position: absolute;

    top: -8px;
    right: 0px;

    color: rgba(16,23,19,0.035);

    font-size: 70px;

    line-height: 1;

    font-weight: 900;

    transition: color 0.35s ease;
}


/* Icon */

.prodpage-category-icon {
    position: relative;
    z-index: 2;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #4fae5d;

    background: rgba(79,174,93,0.09);

    border-radius: 11px;

    font-size: 19px;

    transition: all 0.35s ease;
}


/* Title */

.prodpage-category-card h3 {
    position: relative;
    z-index: 2;

    margin: 18px 0 0;

    color: #172019;

    font-size: 15px;

    font-weight: 700;
}


/* Arrow */

.prodpage-category-arrow {
    position: absolute;

    right: 20px;
    bottom: 20px;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #68726c;

    border: 1px solid #e2e7e3;

    border-radius: 50%;

    font-size: 12px;

    transition: all 0.35s ease;
}


/* =========================================================
   HOVER
========================================================= */

.prodpage-category-card:hover {
    transform: translateY(-7px);

    border-color: rgba(79,174,93,0.35);

    box-shadow: 0 18px 40px rgba(21,55,30,0.09);
}


.prodpage-category-card:hover .prodpage-category-icon {
    color: #ffffff;

    background: #4fae5d;

    transform: scale(1.05);
}


.prodpage-category-card:hover .prodpage-category-arrow {
    color: #ffffff;

    background: #4fae5d;

    border-color: #4fae5d;

    transform: rotate(45deg);
}


.prodpage-category-card:hover .prodpage-category-number {
    color: rgba(79,174,93,0.07);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991.98px) {

    .prodpage-category-section {
        padding: 70px 0;
    }

    .prodpage-category-description {
        margin: 18px 0 0;
        max-width: 600px;
    }

}


@media (max-width: 575.98px) {

    .prodpage-category-section {
        padding: 60px 0;
    }

    .prodpage-category-title {
        font-size: 34px;
    }

    .prodpage-category-description {
        font-size: 13px;
    }

    .prodpage-category-wrapper {
        margin-top: 30px;
    }

    .prodpage-category-card {
        min-height: 165px;

        padding: 18px;
    }

    .prodpage-category-icon {
        width: 40px;
        height: 40px;

        font-size: 16px;
    }

    .prodpage-category-card h3 {
        margin-top: 12px;

        font-size: 13px;
        max-width: 90px;
    }

    .prodpage-category-number {
        font-size: 55px;
    }

    .prodpage-category-arrow {
        width: 28px;
        height: 28px;

        right: 14px;
        bottom: 14px;
    }

}

/* ============================================================================================== */

/* =========================================================
   PRODUCT SECTION COMMON
========================================================= */

.prodpage-product-section {
    position: relative;

    padding: 60px 0;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================================
   PRODUCT VISUAL
========================================================= */

.prodpage-product-visual {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Large Background Number */

.prodpage-product-big-number {
    position: absolute;

    left: 0;
    bottom: -20px;

    color: rgba(79,174,93,0.045);

    font-size: 190px;

    line-height: 1;

    font-weight: 900;

    user-select: none;

    z-index: 3;
}


/* Product Glow */

.prodpage-product-glow {
    position: absolute;

    width: 330px;
    height: 330px;

    background: rgba(99,212,113,0.12);

    filter: blur(90px);

    border-radius: 50%;
}


/* Image Box */

.prodpage-product-image-box {
    position: relative;

    z-index: 2;

    width: 85%;
    max-width: 480px;

    min-height: 420px;

    padding: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #f8fbf8,
            #eef6ef
        );

    border: 1px solid #e2ebe3;

    border-radius: 28px;

    overflow: hidden;

    box-shadow:
        0 25px 60px rgba(26,65,35,0.08);
}


/* Decorative Circle */

.prodpage-product-image-box::before {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    border: 1px solid rgba(79,174,93,0.13);

    border-radius: 50%;
}


/* Image Tag */

.prodpage-image-tag {
    position: absolute;

    top: 20px;
    left: 20px;

    z-index: 4;

    padding: 7px 11px;

    color: #4fae5d;

    background: rgba(79,174,93,0.08);

    border: 1px solid rgba(79,174,93,0.15);

    border-radius: 50px;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


/* Product Image */

.prodpage-product-image {
    position: relative;

    z-index: 3;

    max-height: 340px;

    object-fit: contain;

    filter: drop-shadow(
        0 25px 25px rgba(0,0,0,0.18)
    );

    transition: transform 0.4s ease;
}


.prodpage-product-image-box:hover .prodpage-product-image {
    transform: scale(1.04);
}


/* =========================================================
   PRODUCT CONTENT
========================================================= */

.prodpage-product-content {
    max-width: 570px;
}


/* Label */

.prodpage-product-label {
    display: inline-block;

    margin-bottom: 16px;

    color: #4fae5d;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.8px;
}


/* Title */

.prodpage-product-title {
    margin: 0 0 20px;

    color: #111813;

    font-size: clamp(40px, 4vw, 58px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -1.8px;
}


.prodpage-product-title span {
    display: block;

    color: #4fae5d;
}


/* Description */

.prodpage-product-description {
    margin-bottom: 30px;

    color: #68726b;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   FEATURES
========================================================= */

.prodpage-product-features {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 14px;

    margin-bottom: 28px;
}


.prodpage-feature-item {
    display: flex;

    gap: 11px;

    padding: 15px;

    background: #f7f9f7;

    border: 1px solid #e8eee9;

    border-radius: 12px;
}


.prodpage-feature-icon {
    flex: 0 0 auto;

    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #4fae5d;

    background: rgba(79,174,93,0.10);

    border-radius: 8px;
}


.prodpage-feature-item strong {
    display: block;

    margin-bottom: 3px;

    color: #1a211c;

    font-size: 12px;

    font-weight: 700;
}


.prodpage-feature-item span {
    display: block;

    color: #818982;

    font-size: 10px;

    line-height: 1.5;
}


/* =========================================================
   VARIANTS
========================================================= */

.prodpage-variants {
    margin-bottom: 28px;

    padding: 18px;

    background: #ffffff;

    border: 1px solid #e2e9e3;

    border-radius: 13px;
}


.prodpage-variants-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 13px;
}


.prodpage-variants-header span {
    color: #68736b;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.4px;
}


.prodpage-variants-header i {
    color: #4fae5d;

    font-size: 15px;
}


.prodpage-variant-list {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}


.prodpage-variant {
    padding: 7px 12px;

    color: #4b564e;

    background: #f5f8f5;

    border: 1px solid #e3eae4;

    border-radius: 6px;

    font-size: 11px;

    font-weight: 600;
}


/* =========================================================
   PRODUCT CTA
========================================================= */

.prodpage-product-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    min-height: 50px;

    padding: 12px 18px 12px 20px;

    color: #ffffff;

    background: #17221a;

    border: 1px solid #17221a;

    border-radius: 8px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    transition: all 0.3s ease;
}


.prodpage-product-btn span {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #17221a;

    background: #63d471;

    border-radius: 50%;

    transition: transform 0.3s ease;
}


.prodpage-product-btn:hover {
    color: #ffffff;

    background: #4fae5d;

    border-color: #4fae5d;

    transform: translateY(-2px);
}


.prodpage-product-btn:hover span {
    transform: rotate(45deg);
}


/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 991.98px) {

    .prodpage-product-section {
        padding: 80px 0;
    }

    .prodpage-product-content {
        max-width: 100%;
    }

    .prodpage-product-visual {
        min-height: 430px;
    }

}


@media (max-width: 575.98px) {

    .prodpage-product-section {
        padding: 65px 0;
    }

    .prodpage-product-visual {
        min-height: 350px;
    }

    .prodpage-product-image-box {
        width: 92%;
        min-height: 330px;

        padding: 30px;

        border-radius: 20px;
    }

    .prodpage-product-image {
        max-height: 250px;
    }

    .prodpage-product-big-number {
        font-size: 110px;
    }

    .prodpage-product-title {
        font-size: 40px;
    }

    .prodpage-product-description {
        font-size: 14px;
    }

    .prodpage-product-features {
        grid-template-columns: 1fr;
    }

    .prodpage-product-btn {
        width: 100%;
    }

}

/* ============================================================================================== */

/* =========================================================
   WHY CHOOSE OUR PRODUCTS
========================================================= */

.prodpage-why-section {
    position: relative;

    padding: 60px 0;

    background: #07100d;

    overflow: hidden;
}


/* Background Glow */

.prodpage-why-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: -250px;
    top: 100px;

    background: rgba(99,212,113,0.08);

    filter: blur(110px);

    border-radius: 50%;

    pointer-events: none;
}


.prodpage-why-section::after {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -220px;
    bottom: -180px;

    background: rgba(99,212,113,0.07);

    filter: blur(100px);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   HEADER
========================================================= */

.prodpage-why-section .container {
    position: relative;
    z-index: 2;
}


.prodpage-why-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #63d471;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.prodpage-why-title {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: clamp(36px, 4.5vw, 58px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.8px;
}


.prodpage-why-title span {
    display: block;

    color: #63d471;
}


.prodpage-why-description {
    max-width: 620px;

    margin: 0 auto;

    color: rgba(255,255,255,0.52);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   WHY GRID
========================================================= */

.prodpage-why-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 14px;

    margin-top: 60px;
}


/* Card */

.prodpage-why-card {
    position: relative;

    min-height: 310px;

    padding: 28px 24px;

    background: rgba(255,255,255,0.035);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 16px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}


.prodpage-why-card:hover {
    transform: translateY(-8px);

    background: rgba(99,212,113,0.055);

    border-color: rgba(99,212,113,0.30);
}


/* Number */

.prodpage-why-number {
    position: absolute;

    top: 12px;
    right: 15px;

    color: rgba(255,255,255,0.035);

    font-size: 72px;

    line-height: 1;

    font-weight: 900;

    transition: color 0.35s ease;
}


.prodpage-why-card:hover .prodpage-why-number {
    color: rgba(99,212,113,0.08);
}


/* Icon */

.prodpage-why-icon {
    position: relative;

    z-index: 2;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #63d471;

    background: rgba(99,212,113,0.09);

    border: 1px solid rgba(99,212,113,0.12);

    border-radius: 11px;

    font-size: 18px;

    transition: all 0.35s ease;
}


.prodpage-why-card:hover .prodpage-why-icon {
    color: #07100d;

    background: #63d471;

    transform: scale(1.05);
}


/* Card Title */

.prodpage-why-card h3 {
    position: relative;

    z-index: 2;

    margin: 38px 0 12px;

    color: #ffffff;

    font-size: 16px;

    font-weight: 700;
}


/* Card Description */

.prodpage-why-card p {
    position: relative;

    z-index: 2;

    margin: 0;

    color: rgba(255,255,255,0.42);

    font-size: 11px;

    line-height: 1.7;
}


/* Bottom Line */

.prodpage-why-line {
    position: absolute;

    left: 24px;
    bottom: 24px;

    width: 35px;
    height: 2px;

    background: #63d471;

    opacity: 0.6;

    transition: width 0.35s ease;
}


.prodpage-why-card:hover .prodpage-why-line {
    width: 65px;
}


/* =========================================================
   BOTTOM STATEMENT
========================================================= */

.prodpage-why-bottom {
    display: flex;

    align-items: center;

    gap: 15px;

    max-width: 700px;

    margin: 35px auto 0;

    padding: 18px 22px;

    background: rgba(255,255,255,0.025);

    border: 1px solid rgba(255,255,255,0.07);

    border-radius: 12px;
}


.prodpage-why-bottom-icon {
    flex: 0 0 auto;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #63d471;

    background: rgba(99,212,113,0.08);

    border-radius: 9px;
}


.prodpage-why-bottom span {
    display: block;

    margin-bottom: 3px;

    color: rgba(255,255,255,0.35);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.4px;
}


.prodpage-why-bottom strong {
    display: block;

    color: #ffffff;

    font-size: 12px;

    font-weight: 600;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .prodpage-why-section {
        padding: 80px 0;
    }

    .prodpage-why-grid {
        grid-template-columns: repeat(2, 1fr);

        margin-top: 45px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .prodpage-why-section {
        padding: 65px 0;
    }

    .prodpage-why-title {
        font-size: 36px;
    }

    .prodpage-why-description {
        font-size: 13px;
    }

    .prodpage-why-grid {
        grid-template-columns: 1fr;

        margin-top: 35px;
    }

    .prodpage-why-card {
        min-height: 250px;

        padding: 23px;
    }

    .prodpage-why-card h3 {
        margin-top: 28px;
    }

    .prodpage-why-bottom {
        align-items: flex-start;

        padding: 15px;
    }

    .prodpage-why-bottom strong {
        font-size: 11px;
    }

}

/* ========================================================================================= */

/* =========================================================
   PRODUCTS PAGE CTA
========================================================= */

.prodpage-cta-section {
    padding: 70px 0;

    background: #ffffff;
}


.prodpage-cta-box {
    position: relative;

    padding: 50px 55px;

    background: #07100d;

    border-radius: 18px;

    overflow: hidden;
}


/* Green Glow */

.prodpage-cta-box::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    right: -100px;
    top: -120px;

    background: rgba(99, 212, 113, 0.14);

    filter: blur(70px);

    border-radius: 50%;
}


/* Label */

.prodpage-cta-label {
    display: block;

    margin-bottom: 10px;

    color: #63d471;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.8px;
}


/* Heading */

.prodpage-cta-title {
    position: relative;
    z-index: 2;

    margin: 0 0 12px;

    color: #ffffff;

    font-size: clamp(30px, 4vw, 45px);

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -1px;
}


.prodpage-cta-title span {
    color: #63d471;
}


/* Text */

.prodpage-cta-text {
    position: relative;
    z-index: 2;

    max-width: 570px;

    margin: 0;

    color: rgba(255,255,255,0.50);

    font-size: 13px;

    line-height: 1.7;
}


/* Button */

.prodpage-cta-btn {
    position: relative;
    z-index: 3;

    display: inline-flex;

    align-items: center;

    gap: 13px;

    padding: 7px 8px 7px 18px;

    color: #07100d;

    background: #63d471;

    border-radius: 7px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    transition: all 0.3s ease;
}


.prodpage-cta-btn span {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #07100d;

    color: #63d471;

    border-radius: 50%;

    transition: transform 0.3s ease;
}


.prodpage-cta-btn:hover {
    color: #ffffff;

    background: #4fae5d;

    transform: translateY(-2px);
}


.prodpage-cta-btn:hover span {
    transform: rotate(45deg);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .prodpage-cta-section {
        padding: 60px 0;
    }

    .prodpage-cta-box {
        padding: 40px;
    }

}


@media (max-width: 575.98px) {

    .prodpage-cta-section {
        padding: 45px 0;
    }

    .prodpage-cta-box {
        padding: 32px 25px;

        border-radius: 14px;
    }

    .prodpage-cta-title {
        font-size: 32px;
    }

    .prodpage-cta-text {
        font-size: 12px;
    }

    .prodpage-cta-btn {
        margin-top: 8px;

        width: 100%;

        justify-content: space-between;
    }

}