:root {
    --color-ink: #17211b;
    --color-muted: #5f6f67;
    --color-line: #dce5df;
    --color-surface: #f7faf7;
    --color-panel: #ffffff;
    --color-primary: #176b4d;
    --color-primary-dark: #0d3f31;
    --color-accent: #c9862c;
    --color-blue: #315d7d;
    --shadow-soft: 0 16px 40px rgba(23, 33, 27, 0.08);
    --radius: 8px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--color-ink);
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15.5px;
    line-height: 1.58;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 1000;
    background: var(--color-ink);
    color: #ffffff;
    padding: 0.5rem 0.75rem;
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--color-line);
}

.site-header__inner,
.site-footer__inner,
.container,
.section,
.hero,
.final-cta {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 1rem;
}

.site-brand {
    display: grid;
    gap: 0;
    color: var(--color-ink);
    text-decoration: none;
}

.site-brand__name {
    font-weight: 700;
    font-size: 1.1rem;
}

.site-brand__tagline {
    color: var(--color-muted);
    font-size: 0.8rem;
}

.nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--color-line);
    background: var(--color-panel);
    color: var(--color-ink);
    border-radius: var(--radius);
    padding: 0.5rem 0.75rem;
}

.nav-toggle__bar {
    width: 18px;
    height: 2px;
    background: var(--color-ink);
    box-shadow: 0 6px 0 var(--color-ink), 0 -6px 0 var(--color-ink);
}

.primary-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--color-line);
    padding: 0.75rem 1rem 1rem;
}

.primary-nav.is-open {
    display: block;
}

.primary-nav ul,
.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.primary-nav a {
    display: block;
    padding: 0.55rem 0;
    color: var(--color-ink);
    font-weight: 600;
}

.header-cta {
    display: none;
    background: var(--color-primary);
    color: #ffffff;
    padding: 0.65rem 0.9rem;
    border-radius: var(--radius);
    font-weight: 700;
}

.hero {
    display: grid;
    gap: 1.25rem;
    padding: 1.8rem 0 1.2rem;
}

.hero__copy {
    display: grid;
    gap: 0.9rem;
    align-content: center;
}

.eyebrow,
.section-label {
    margin: 0;
    color: var(--color-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 0.8rem;
}

h1,
h2,
h3 {
    line-height: 1.15;
    letter-spacing: 0;
    margin: 0 0 0.75rem;
}

h1 {
    max-width: 760px;
    font-size: 1.55rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.1rem;
}

p {
    margin: 0 0 1rem;
}

.lead {
    color: var(--color-muted);
    font-size: 1rem;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
    color: var(--color-muted);
}

.hero-points li {
    border: 1px solid var(--color-line);
    border-radius: 999px;
    background: #ffffff;
    padding: 0.35rem 0.7rem;
    font-size: 0.92rem;
}

.hero-points li::before {
    content: none;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.beeso-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
}

.beeso-button--primary {
    color: #ffffff;
    background: var(--color-primary);
}

.beeso-button--secondary {
    color: var(--color-primary-dark);
    background: #ffffff;
    border-color: var(--color-primary);
}

.beeso-button--light {
    color: var(--color-primary-dark);
    background: #ffffff;
}

.beeso-button--dark {
    color: #ffffff;
    background: var(--color-primary-dark);
}

.beeso-button--whatsapp {
    color: #ffffff;
    background: #1f8f62;
}

.placeholder-media {
    min-height: 260px;
    display: grid;
    place-items: center;
    border: 1px dashed #a9b8b0;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #f9fbfa, #edf4ef);
    color: var(--color-muted);
    text-align: center;
    padding: 1rem;
}

.beeso-media {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
}

.beeso-media__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.beeso-carousel {
    position: relative;
}

.beeso-carousel__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.beeso-carousel__slide.is-active {
    opacity: 1;
    z-index: 1;
}

.beeso-carousel__slide:first-child {
    position: relative;
}

.beeso-carousel__dots {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 2;
    display: flex;
    gap: 0.35rem;
}

.beeso-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 0 0 1px rgba(23, 33, 27, 0.16);
}

.beeso-carousel__dot.is-active {
    width: 18px;
    background: #ffffff;
}

.hero-media {
    min-height: 220px;
    aspect-ratio: 16 / 10;
}

