:root {
    --benle-yellow: #ffd000;
    --benle-yellow-dark: #f2c300;
    --benle-black: #101010;
    --benle-text: #171717;
    --benle-muted: #686868;
    --benle-soft: #f7f7f7;
    --benle-border: #e9e9e9;
    --benle-white: #ffffff;
    --benle-radius: 22px;
    --benle-shadow: 0 18px 45px rgba(17, 17, 17, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 112px;
}

body.benle-site {
    margin: 0;
    background: var(--benle-white);
    color: var(--benle-text);
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
}

body.admin-bar .site-header {
    top: 32px;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.benle-container {
    width: min(1248px, calc(100% - 48px));
    margin-inline: auto;
}

.benle-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.benle-lang-en {
    display: none;
}

html[data-benle-lang="en"] .benle-lang-id {
    display: none;
}

html[data-benle-lang="en"] .benle-lang-en {
    display: inline;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    background: var(--benle-white);
    box-shadow: 0 2px 9px rgba(0, 0, 0, 0.11);
}

.topbar {
    height: 40px;
    background: var(--benle-black);
    color: var(--benle-white);
    font-size: 13px;
}

.topbar-inner,
.topbar-contact,
.topbar-actions {
    display: flex;
    align-items: center;
}

.topbar-inner {
    height: 100%;
    justify-content: space-between;
}

.topbar-contact,
.topbar-actions {
    gap: 28px;
}

.topbar a,
.topbar button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--benle-white);
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.topbar a:hover,
.topbar button:hover {
    color: var(--benle-yellow);
}

.topbar .benle-icon {
    width: 16px;
    height: 16px;
}

.navbar {
    height: 64px;
    background: var(--benle-white);
}

.navbar-inner {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-right: auto;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 99px;
    height: 37px;
    padding: 0 17px;
    border-radius: 12px;
    background: var(--benle-yellow);
    color: var(--benle-black);
    font-family: "Baloo 2", sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.2px;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.15;
}

.brand-copy strong {
    color: #727272;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.25px;
}

.brand-copy small {
    margin-top: 2px;
    color: #9b9b9b;
    font-size: 9px;
}

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.main-navigation a {
    position: relative;
    color: #454545;
    font-size: 14px;
    font-weight: 600;
}

.main-navigation a::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    width: 0;
    height: 2px;
    margin: auto;
    background: var(--benle-yellow);
    content: "";
    transition: width 0.2s ease;
}

.main-navigation a:hover::after,
.main-navigation a:focus-visible::after {
    width: 100%;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 26px;
    border: 2px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button .benle-icon {
    width: 17px;
    height: 17px;
}

.button-yellow {
    background: var(--benle-yellow);
    color: var(--benle-black);
    box-shadow: 0 7px 18px rgba(255, 208, 0, 0.26);
}

.button-yellow:hover {
    background: var(--benle-yellow-dark);
}

.button-dark {
    background: var(--benle-black);
    color: var(--benle-white);
    box-shadow: 0 9px 22px rgba(16, 16, 16, 0.16);
}

.button-dark:hover {
    background: #272727;
}

.button-outline {
    border-color: var(--benle-black);
    background: transparent;
    color: var(--benle-black);
}

.button-light-outline {
    border-color: rgba(255, 255, 255, 0.72);
    color: var(--benle-white);
}

.header-cta {
    min-width: 174px;
    min-height: 40px;
    padding-block: 8px;
}

.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 10px;
    background: var(--benle-yellow);
    color: var(--benle-black);
    cursor: pointer;
}

.menu-close-icon {
    display: none;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 52px 0 58px;
    background:
        radial-gradient(circle at 90% 5%, rgba(255, 221, 49, 0.32), transparent 29%),
        linear-gradient(135deg, #fffef8 0%, #ffffff 54%, #fafafa 100%);
}

.hero-section::before {
    position: absolute;
    top: 0;
    right: -140px;
    width: 540px;
    height: 540px;
    border: 1px solid rgba(255, 208, 0, 0.16);
    border-radius: 50%;
    content: "";
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: 70px;
}

.eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 33px;
    padding: 5px 17px;
    border-radius: 999px;
    background: var(--benle-yellow);
    color: var(--benle-black);
    font-size: 12px;
    font-weight: 700;
}

.eyebrow-pill .benle-icon {
    width: 15px;
    height: 15px;
}

