.hero {
    position: relative;
    /* min-height: calc(100vh - 68px); */
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url(../images/hero_img.jpg);
    background-size: cover;
    background-position: top center;
    min-height: 850px;
}
.hero-inner {
    position: relative;
    z-index: 2;
    padding: 170px 0 80px;
    width: 100%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgb(216 255 187 / 36%);
    border: 1px solid rgba(107, 170, 61, .24);
    color: #2c4817;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .82rem;
    letter-spacing: .03em;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    animation: entranceDown .7s var(--ease) both;
}
.badge-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6baa3d;
    animation: pulsePt 2s ease-in-out infinite;
}
.hero-h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(2.65rem, 4.8vw, 4.1rem);
    line-height: 1.05;
    letter-spacing: -.025em;
    color: #ffffff;
    margin-bottom: 22px;
    animation: entranceUp .85s var(--ease) .08s both;
}
.h1-accent {
    background: linear-gradient(130deg, #46563a 0%, #4b7632 45%, #1d2c0c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-sub {
    font-family: 'Inter', sans-serif;
    font-size: 1.04rem;
    line-height: 1.78;
    color: #ffffff;
    max-width: 465px;
    margin-bottom: 36px;
    animation: entranceUp .85s var(--ease) .16s both;
}
.cta-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 38px;
    animation: entranceUp .85s var(--ease) .24s both;
}
.btn-shop {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 15px 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, #6baa3d 0%, #4f8a28 100%);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .98rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(107, 170, 61, .40), inset 0 1px 0 rgba(255, 255, 255, .14);
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
}
.btn-shop::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .2) 0%, transparent 55%);
    border-radius: inherit;
    opacity: 0;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
}
.btn-shop .arrow-circle {
    width: 27px;
    height: 27px;
    background: rgba(255, 255, 255, .18);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
}
.btn-shop:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 44px rgba(107, 170, 61, .52), 0 0 0 5px rgba(107, 170, 61, .12);
    color: #e0e0e0;
}
.btn-learn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    background: #c7ff9f9c;
    color: #000000;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .98rem;
    text-decoration: none;
    border: 2px solid rgb(98 175 9);
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
}
.btn-learn:hover {
    color: var(--clr-primary);
    border-color: rgba(107, 170, 61, .40);
    background: rgba(107, 170, 61, .06);
    transform: translateY(-2px);
}
.trust-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    animation: entranceUp .85s cubic-bezier(.4, 0, .2, 1) .32s both;
}
.trust-chip {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(107, 170, 61, .17);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .82rem;
    color: #1e293b;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    cursor: default;
}
.chip-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #6baa3d, #a8d672);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .8rem;
    flex-shrink: 0;
}


.product-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 540px;
    animation: entranceRight 1.1s cubic-bezier(.4, 0, .2, 1) .15s both;
}
.glow-ring {
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: radial-gradient(circle,
          rgba(107, 170, 61, .15) 0%,
          rgba(107, 170, 61, .07) 38%,
          transparent 68%);
    animation: glowBreathe 4s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}