.wide-media {
    margin-bottom: 1.5rem;
    aspect-ratio: 16 / 7;
}

.section-media {
    min-height: 260px;
    aspect-ratio: 4 / 3;
}

.section-split,
.image-pair {
    display: grid;
    gap: 1.5rem;
    align-items: center;
}

.image-pair {
    margin-bottom: 1.5rem;
}

.section {
    padding: 2rem 0;
}

.connect-section {
    padding-top: 0.6rem;
    padding-bottom: 1.6rem;
}

.connect-panel {
    display: grid;
    gap: 1rem;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #ffffff;
    padding: 1rem;
    box-shadow: var(--shadow-soft);
}

.connect-panel__copy {
    max-width: 720px;
}

.contact-channel-list {
    display: grid;
    gap: 0.75rem;
}

.contact-channel-card {
    display: grid;
    gap: 0.25rem;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: var(--color-surface);
    padding: 0.85rem;
}

.contact-channel-card strong {
    color: var(--color-primary-dark);
}

.contact-channel-card a,
.contact-channel-card span {
    overflow-wrap: anywhere;
}

.contact-channel-card--wide {
    grid-column: 1 / -1;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    background: #ffffff;
    padding: 0.35rem 0.75rem;
    font-weight: 700;
}

.qr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
}

.qr-card {
    margin: 0;
    display: grid;
    gap: 0.55rem;
    justify-items: center;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: var(--color-surface);
    padding: 0.85rem;
    text-align: center;
    font-weight: 700;
}

.qr-card__image {
    width: 128px;
    height: 128px;
    object-fit: contain;
    background: #ffffff;
    border: 1px solid var(--color-line);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 1.5rem;
}

.surface-band {
    background: var(--color-surface);
}

.grid,
.card-grid,
.category-grid,
.product-grid,
.market-grid,
.metric-grid {
    display: grid;
    gap: 1rem;
}

.info-card,
.category-card,
.market-card,
.metric-card,
.faq-item {
    background: var(--color-panel);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    padding: 1rem;
}

.category-card {
    display: grid;
    gap: 1rem;
    padding: 0;
    overflow: hidden;
}

.category-card .placeholder-media {
    min-height: 180px;
    border: 0;
    border-radius: 0;
}

.category-card__body {
    padding: 0 1rem 1rem;
}

.product-card {
    display: grid;
    overflow: hidden;
    background: var(--color-panel);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
}

.product-card__media {
    display: block;
    background: var(--color-surface);
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.product-card__media img,
.product-detail__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card__media .placeholder-media {
    min-height: 100%;
    border: 0;
    border-radius: 0;
}

.product-card__body {
    padding: 1rem;
}

.product-card__meta,
.product-detail__meta {
    color: var(--color-muted);
    font-size: 0.92rem;
}

.metric-card strong {
    display: block;
    color: var(--color-primary-dark);
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
}

.text-link {
    display: inline-flex;
    font-weight: 700;
}

.process-list {
    counter-reset: step;
    display: grid;
    gap: 1rem;
    padding: 0;
    list-style: none;
}

.process-list li {
    counter-increment: step;
    border-left: 4px solid var(--color-primary);
    background: var(--color-panel);
    padding: 1rem;
    border-radius: var(--radius);
}

.process-list li::before {
    content: counter(step);
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    margin-right: 0.5rem;
    border-radius: 50%;
    background: var(--color-primary);
    color: #ffffff;
    font-weight: 700;
}

.faq-list {
    display: grid;
    gap: 0.75rem;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
}

.faq-item p {
    margin: 0.75rem 0 0;
}

.breadcrumbs {
    width: min(100% - 32px, var(--container));
    margin: 1rem auto 0;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    margin-left: 0.4rem;
    color: var(--color-muted);
}

.final-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: var(--color-primary);
    color: #ffffff;
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.final-cta > div:first-child {
    flex: 1 1 420px;
    min-width: min(100%, 300px);
    max-width: 720px;
}

.final-cta h2 {
    overflow-wrap: normal;
    word-break: normal;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.88);
}

.final-cta .button-row {
    flex: 1 1 320px;
    min-width: min(100%, 280px);
    max-width: 560px;
    justify-content: flex-start;
}

.final-cta .beeso-button {
    flex: 1 1 210px;
    text-align: center;
    white-space: normal;
}