.hero-copy h1,
.section-heading h2,
.about-copy h2,
.quote-banner h2 {
    margin: 0;
    color: #111;
    font-family: "Baloo 2", sans-serif;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.hero-copy h1 {
    max-width: 600px;
    margin-top: 24px;
    font-size: clamp(46px, 4.4vw, 64px);
    line-height: 0.98;
}

.title-highlight {
    position: relative;
    z-index: 0;
    display: inline-block;
}

.title-highlight::after {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 12px;
    background: var(--benle-yellow);
    content: "";
}

.hero-copy > p {
    max-width: 610px;
    margin: 27px 0 0;
    color: #626262;
    font-size: 16px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 27px;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    margin-top: 28px;
    color: #5b5b5b;
    font-size: 13px;
    font-weight: 500;
}

.hero-benefits > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-benefits .benle-icon {
    width: 17px;
    height: 17px;
    color: var(--benle-yellow-dark);
}

.hero-visual {
    position: relative;
    min-width: 0;
}

.hero-image-wrap {
    overflow: hidden;
    aspect-ratio: 1.35 / 1;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    animation: benle-hero-float 5s ease-in-out infinite;
    transform-origin: center;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -22px;
    display: flex;
    width: 160px;
    min-height: 92px;
    flex-direction: column;
    justify-content: center;
    padding: 13px 20px;
    border-radius: 15px;
    background: var(--benle-yellow);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
    animation: benle-badge-float 3.8s ease-in-out infinite;
}

.experience-badge strong {
    font-family: "Baloo 2", sans-serif;
    font-size: 30px;
    line-height: 1;
}

.experience-badge span {
    margin-top: 6px;
    font-size: 11px;
    font-weight: 600;
}

.stats-strip {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 126px;
    align-items: center;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 82px;
    border-radius: 25px;
    background: var(--benle-black);
    color: var(--benle-white);
}

.stats-strip > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.stats-strip strong {
    color: var(--benle-yellow);
    font-family: "Baloo 2", sans-serif;
    font-size: 34px;
    line-height: 1.1;
}

.stats-strip span {
    margin-top: 6px;
    color: #d4d4d4;
    font-size: 12px;
}

.section {
    padding: 92px 0;
}

.section-heading {
    margin-bottom: 45px;
}

.section-heading.centered {
    max-width: 790px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 9px;
    color: #bd9700;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.2px;
}

.section-heading h2,
.about-copy h2,
.quote-banner h2 {
    font-size: clamp(36px, 3.7vw, 49px);
    line-height: 1.08;
}

.section-heading p {
    max-width: 690px;
    margin: 14px auto 0;
    color: var(--benle-muted);
    font-size: 15px;
}

.product-intro {
    background: #fff;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.category-card {
    position: relative;
    display: flex;
    min-height: 260px;
    overflow: hidden;
    align-items: flex-end;
    border: 1px solid var(--benle-border);
    border-radius: var(--benle-radius);
    background: #f8f8f8;
    box-shadow: 0 9px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--benle-shadow);
}

.category-card::after {
    position: absolute;
    inset: 36% 0 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.84));
    content: "";
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.category-card:hover img {
    transform: scale(1.04);
}

.category-card > div {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 25px;
    color: #fff;
}

.category-card h3 {
    margin: 0;
    font-family: "Baloo 2", sans-serif;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.1;
}

.category-card p {
    margin: 7px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
}

.category-card span:not(.benle-lang) {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 8px;
    color: var(--benle-yellow);
    font-size: 12px;
    font-weight: 700;
}

.category-card .benle-icon {
    width: 15px;
    height: 15px;
}

.about-section {
    overflow: hidden;
    background: var(--benle-soft);
}

.about-grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: 82px;
}

.about-images {
    position: relative;
    min-height: 530px;
}

.about-image-main,
.about-image-small {
    position: absolute;
    overflow: hidden;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: var(--benle-shadow);
}

.about-image-main {
    top: 0;
    left: 0;
    width: 76%;
    height: 430px;
}

.about-image-small {
    right: 0;
    bottom: 0;
    width: 48%;
    height: 260px;
    border: 8px solid var(--benle-soft);
}

.quality-badge {
    position: absolute;
    bottom: 52px;
    left: 25px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 17px 21px;
    border-radius: 14px;
    background: var(--benle-yellow);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.quality-badge strong {
    font-size: 15px;
}

.quality-badge span {
    font-size: 11px;
}

.about-copy h2 {
    margin-top: 5px;
}

.about-copy > p {
    margin: 18px 0 0;
    color: var(--benle-muted);
}

.about-checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    margin: 25px 0 28px;
    font-size: 13px;
    font-weight: 600;
}

.about-checks > span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-checks .benle-icon {
    width: 18px;
    height: 18px;
    color: #b28f00;
}