.glow-ring::before {
    inset: 16px;
    border: 1px solid rgba(107, 170, 61, .20);
    animation: ringCW 15s linear infinite;
}
.glow-ring::before, .glow-ring::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}
.glow-ring::after {
    inset: 54px;
    border: 1px dashed rgba(107, 170, 61, .13);
    animation: ringCW 22s linear infinite reverse;
}
.glow-ring::before, .glow-ring::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}
.bottle-spotlight {
    /* position: absolute; */
    /* top: 0; */
    /* left: 50%; */
    /* transform: translateX(-50%); */
    /* width: 200px; */
    /* height: 480px; */
    /* background: conic-gradient(from -14deg at 50% 0%,
          transparent 0deg,
          rgba(107, 170, 61, .07) 28deg,
          transparent 56deg); */
    /* z-index: 1; */
    /* pointer-events: none; */
    /* border-radius: 0 0 60% 60%; */
}
 @keyframes glowBreathe {

      0%,
      100% {
        transform: scale(1);
        opacity: 1;
      }

      50% {
        transform: scale(1.07);
        opacity: .75;
      }
    }

    @keyframes ringCW {
      to {
        transform: rotate(360deg);
      }
    }
 @keyframes entranceRight {
      from {
        opacity: 0;
        transform: translateX(46px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }


    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
     RESPONSIVE
  â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    @media (max-width: 991.98px) {
      .hero-inner {
        text-align: center;
        padding: 48px 0 60px;
      }

      .hero-badge {
        justify-content: center;
      }

      .hero-sub {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
      }

      .cta-wrap {
        justify-content: center;
      }

      .trust-row {
        justify-content: center;
      }

      .product-showcase {
        min-height: 410px;
        margin-top: 28px;
      }

      .sc-1 {
        top: 2%;
        left: 4px;
      }

      .sc-2 {
        bottom: 2%;
        right: 4px;
      }

      .sc-3 {
        display: none;
      }

      .glow-ring {
        width: 340px;
        height: 340px;
      }
    }

    @media (max-width: 575.98px) {
      .hero-h1 {
        font-size: 2.35rem;
      }

      .cta-wrap {
        flex-direction: column;
        align-items: stretch;
      }

      .btn-shop,
      .btn-learn {
        text-align: center;
        justify-content: center;
      }

      .trust-row {
        flex-direction: column;
        align-items: center;
      }

      .trust-chip {
        width: 100%;
        max-width: 270px;
      }

      .product-showcase {
        min-height: 340px;
      }

      .glow-ring {
        width: 270px;
        height: 270px;
      }

      .sc-1,
      .sc-2 {
        transform: scale(.9);
        transform-origin: top left;
      }
    }


    .ketosx-why-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0 88px;
    background: radial-gradient(circle at 12% 18%, rgba(181, 217, 138, 0.38), transparent 31%), radial-gradient(circle at 88% 20%, rgba(91, 159, 58, 0.15), transparent 28%), linear-gradient(145deg, #ffffff 0%, #d0ead0 48%, #e8e8e8 100%);
}
.why-bg-shape-one {
    width: 280px;
    height: 220px;
    top: 70px;
    left: -110px;
    background: rgba(181, 217, 138, 0.35);
}
.why-bg-shape {
    position: absolute;
    border-radius: 48% 52% 58% 42% / 45% 42% 58% 55%;
    filter: blur(7px);
    opacity: 0.55;
    pointer-events: none;
}
.why-bg-shape-two {
    width: 320px;
    height: 260px;
    right: -130px;
    top: 310px;
    background: rgba(91, 159, 58, 0.16);
}
.why-bg-shape-three {
    width: 210px;
    height: 170px;
    left: 16%;
    bottom: 70px;
    background: rgba(21, 34, 56, 0.06);
}
.section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 18px;
    border: 1px solid rgba(91, 159, 58, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: #3e6e29;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1;
    box-shadow: 0 10px 30px rgba(91, 159, 58, 0.08);
}
.section-title {
    max-width: 780px;
    margin: 22px auto 16px;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.08;
    color: #152238;
    font-family: "Poppins", Arial, sans-serif;
}
.section-intro {
    max-width: 690px;
    margin: 0 auto;
    color: #64748b;
    font-size: 17px;
    line-height: 1.75;
}
.why-showcase {
    margin-top: 58px;
}
.feature-card {
    position: relative;
    min-height: 260px;
    margin-bottom: 30px;
    padding: 30px 28px 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)), #ffffff;
    box-shadow: 0 18px 50px rgba(21, 34, 56, 0.08);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    border-radius: 20px;
    background: linear-gradient(145deg, #5b9f3a, #3e6e29);
    color: #ffffff;
    font-size: 22px;
    box-shadow: 0 16px 34px rgba(91, 159, 58, 0.28);
}
.feature-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.28;
        font-family: "Poppins", Arial, sans-serif;
    color: #152238;
}
.feature-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.68;
}
.feature-card::after {
    position: absolute;
    right: -45px;
    bottom: -55px;
    width: 140px;
    height: 140px;
    content: "";
    border-radius: 999px;
    background: radial-gradient(circle, rgba(181, 217, 138, 0.38), transparent 68%);
    transition: transform 0.32s ease, opacity 0.32s ease;
}
.feature-card:hover {
    transform: translateY(-9px);
    border-color: #5b9f3a29;
    box-shadow: 0 26px 70px rgba(21, 34, 56, 0.14);
}