.site-footer {
    background: #13251d;
    color: #ffffff;
    padding: 2.5rem 0 1rem;
}

.site-footer a {
    color: #ffffff;
}

.site-footer__inner {
    display: grid;
    gap: 1.5rem;
}

.footer-title {
    font-size: 1.25rem;
}

.footer-nav ul {
    columns: 2;
}

.site-footer__note {
    width: min(100% - 32px, var(--container));
    margin: 1.5rem auto 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

.whatsapp-sticky {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.65rem 0.85rem;
    background: #1f8f62;
    color: #ffffff;
    border-radius: 999px;
    box-shadow: var(--shadow-soft);
    font-weight: 700;
    text-decoration: none;
    max-width: min(150px, calc(100% - 32px));
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.entry-content {
    width: min(100% - 32px, 820px);
    margin: 0 auto;
    padding: 2rem 0 3rem;
}

.entry-content > * {
    max-width: 100%;
}

.inquiry-form {
    display: grid;
    gap: 1rem;
    max-width: 760px;
}

.inquiry-form label {
    display: grid;
    gap: 0.35rem;
    font-weight: 700;
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    padding: 0.75rem;
    font: inherit;
}

.message-template {
    white-space: pre-wrap;
    background: #ffffff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    padding: 1rem;
    color: var(--color-ink);
    overflow-x: auto;
}

.page-title {
    width: min(100% - 32px, var(--container));
    margin: 2rem auto 1rem;
}

.product-detail {
    width: min(100% - 32px, var(--container));
    margin: 2rem auto;
    display: grid;
    gap: 2rem;
}

.product-detail__media {
    min-height: 320px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: var(--color-surface);
    overflow: hidden;
}

.product-detail__media .placeholder-media {
    min-height: 320px;
    border: 0;
    border-radius: 0;
}

.product-detail__main-image {
    background: #ffffff;
}

.product-detail__main-image img {
    display: block;
    width: 100%;
    height: auto;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
    gap: 0.5rem;
    padding: 0.75rem;
    border-top: 1px solid var(--color-line);
    background: #ffffff;
}

.product-gallery__image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: var(--color-surface);
}

.product-detail__summary {
    display: grid;
    align-content: center;
    gap: 0.75rem;
}

.product-spec-grid {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.product-entry-content {
    padding-top: 0;
    padding-bottom: 0;
}

/* Homepage v0.3.8 premium B2B layout */
.homepage {
    background: #ffffff;
}

.homepage-hero {
    position: relative;
    min-height: 620px;
    display: grid;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: #10241d;
}

.homepage-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
}

.homepage-hero__media .beeso-media__image,
.homepage-hero__media.placeholder-media {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
}

.homepage-hero__media .beeso-carousel__slide:first-child {
    position: absolute;
}

.homepage-hero__media .beeso-carousel__dots {
    left: auto;
    right: 2rem;
    bottom: 1.5rem;
}

.homepage-hero__shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(12, 28, 22, 0.92) 0%, rgba(12, 28, 22, 0.74) 42%, rgba(12, 28, 22, 0.26) 100%),
        linear-gradient(0deg, rgba(12, 28, 22, 0.34), rgba(12, 28, 22, 0.08));
}

.homepage-hero__inner {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    padding: 6rem 0 5rem;
    color: #ffffff;
}

.homepage-hero__inner > * {
    max-width: 780px;
}

.eyebrow--light {
    color: #e7b36f;
}

.homepage-hero h1 {
    margin-bottom: 0.55rem;
    color: #ffffff;
    font-size: 3.7rem;
    line-height: 0.98;
}

.homepage-hero__kicker {
    margin: 0 0 1.1rem;
    color: #f4f7f2;
    font-size: 1.35rem;
    font-weight: 700;
}

.homepage-hero__lead {
    margin-bottom: 1.55rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
    max-width: 700px;
}

.homepage-hero .beeso-button--secondary,
.homepage-hero .beeso-button--light {
    border-color: rgba(255, 255, 255, 0.8);
}

.homepage-hero__points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    padding: 0;
    margin: 1.45rem 0 0;
    list-style: none;
}

.homepage-hero__points li {
    padding: 0.48rem 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
}

.home-section {
    padding: 4.4rem 0;
}

.home-section--tight {
    padding-top: 3rem;
}

.home-section--tint {
    background: #f2f7f3;
}