.advantages-section {
    background: #fff;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.advantage-card {
    padding: 30px;
    border: 1px solid var(--benle-border);
    border-radius: 18px;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.advantage-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 208, 0, 0.72);
    box-shadow: 0 15px 32px rgba(0, 0, 0, 0.08);
}

.icon-box {
    display: inline-flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: var(--benle-yellow);
    color: #111;
}

.icon-box .benle-icon {
    width: 25px;
    height: 25px;
}

.advantage-card h3 {
    margin: 18px 0 7px;
    font-family: "Baloo 2", sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.15;
}

.advantage-card p {
    margin: 0;
    color: var(--benle-muted);
    font-size: 13px;
}

.catalog-section {
    background: var(--benle-soft);
}

.product-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: -12px 0 34px;
}

.product-filter {
    min-height: 40px;
    padding: 8px 17px;
    border: 1px solid #dddddd;
    border-radius: 999px;
    background: #fff;
    color: #505050;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: 0.2s ease;
}

.product-filter:hover,
.product-filter.is-active {
    border-color: var(--benle-black);
    background: var(--benle-black);
    color: var(--benle-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 21px;
}

.product-card {
    overflow: hidden;
    border: 1px solid var(--benle-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.23s ease, box-shadow 0.23s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
}

.product-card.is-hidden {
    display: none;
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.25 / 1;
    background: linear-gradient(145deg, #fafafa, #efefef);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-content {
    padding: 18px 19px 20px;
}

.product-category {
    display: inline-flex;
    min-height: 23px;
    align-items: center;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(255, 208, 0, 0.2);
    color: #947700;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.45px;
    text-transform: uppercase;
}

.product-content h3 {
    margin: 11px 0 5px;
    font-family: "Baloo 2", sans-serif;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.15;
}

.product-content p {
    min-height: 43px;
    margin: 0;
    color: var(--benle-muted);
    font-size: 11px;
    line-height: 1.55;
}

.product-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    color: #171717;
    font-size: 11px;
    font-weight: 800;
}

.product-whatsapp:hover {
    color: #9d7d00;
}

.product-whatsapp .benle-icon {
    width: 14px;
    height: 14px;
}

.gallery-section {
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-auto-flow: dense;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.gallery-item {
    position: relative;
    min-height: 245px;
    overflow: hidden;
    margin: 0;
    border-radius: 18px;
    background: #ececec;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(5) {
    grid-row: span 2;
    min-height: 508px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 45px 20px 17px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.testimonial-section {
    background: var(--benle-soft);
}

.rating-pill {
    display: inline-grid;
    align-items: center;
    grid-template-columns: auto auto;
    gap: 0 12px;
    margin-top: 22px;
    padding: 11px 22px;
    border: 1px solid #ededed;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
}

.rating-pill strong {
    grid-row: span 2;
    font-family: "Baloo 2", sans-serif;
    font-size: 26px;
}

.rating-pill .stars {
    color: var(--benle-yellow);
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 1;
}

.rating-pill small {
    color: #777;
    font-size: 9px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.testimonial-grid article {
    display: flex;
    min-height: 225px;
    flex-direction: column;
    justify-content: space-between;
    padding: 29px;
    border: 1px solid #ededed;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.testimonial-grid article > p {
    margin: 0;
    color: #4d4d4d;
    font-size: 13px;
    font-style: italic;
}

.testimonial-grid article > div {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.avatar {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--benle-yellow);
    font-weight: 800;
}

.testimonial-grid strong {
    display: flex;
    flex-direction: column;
    font-size: 12px;
}

.testimonial-grid small {
    margin-top: 2px;
    color: #8a8a8a;
    font-size: 9px;
    font-weight: 400;
}

.quote-banner {
    padding: 60px 0;
    background: var(--benle-black);
    color: #fff;
}

.quote-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.quote-banner h2 {
    max-width: 720px;
    color: #fff;
    font-size: clamp(31px, 3vw, 42px);
}

.quote-banner p {
    margin: 8px 0 0;
    color: #bdbdbd;
}

.quote-inner > div:last-child {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 10px;
}

.contact-section {
    background: #fff;
}

.contact-layout {
    display: grid;
    align-items: stretch;
    grid-template-columns: 1fr 1.05fr;
    gap: 38px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-card {
    display: flex;
    min-width: 0;
    min-height: 172px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 13px;
    padding: 25px;
    border: 1px solid #ececec;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

a.contact-card:hover {
    transform: translateY(-3px);
    border-color: var(--benle-yellow);
}

.contact-card > span:last-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.contact-card small {
    color: #999;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-card strong {
    margin-top: 5px;
    color: #111;
    font-size: 14px;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.contact-form-wrap {
    padding: 29px;
    border: 1px solid #ececec;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.contact-form,
.contact-form label {
    display: flex;
    flex-direction: column;
}

.contact-form {
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #dedede;
    border-radius: 13px;
    outline: 0;
    background: #fff;
    color: #222;
    font-size: 13px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input {
    height: 49px;
    padding: 0 16px;
}

.contact-form textarea {
    min-height: 145px;
    padding: 14px 16px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--benle-yellow-dark);
    box-shadow: 0 0 0 3px rgba(255, 208, 0, 0.16);
}

.form-submit {
    width: 100%;
    border-radius: 13px;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.form-notice {
    margin-bottom: 15px;
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

.form-notice.success {
    background: #e9f8ee;
    color: #146c33;
}

.form-notice.error {
    background: #fff0f0;
    color: #a22626;
}

.site-footer {
    background: #0f0f0f;
    color: #d2d2d2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.9fr 1.25fr;
    gap: 58px;
    padding-top: 65px;
    padding-bottom: 54px;
}

.footer-brand p {
    max-width: 370px;
    margin: 21px 0 14px;
    color: #a9a9a9;
    font-size: 12px;
}

.footer-brand > strong {
    color: #fff;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.site-footer h4 {
    margin: 0 0 19px;
    color: #fff;
    font-family: "Baloo 2", sans-serif;
    font-size: 18px;
    font-weight: 800;
}

.site-footer ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer li,
.site-footer a {
    color: #a9a9a9;
    font-size: 11px;
}

.site-footer a:hover {
    color: var(--benle-yellow);
}

.footer-contact li,
.footer-contact a {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact .benle-icon {
    width: 15px;
    height: 15px;
    margin-top: 2px;
    color: var(--benle-yellow);
}

.footer-bottom {
    padding: 16px 0;
    border-top: 1px solid #252525;
    color: #777;
    font-size: 10px;
    text-align: center;
}

.floating-whatsapp {
    position: fixed;
    z-index: 900;
    right: 31px;
    bottom: 27px;
    display: flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #1dcc70;
    color: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
    animation: benle-whatsapp-pulse 2.3s ease-out infinite;
}

.floating-whatsapp::before {
    position: absolute;
    inset: -7px;
    border: 2px solid rgba(29, 204, 112, 0.42);
    border-radius: inherit;
    content: "";
    animation: benle-whatsapp-ring 2.3s ease-out infinite;
    pointer-events: none;
}

.floating-whatsapp:hover {
    transform: scale(1.06);
}

.floating-whatsapp .benle-icon {
    width: 27px;
    height: 27px;
}

html.benle-motion .benle-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.68s ease var(--benle-delay, 0ms), transform 0.68s cubic-bezier(0.22, 1, 0.36, 1) var(--benle-delay, 0ms);
    will-change: opacity, transform;
}

html.benle-motion .benle-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

html.benle-motion .category-card.benle-reveal.is-visible:hover,
html.benle-motion .advantage-card.benle-reveal.is-visible:hover,
html.benle-motion .product-card.benle-reveal.is-visible:hover {
    transform: translateY(-5px);
}

@keyframes benle-hero-float {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(0, -11px, 0) scale(1.012); }
}

@keyframes benle-badge-float {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -8px, 0); }
}

@keyframes benle-whatsapp-pulse {
    0%, 100% { box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(29, 204, 112, 0.32); }
    55% { box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2), 0 0 0 13px rgba(29, 204, 112, 0); }
}

@keyframes benle-whatsapp-ring {
    0% { opacity: 0.8; transform: scale(0.88); }
    70%, 100% { opacity: 0; transform: scale(1.35); }
}

.empty-state {
    grid-column: 1 / -1;
    padding: 30px;
    border: 1px dashed #ccc;
    border-radius: 14px;
    color: #777;
    text-align: center;
}

.generic-page {
    min-height: 60vh;
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (max-width: 1120px) {
    .main-navigation {
        gap: 22px;
    }

    .brand-copy {
        display: none;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
        gap: 46px;
    }

    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        gap: 35px;
    }
}

@media (max-width: 920px) {
    body.admin-bar .site-header {
        top: 46px;
    }

    .benle-container {
        width: min(100% - 34px, 760px);
    }

    .topbar-contact a:nth-child(2) {
        display: none;
    }

    .navbar-inner {
        justify-content: space-between;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .mobile-menu-toggle[aria-expanded="true"] .menu-open-icon {
        display: none;
    }

    .mobile-menu-toggle[aria-expanded="true"] .menu-close-icon {
        display: inline-flex;
    }

    .main-navigation {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 17px 17px;
        border-radius: 0 0 16px 16px;
        background: #fff;
        box-shadow: 0 14px 25px rgba(0, 0, 0, 0.12);
    }

    .main-navigation.is-open {
        display: flex;
    }

    .main-navigation a {
        padding: 11px 6px;
        border-bottom: 1px solid #eeeeee;
    }

    .main-navigation a:last-child {
        border: 0;
    }

    .main-navigation a::after {
        display: none;
    }

    .hero-section {
        padding-top: 44px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-copy h1,
    .hero-copy > p {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-actions,
    .hero-benefits {
        justify-content: center;
    }

    .hero-visual {
        width: min(100%, 620px);
        margin-inline: auto;
    }

    .experience-badge {
        left: 18px;
    }

    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px 0;
        padding: 28px 0;
    }

    .category-grid,
    .advantages-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .about-grid {
        gap: 55px;
    }

    .about-copy {
        text-align: center;
    }

    .about-checks {
        text-align: left;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonial-grid article:last-child {
        grid-column: 1 / -1;
    }

    .quote-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .quote-inner > div:last-child {
        flex-direction: row;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    body.admin-bar .site-header {
        top: 0;
    }

    .benle-container {
        width: calc(100% - 28px);
    }

    .topbar {
        height: 37px;
    }

    .topbar-inner {
        width: calc(100% - 24px);
    }

    .topbar-contact,
    .topbar-actions {
        gap: 12px;
    }

    .topbar-contact a span {
        display: none;
    }

    .topbar-actions > a {
        font-size: 10px;
    }

    .navbar {
        height: 61px;
    }

    .brand-mark {
        min-width: 86px;
        height: 35px;
        padding: 0 13px;
        font-size: 22px;
    }

    .hero-section {
        padding: 35px 0 42px;
    }

    .eyebrow-pill {
        font-size: 9px;
    }

    .hero-copy h1 {
        margin-top: 18px;
        font-size: clamp(40px, 12.5vw, 52px);
    }

    .title-highlight::after {
        bottom: 3px;
        height: 9px;
    }

    .hero-copy > p {
        margin-top: 20px;
        font-size: 13px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-benefits {
        gap: 12px 17px;
        font-size: 10px;
    }

    .hero-image-wrap {
        border-radius: 20px;
    }

    .experience-badge {
        bottom: -25px;
        left: 12px;
        width: 135px;
        min-height: 78px;
        padding: 10px 15px;
    }

    .experience-badge strong {
        font-size: 26px;
    }

    .stats-strip {
        margin-top: 62px;
        border-radius: 18px;
    }

    .stats-strip strong {
        font-size: 27px;
    }

    .stats-strip span {
        font-size: 9px;
    }

    .section {
        padding: 67px 0;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .section-heading h2,
    .about-copy h2,
    .quote-banner h2 {
        font-size: 34px;
    }

    .section-heading p {
        font-size: 12px;
    }

    .category-grid,
    .advantages-grid,
    .testimonial-grid,
    .products-grid,
    .gallery-grid,
    .contact-cards,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 235px;
    }

    .about-images {
        min-height: 410px;
    }

    .about-image-main {
        width: 88%;
        height: 330px;
    }

    .about-image-small {
        width: 54%;
        height: 190px;
    }

    .quality-badge {
        bottom: 20px;
        left: 12px;
    }

    .about-checks {
        grid-template-columns: 1fr;
    }

    .product-filters {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .product-filters::-webkit-scrollbar {
        display: none;
    }

    .product-filter {
        flex: 0 0 auto;
    }

    .product-content p {
        min-height: 0;
    }

    .gallery-item,
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(5) {
        min-height: 270px;
        grid-row: auto;
    }

    .testimonial-grid article:last-child {
        grid-column: auto;
    }

    .quote-inner {
        align-items: stretch;
        text-align: center;
    }

    .quote-inner > div:last-child {
        flex-direction: column;
    }

    .contact-card {
        min-height: 150px;
    }

    .contact-form-wrap {
        padding: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        gap: 33px;
        padding-top: 50px;
        padding-bottom: 44px;
    }

    .floating-whatsapp {
        right: 17px;
        bottom: 18px;
        width: 52px;
        height: 52px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .hero-image-wrap img,
    .experience-badge,
    .floating-whatsapp,
    .floating-whatsapp::before {
        animation: none !important;
    }

    html.benle-motion .benle-reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}