.ketosx-about-section {
    position: relative;
    overflow: hidden;
    padding: 108px 0;
    background: radial-gradient(circle at 10% 18%, rgba(181, 217, 138, 0.34), transparent 31%), radial-gradient(circle at 88% 74%, rgba(91, 159, 58, 0.14), transparent 28%), linear-gradient(145deg, #ffffff 0%, #f8fbf6 50%, #eef8e9 100%);
}
.about-bg-shape-one {
    width: 330px;
    height: 260px;
    top: 72px;
    left: -150px;
    border-radius: 42% 58% 60% 40% / 46% 42% 58% 54%;
    background: rgba(181, 217, 138, 0.35);
}
.about-bg-shape-two {
    width: 380px;
    height: 290px;
    right: -165px;
    bottom: 80px;
    border-radius: 58% 42% 46% 54% / 50% 58% 42% 50%;
    background: rgba(91, 159, 58, 0.13);
}
.about-visual-wrap {
    position: relative;
    min-height: 650px;
    margin-right: 18px;
}
.visual-green-form {
    position: absolute;
    left: 4%;
    top: 44px;
    width: 78%;
    height: 78%;
    border-radius: 44% 56% 50% 50% / 52% 44% 56% 48%;
    background: radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.46), transparent 28%),
    linear-gradient(145deg, rgba(181, 217, 138, 0.8), rgba(91, 159, 58, 0.16));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.44);
}
.visual-dot-one {
    width: 18px;
    height: 18px;
    top: 52px;
    right: 18%;
}
.visual-dot {
    position: absolute;
    z-index: 4;
    border-radius: 999px;
    background: #b5d98a;
    box-shadow: 0 18px 34px rgba(91, 159, 58, 0.18);
}
.visual-dot-two {
    width: 12px;
    height: 12px;
    left: 12%;
    bottom: 120px;
    background: #5b9f3a;
}
.visual-dot {
    position: absolute;
    z-index: 4;
    border-radius: 999px;
    background: #b5d98a;
    box-shadow: 0 18px 34px rgba(91, 159, 58, 0.18);
}
.about-image-main {
    left: 0;
    top: 76px;
    width: 78%;
    height: 440px;
    border: 10px solid rgba(255, 255, 255, 0.84);
    border-radius: 38px;
}
.about-image {
    position: absolute;
    z-index: 2;
    margin: 0;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 34px 90px rgba(21, 34, 56, 0.16);
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.65s ease;
}
.about-image-secondary {
    right: 0;
    bottom: 52px;
    width: 52%;
    height: 285px;
    border: 9px solid rgba(255, 255, 255, 0.9);
    border-radius: 32px;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.65s ease;
}
.about-content {
    padding-left: 34px;
}
.section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 18px;
    border: 1px solid rgba(91, 159, 58, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 34px rgba(91, 159, 58, 0.08);
    color: #3e6e29;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1;
}
.about-title {
    max-width: 620px;
    margin: 24px 0 20px;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.06;
}
.about-title span {
    color: #5b9f3a;
}
.about-description {
    max-width: 610px;
    margin: 0 0 32px;
    color: #64748b;
    font-size: 17px;
    line-height: 1.82;
}
.about-highlights {
    max-width: 640px;
}
.info-block {
    display: flex;
    align-items: flex-start;
    padding: 20px 22px;
    margin-bottom: 16px;
    border: 1px solid rgba(91, 159, 58, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 14px 40px rgba(21, 34, 56, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.info-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-right: 17px;
    border-radius: 18px;
    background: linear-gradient(145deg, #5b9f3a, #3e6e29);
    box-shadow: 0 16px 34px rgba(91, 159, 58, 0.24);
    color: #ffffff;
    font-size: 20px;
}

.info-block h2 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}
.info-block p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}
.info-block:hover {
    transform: translateY(-5px);
    border-color: rgba(91, 159, 58, 0.22);
    box-shadow: 0 22px 56px rgba(21, 34, 56, 0.1);
}

@media (max-width: 575px){
    .hero-inner {
    text-align: center;
    padding: 150px 0 60px;
}
}