.home-section--dark {
    background: #14241d;
    color: #ffffff;
}

.home-section__inner {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.home-section__intro {
    max-width: 820px;
    margin-bottom: 1.7rem;
}

.home-section__intro p,
.home-copy-block p {
    color: var(--color-muted);
}

.home-section--dark .section-label,
.home-section__intro--light .section-label {
    color: #e7b36f;
}

.home-section--dark .home-section__intro p,
.home-section--dark .home-copy-block p {
    color: rgba(255, 255, 255, 0.75);
}

.decision-grid,
.capability-grid {
    display: grid;
    gap: 1rem;
}

.decision-card {
    min-height: 210px;
    display: grid;
    align-content: start;
    gap: 0.75rem;
    padding: 1.25rem;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(23, 33, 27, 0.05);
}

.decision-card span {
    width: 36px;
    height: 4px;
    border-radius: 999px;
    background: var(--color-accent);
}

.decision-card h3,
.decision-card p {
    margin: 0;
}

.home-split,
.home-product-layout {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.home-copy-block {
    display: grid;
    gap: 1rem;
    align-content: center;
}

.home-process {
    display: grid;
    gap: 0.65rem;
    padding: 0;
    margin: 0 0 0.35rem;
    counter-reset: process;
    list-style: none;
}

.home-process li {
    position: relative;
    min-height: 46px;
    padding: 0.72rem 0.9rem 0.72rem 3.2rem;
    border: 1px solid rgba(23, 107, 77, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.82);
    color: var(--color-ink);
}

.home-process li::before {
    counter-increment: process;
    content: counter(process);
    position: absolute;
    left: 0.85rem;
    top: 0.75rem;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--color-primary);
    color: #ffffff;
    font-weight: 700;
}

.home-visual-stack {
    position: relative;
}

.home-visual,
.home-product-layout__media,
.media-mosaic__large,
.media-mosaic__side {
    min-height: 320px;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.home-visual--tall {
    min-height: 430px;
    aspect-ratio: 4 / 5;
}

.home-note-card {
    max-width: 310px;
    display: grid;
    gap: 0.2rem;
    margin: -4rem 1rem 0 auto;
    padding: 1rem;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
}

.home-note-card strong {
    color: var(--color-primary-dark);
}

.home-note-card span {
    color: var(--color-muted);
}

.category-tile-grid {
    display: grid;
    gap: 0.8rem;
}

.category-tile {
    display: grid;
    gap: 0.45rem;
    min-height: 146px;
    padding: 1rem;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--color-ink);
    text-decoration: none;
}

.category-tile:hover,
.category-tile:focus {
    border-color: rgba(23, 107, 77, 0.55);
    box-shadow: 0 10px 24px rgba(23, 33, 27, 0.06);
    text-decoration: none;
}

.category-tile strong {
    font-size: 1rem;
}

.category-tile span {
    color: var(--color-muted);
    font-size: 0.92rem;
}

.media-mosaic {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.media-mosaic__large,
.media-mosaic__side {
    box-shadow: none;
}

.home-section--dark .info-card {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
}

.home-section--dark .info-card h3,
.home-section--dark .info-card p,
.home-section--dark .info-card a {
    color: #ffffff;
}

.market-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 0.35rem;
}

.market-chip-grid span {
    padding: 0.46rem 0.68rem;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    background: #ffffff;
    color: var(--color-primary-dark);
    font-weight: 700;
}

.connect-section {
    padding-top: 1.6rem;
    padding-bottom: 2.6rem;
}

.connect-panel {
    border: 0;
    background:
        linear-gradient(135deg, #f6faf6 0%, #ffffff 55%, #eef4ef 100%);
    box-shadow: var(--shadow-soft);
}

.contact-channel-card {
    border-color: rgba(23, 107, 77, 0.14);
}

.social-links a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0.35rem 0.6rem;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    background: #ffffff;
}

.qr-card {
    border: 1px solid var(--color-line);
    box-shadow: 0 10px 22px rgba(23, 33, 27, 0.05);
}

@media (min-width: 760px) {
    h1 {
        font-size: 1.85rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .hero {
        grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
        align-items: center;
        padding: 2.4rem 0 1.7rem;
    }

    .connect-panel {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
        align-items: start;
        padding: 1.25rem;
    }

    .qr-grid {
        grid-column: 1 / -1;
    }

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

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

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

    .section-split,
    .image-pair {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-detail {
        grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
        align-items: center;
    }

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

    .site-footer__inner {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

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

    .home-split {
        grid-template-columns: minmax(0, 0.98fr) minmax(320px, 1.02fr);
    }

    .home-split--reverse {
        grid-template-columns: minmax(320px, 1.02fr) minmax(0, 0.98fr);
    }

    .home-product-layout {
        grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
        align-items: stretch;
    }

    .home-product-layout__media {
        min-height: 100%;
        aspect-ratio: auto;
    }

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

    .media-mosaic {
        grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
        align-items: stretch;
    }

    .media-mosaic__large,
    .media-mosaic__side {
        min-height: 380px;
        aspect-ratio: auto;
    }

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

@media (max-width: 759px) {
    .homepage-hero,
    .homepage-hero__media .beeso-media__image,
    .homepage-hero__media.placeholder-media {
        min-height: 560px;
    }

    .homepage-hero__inner {
        padding: 4rem 0 3rem;
    }

    .homepage-hero h1 {
        font-size: 2.5rem;
    }

    .homepage-hero__kicker {
        font-size: 1.06rem;
    }

    .homepage-hero__shade {
        background: linear-gradient(90deg, rgba(12, 28, 22, 0.92), rgba(12, 28, 22, 0.72));
    }

    .home-section {
        padding: 3rem 0;
    }

    .home-visual,
    .home-product-layout__media,
    .media-mosaic__large,
    .media-mosaic__side {
        min-height: 260px;
    }

    .home-note-card {
        margin: 0.85rem 0 0;
        max-width: none;
    }

    .whatsapp-sticky {
        right: 12px;
        bottom: 12px;
        max-width: 112px;
        padding: 0.55rem 0.7rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 1040px) {
    .nav-toggle {
        display: none;
    }

    .primary-nav {
        display: block;
        position: static;
        padding: 0;
        border: 0;
    }

    .primary-nav ul {
        display: flex;
        gap: 0.85rem;
        align-items: center;
    }

    .primary-nav a {
        padding: 0.25rem 0;
        font-size: 0.92rem;
    }

    .header-cta {
        display: inline-flex;
    }
}

/* Homepage v0.3.9 premium minimal refresh */
.premium-hero {
    padding: 5.2rem 0 3.4rem;
    border-bottom: 1px solid rgba(28, 61, 45, 0.12);
    background: #ffffff;
}

.premium-hero__inner {
    width: min(100% - 48px, var(--container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 3.2rem;
    align-items: center;
}

.premium-hero__copy {
    display: grid;
    align-content: center;
    gap: 1.05rem;
}

.premium-hero h1 {
    max-width: 760px;
    margin: 0;
    color: #111d16;
    font-size: 3.8rem;
    line-height: 1.02;
}

.premium-hero__cn {
    max-width: 680px;
    margin: 0;
    color: #2f6348;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.45;
}

.premium-hero__lead {
    max-width: 700px;
    margin: 0;
    color: #56675f;
    font-size: 1.03rem;
    line-height: 1.78;
}

.premium-hero__points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    margin: 0.45rem 0 0;
    padding: 0;
    list-style: none;
}

.premium-hero__points li {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0.65rem 0.78rem;
    border: 1px solid rgba(28, 61, 45, 0.16);
    border-radius: 8px;
    background: #f7faf8;
    color: #183226;
    font-weight: 700;
}

.premium-hero__visual {
    position: relative;
    min-height: 470px;
}

.premium-hero__media,
.premium-hero__media.placeholder-media {
    width: 100%;
    min-height: 470px;
    overflow: hidden;
    border: 1px solid rgba(28, 61, 45, 0.12);
    border-radius: 8px;
    background: #f4f8f5;
    box-shadow: 0 28px 76px rgba(18, 45, 31, 0.14);
}

.premium-hero__media .beeso-media__image,
.premium-hero__media .beeso-carousel__slide img {
    width: 100%;
    height: 100%;
    min-height: 470px;
    display: block;
    object-fit: cover;
}

.premium-hero__media .beeso-carousel__slide:first-child {
    position: absolute;
}

.premium-hero__media .beeso-carousel__dots {
    left: 1.2rem;
    right: auto;
    bottom: 1.15rem;
}

.premium-hero__note {
    position: absolute;
    left: 1.1rem;
    right: 1.1rem;
    bottom: 1.1rem;
    display: grid;
    gap: 0.24rem;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: 0 12px 32px rgba(18, 45, 31, 0.12);
}

.premium-hero__note strong {
    color: #153326;
}

.premium-hero__note span {
    color: #596b62;
}

.connect-section--premium {
    padding-top: 2.2rem;
    padding-bottom: 3rem;
}

.connect-section--premium .connect-panel {
    width: min(100% - 48px, var(--container));
    margin: 0 auto;
    border: 1px solid rgba(28, 61, 45, 0.12);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 52px rgba(18, 45, 31, 0.08);
}

.connect-section--premium .connect-panel__copy h2 {
    max-width: 680px;
}

.connect-section--premium .contact-channel-card {
    border-radius: 8px;
    background: #f8fbf9;
}

.contact-muted {
    color: #6c7d74;
    font-size: 0.92rem;
}

.social-link-placeholder {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0.35rem 0.6rem;
    border: 1px dashed rgba(28, 61, 45, 0.22);
    border-radius: 999px;
    background: #ffffff;
    color: #66776e;
    font-size: 0.92rem;
}

.qr-card--placeholder {
    background: #f8fbf9;
}

.qr-card__placeholder {
    width: 116px;
    height: 116px;
    display: grid;
    place-items: center;
    border: 1px dashed rgba(28, 61, 45, 0.28);
    border-radius: 8px;
    background: #ffffff;
    color: #315f47;
    font-weight: 800;
}

@media (max-width: 980px) {
    .premium-hero {
        padding: 4rem 0 2.4rem;
    }

    .premium-hero__inner {
        width: min(100% - 32px, 720px);
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .premium-hero h1 {
        font-size: 3rem;
    }

    .premium-hero__visual,
    .premium-hero__media,
    .premium-hero__media.placeholder-media,
    .premium-hero__media .beeso-media__image,
    .premium-hero__media .beeso-carousel__slide img {
        min-height: 360px;
    }

    .connect-section--premium .connect-panel {
        width: min(100% - 32px, 720px);
    }
}

@media (max-width: 620px) {
    .premium-hero {
        padding-top: 3rem;
    }

    .premium-hero h1 {
        font-size: 2.3rem;
    }

    .premium-hero__cn {
        font-size: 1.1rem;
    }

    .premium-hero__points {
        grid-template-columns: 1fr;
    }

    .premium-hero__visual,
    .premium-hero__media,
    .premium-hero__media.placeholder-media,
    .premium-hero__media .beeso-media__image,
    .premium-hero__media .beeso-carousel__slide img {
        min-height: 300px;
    }

    .premium-hero__note {
        position: static;
        margin-top: 0.85rem;
    }
}

/* Homepage v0.4.0 premium editorial refresh */
body.admin-bar .site-header {
    top: 32px;
}

.site-header {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: saturate(170%) blur(14px);
}

.site-header__inner {
    min-height: 64px;
}

.site-brand__name {
    font-size: 1rem;
    letter-spacing: 0;
}

.site-brand__tagline {
    font-size: 0.74rem;
}

.primary-nav a {
    color: #2b382f;
    font-size: 0.86rem;
}

.header-cta {
    min-height: 40px;
    padding: 0.55rem 0.85rem;
}

.premium-hero {
    padding: 4rem 0 2.2rem;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfb 100%);
}

.premium-hero__inner {
    width: min(100% - 56px, var(--container));
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1fr);
    gap: 2.35rem;
}

.premium-hero h1 {
    max-width: 650px;
    font-size: clamp(2.35rem, 4.1vw, 3.15rem);
    line-height: 1.08;
    font-weight: 800;
}

.premium-hero__cn {
    max-width: 600px;
    color: #315f47;
    font-size: clamp(1.16rem, 2vw, 1.42rem);
    line-height: 1.36;
}

.premium-hero__lead {
    max-width: 620px;
    font-size: 0.98rem;
    line-height: 1.72;
}

.premium-hero .button-row {
    margin-top: 0.2rem;
}

.premium-hero .beeso-button {
    min-height: 42px;
    padding: 0.65rem 0.9rem;
}

.premium-hero__points {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
}

.premium-hero__points li {
    min-height: 38px;
    justify-content: center;
    padding: 0.48rem 0.58rem;
    background: #ffffff;
    text-align: center;
    font-size: 0.82rem;
}

.premium-hero__visual,
.premium-hero__media,
.premium-hero__media.placeholder-media,
.premium-hero__media .beeso-media__image,
.premium-hero__media .beeso-carousel__slide img {
    min-height: 390px;
}

.premium-hero__media,
.premium-hero__media.placeholder-media {
    box-shadow: 0 18px 46px rgba(18, 45, 31, 0.11);
}

.premium-hero__note {
    right: auto;
    bottom: 1rem;
    left: 1rem;
    max-width: 330px;
    padding: 0.78rem 0.85rem;
}

.connect-section--premium {
    padding: 1rem 0 2.2rem;
}

.connect-section--premium .connect-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1fr);
    gap: 1.25rem;
    padding: 1.35rem;
    border: 1px solid #dce5df;
    background: #f7faf8;
    box-shadow: none;
}

.connect-section--premium .connect-panel__copy h2 {
    font-size: clamp(1.35rem, 2.1vw, 1.65rem);
    line-height: 1.18;
}

.connect-section--premium .connect-panel__copy p {
    max-width: 620px;
}

.connect-section--premium .button-row .beeso-button {
    min-height: 38px;
    padding: 0.56rem 0.78rem;
}

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

.contact-channel-card {
    min-height: 94px;
    padding: 0.78rem;
    border-color: #dce5df;
    background: #ffffff;
}

.contact-channel-card--wide {
    grid-column: 1 / -1;
    min-height: auto;
}

.qr-grid {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(150px, 220px));
    justify-content: start;
}

.home-section {
    padding: 3.8rem 0;
}

.home-section--tight {
    padding: 2.7rem 0;
}

.home-section__inner {
    width: min(100% - 56px, var(--container));
}

.home-section__intro h2,
.section-heading h2 {
    max-width: 760px;
    font-size: clamp(1.6rem, 2.7vw, 2.18rem);
    line-height: 1.14;
}

.home-section__intro p,
.section-heading p {
    max-width: 720px;
    line-height: 1.72;
}

.decision-grid {
    gap: 0.75rem;
}

.decision-card {
    min-height: 150px;
    padding: 1rem;
    box-shadow: none;
}

.decision-card span {
    width: 28px;
    height: 3px;
}

.home-split,
.home-product-layout {
    gap: 2.2rem;
}

.home-visual,
.home-product-layout__media,
.media-mosaic__large,
.media-mosaic__side {
    border: 1px solid #dce5df;
    box-shadow: none;
}

.home-note-card,
.capability-grid .info-card,
.category-tile {
    box-shadow: none;
}

.category-tile-grid {
    gap: 0.7rem;
}

.category-tile {
    min-height: 128px;
    padding: 0.9rem;
}

.home-section--dark {
    background: #14251d;
}

.home-section--dark .section-label {
    color: #d8a45a;
}

.home-section--dark .info-card {
    background: rgba(255, 255, 255, 0.07);
}

.final-cta {
    box-shadow: none;
}

.whatsapp-sticky {
    right: 18px;
    bottom: 18px;
    max-width: 220px;
    min-height: 44px;
    padding: 0.62rem 0.85rem;
    box-shadow: 0 14px 34px rgba(18, 45, 31, 0.2);
}

@media (max-width: 1040px) {
    .primary-nav {
        top: 64px;
    }
}

@media (max-width: 980px) {
    .premium-hero__inner,
    .home-section__inner,
    .connect-section--premium .connect-panel {
        width: min(100% - 32px, 760px);
        grid-template-columns: 1fr;
    }

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

    .contact-channel-list {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 620px) {
    .premium-hero {
        padding: 2.3rem 0 1.8rem;
    }

    .premium-hero h1 {
        font-size: 2rem;
    }

    .premium-hero__points,
    .qr-grid {
        grid-template-columns: 1fr;
    }

    .premium-hero__visual,
    .premium-hero__media,
    .premium-hero__media.placeholder-media,
    .premium-hero__media .beeso-media__image,
    .premium-hero__media .beeso-carousel__slide img {
        min-height: 260px;
    }

    .premium-hero__note {
        position: static;
        margin-top: 0.85rem;
    }

    .whatsapp-sticky {
        max-width: 150px;
        font-size: 0.82rem;
    }
}
