@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --pexco-cream: #f8f3e8;
    --pexco-cream-soft: #fffaf0;
    --pexco-green: #0b3327;
    --pexco-green-2: #123d2f;
    --pexco-gold: #bd9250;
    --pexco-gold-2: #d9b879;
    --pexco-ink: #1d231f;
    --pexco-muted: #6f766f;
    --pexco-line: rgba(189, 146, 80, 0.28);
    --pexco-shadow: 0 28px 70px rgba(11, 51, 39, 0.14);
}

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 14% 12%, rgba(189, 146, 80, 0.11), transparent 28rem),
        radial-gradient(circle at 90% 28%, rgba(11, 51, 39, 0.10), transparent 22rem),
        var(--pexco-cream);
    color: var(--pexco-ink);
    font-family: "Cairo", sans-serif;
    -webkit-font-smoothing: antialiased;
}

[dir="ltr"] body {
    font-family: "Inter", sans-serif;
}

[dir="rtl"] body {
    font-family: "Cairo", sans-serif;
}

[dir="rtl"] .brand-title,
[dir="rtl"] .hero-title,
[dir="rtl"] .section-title,
[dir="rtl"] .footer-title {
    font-weight: 800;
    letter-spacing: 0;
}

[dir="rtl"] .nav-links,
[dir="rtl"] .nav-link,
[dir="rtl"] .pill-btn,
[dir="rtl"] .btn-primary,
[dir="rtl"] .btn-secondary {
    font-weight: 700;
}

[dir="rtl"] .eyebrow {
    letter-spacing: 0.05em;
    text-transform: none;
}

a {
    color: inherit;
    text-decoration: none;
}

.pexco-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(248, 243, 232, 0.88);
    border-bottom: 1px solid rgba(189, 146, 80, 0.18);
    backdrop-filter: blur(18px);
}

.site-nav {
    min-height: 94px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--pexco-green);
}

.brand-globe {
    width: 48px;
    height: 48px;
    border: 2px solid var(--pexco-gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--pexco-gold);
    font-size: 21px;
}

.brand-logo-img {
    width: 165px;
    height: 60px;
    object-fit: contain;
    border-radius: 14px;
}

.brand-title {
    display: block;
    max-width: 220px;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand-subtitle {
    display: block;
    margin-top: 4px;
    max-width: 240px;
    font-size: 10px;
    color: var(--pexco-gold);
    letter-spacing: 0.06em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    color: #5c625d;
    font-size: 15px;
    font-weight: 700;
}

.nav-link {
    position: relative;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.nav-link.text-yellow-400 {
    color: var(--pexco-gold) !important;
}

.nav-link.active::after,
.nav-link.text-yellow-400::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--pexco-gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lang-switcher {
    border: 0;
    background: transparent;
    color: var(--pexco-green);
    cursor: pointer;
    font-weight: 800;
}

.lang-switcher.text-yellow-400 {
    color: var(--pexco-gold) !important;
}

.pill-btn,
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 11px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pill-btn,
.btn-primary {
    background: var(--pexco-green);
    color: #fff;
    box-shadow: 0 16px 32px rgba(11, 51, 39, 0.16);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.72);
    color: var(--pexco-green);
    border-color: var(--pexco-line);
}

.pill-btn:hover,
.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    color: var(--pexco-green);
    font-size: 26px;
}

.mobile-menu {
    display: none;
    padding: 0 24px 22px;
}

.mobile-menu.open,
.mobile-menu:not(.hidden) {
    display: block;
}

.mobile-menu .nav-link {
    display: block;
    padding: 12px 0;
    color: var(--pexco-green);
}

.site-main {
    min-height: 60vh;
}

.hero-x6 {
    position: relative;
    overflow: hidden;
    padding: 74px 0 42px;
    background: var(--pexco-cream);
}

.hero-bg-stack {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.85s ease;
    transform: scale(1.03);
}

.hero-bg-layer.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(115deg, rgba(248, 243, 232, 0.9), rgba(255, 250, 240, 0.84));
    pointer-events: none;
}

.hero-x6 .pexco-shell {
    position: relative;
    z-index: 2;
}

.hero-x6::after,
.wave-divider::before {
  content: "";
    position: absolute;
    left: -18%;
    right: -18%;
    bottom: -98px;
    height: 130px;
    background: var(--pexco-cream);
    border-radius: 50% 50% 0 0 / 70% 70% 0 0;
    border-top: 7px solid var(--pexco-green);
    z-index: 3;
}

.hero-slider {
    position: relative;
    z-index: 2;
}

.hero-slide {
    display: none;
    animation: heroFadeIn .55s ease;
}

.hero-slide.is-active {
    display: block;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-slider-controls {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 10px 0 28px;
}

.hero-slider-btn {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(189, 146, 80, 0.45);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
    color: var(--pexco-green);
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.hero-slider-btn:hover {
    background: #fff;
    transform: translateY(-2px);
}

.hero-slider-dots {
    display: flex;
    gap: 10px;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: rgba(11, 51, 39, 0.22);
    cursor: pointer;
    padding: 0;
}

.hero-slider-dot.is-active {
    background: var(--pexco-gold);
    transform: scale(1.15);
}

.product-stage.hero-stage-image {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.hero-stage-image img {
    width: min(100%, 480px);
    max-height: 520px;
    height: auto;
    object-fit: contain;
    border-radius: 24px;
    box-shadow: var(--pexco-shadow);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
    align-items: center;
    gap: 52px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--pexco-gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-title,
.section-title {
    margin: 14px 0 18px;
    color: var(--pexco-green);
    font-weight: 900;
    line-height: 1.06;
}

.hero-title {
    max-width: 620px;
    font-size: clamp(44px, 6vw, 78px);
}

.gold-text {
    color: var(--pexco-gold);
}

.hero-copy,
.section-copy {
    color: var(--pexco-muted);
    font-size: 18px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.product-stage {
    position: relative;
    min-height: 500px;
    display: grid;
    place-items: end center;
}

.product-stage::before {
    content: "";
    position: absolute;
    width: 94%;
    height: 58%;
    bottom: 30px;
    background: linear-gradient(135deg, rgba(189, 146, 80, 0.24), rgba(11, 51, 39, 0.10));
    border-radius: 50%;
    filter: blur(2px);
}

.x6-bag,
.x6-bottle,
.x6-jar,
.x6-can {
    position: absolute;
    background: linear-gradient(145deg, #071a14, #14382c 58%, #071a14);
    border: 1px solid rgba(217, 184, 121, 0.45);
    box-shadow: 0 28px 52px rgba(0, 0, 0, 0.28);
}

.x6-bag {
    right: 18%;
    bottom: 72px;
    width: 240px;
    height: 330px;
    border-radius: 24px 24px 18px 18px;
    transform: rotate(-4deg);
}

.x6-bag::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 50%;
    width: 92px;
    height: 28px;
    border-radius: 0 0 18px 18px;
    background: var(--pexco-cream);
    transform: translateX(-50%);
}

.x6-logo {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--pexco-gold-2);
    font-size: 88px;
    font-weight: 900;
}

.x6-bottle {
    left: 13%;
    bottom: 58px;
    width: 88px;
    height: 270px;
    border-radius: 26px 26px 16px 16px;
}

.x6-bottle::before {
    content: "";
    position: absolute;
    left: 25px;
    top: -62px;
    width: 38px;
    height: 74px;
    border-radius: 14px 14px 4px 4px;
    background: #132d24;
}

.x6-jar {
    left: 29%;
    bottom: 46px;
    width: 130px;
    height: 150px;
    border-radius: 20px;
}

.x6-can {
    right: 2%;
    bottom: 42px;
    width: 132px;
    height: 150px;
    border-radius: 20px;
}

.olive-branch {
    position: absolute;
    width: 210px;
    height: 120px;
    right: 0;
    bottom: 12px;
    opacity: 0.95;
}

.olive-branch::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 4px;
    top: 58px;
    right: 0;
    background: #758653;
    transform: rotate(-22deg);
}

.olive-branch span {
    position: absolute;
    width: 38px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #758653, #b0a35d);
}

.olive-branch span:nth-child(1) { right: 28px; top: 18px; transform: rotate(-20deg); }
.olive-branch span:nth-child(2) { right: 62px; top: 48px; transform: rotate(18deg); }
.olive-branch span:nth-child(3) { right: 98px; top: 28px; transform: rotate(-18deg); }
.olive-branch span:nth-child(4) { right: 134px; top: 68px; transform: rotate(24deg); }

.feature-strip {
    position: relative;
    z-index: 3;
    margin-top: 62px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: rgba(255, 250, 240, 0.84);
    border: 1px solid var(--pexco-line);
    border-radius: 28px;
    box-shadow: var(--pexco-shadow);
}

.feature-item {
    padding: 30px 22px;
    text-align: center;
    border-inline-start: 1px solid var(--pexco-line);
}

.feature-item:first-child {
    border-inline-start: 0;
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
    border: 1px solid var(--pexco-gold);
    border-radius: 50%;
    color: var(--pexco-gold);
    font-size: 20px;
}

.feature-title {
    color: var(--pexco-green);
    font-weight: 900;
}

.feature-text {
    color: var(--pexco-muted);
    font-size: 13px;
    margin-top: 4px;
}

.section,
.pexco-section {
    position: relative;
    padding: 86px 0;
    background: var(--pexco-cream);
}

.section-soft {
    background: var(--pexco-cream-soft);
}

.section-dark {
    background:
        radial-gradient(circle at 90% 10%, rgba(217, 184, 121, 0.16), transparent 20rem),
        var(--pexco-green);
    color: white;
}

.section-dark .section-title,
.section-dark .section-copy,
.section-dark .eyebrow {
    color: white;
}

.split-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.rounded-photo {
    min-height: 360px;
    border-radius: 44% 56% 50% 50% / 48% 42% 58% 52%;
    background: linear-gradient(rgba(11, 51, 39, 0.05), rgba(11, 51, 39, 0.12)), var(--photo, url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1000&q=75")) center/cover;
    box-shadow: var(--pexco-shadow);
    border: 8px solid rgba(255, 250, 240, 0.9);
}

.section-title {
    font-size: clamp(34px, 4vw, 54px);
}

.products-hero {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 42px;
    align-items: end;
}

.featured-product-card {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
    gap: 42px;
    align-items: center;
    margin-bottom: 42px;
    padding: 34px;
    border-radius: 38px;
    background:
        radial-gradient(circle at 18% 20%, rgba(217, 184, 121, 0.18), transparent 24rem),
        linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(248, 243, 232, 0.88));
    border: 1px solid var(--pexco-line);
    box-shadow: var(--pexco-shadow);
}

.featured-product-media {
    min-height: 390px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 50% 55%, rgba(189, 146, 80, 0.22), transparent 14rem),
        linear-gradient(135deg, rgba(11, 51, 39, 0.08), rgba(255, 250, 240, 0.92));
    display: grid;
    place-items: center;
    overflow: hidden;
}

.featured-product-media img {
    width: 92%;
    height: 340px;
    object-fit: contain;
    filter: drop-shadow(0 28px 26px rgba(11, 51, 39, 0.22));
}

.featured-product-content h2 {
    margin: 18px 0 14px;
    color: var(--pexco-green);
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 900;
    line-height: 1.05;
}

.featured-product-content p {
    margin: 0 0 26px;
    color: var(--pexco-muted);
    font-size: 18px;
    line-height: 1.85;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 9px 17px;
    border-radius: 999px;
    background: rgba(189, 146, 80, 0.16);
    color: var(--pexco-gold);
    border: 1px solid rgba(189, 146, 80, 0.34);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.product-badge.small {
    padding: 7px 13px;
    font-size: 11px;
}

.professional-products-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.professional-product-card {
    position: relative;
    background: rgba(255, 250, 240, 0.96);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.professional-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(11, 51, 39, 0.18);
}

.professional-product-image {
    height: 260px;
    min-height: 260px;
    padding: 22px;
    background:
        radial-gradient(circle at 50% 65%, rgba(189, 146, 80, 0.22), transparent 10rem),
        linear-gradient(135deg, rgba(11, 51, 39, 0.06), rgba(255, 255, 255, 0.55));
    overflow: hidden;
    flex: 0 0 auto;
}

.professional-product-image img {
    max-width: 100%;
    max-height: 210px;
    width: auto;
    height: auto;
    object-fit: contain !important;
    filter: drop-shadow(0 18px 18px rgba(11, 51, 39, 0.18));
    transition: transform 0.25s ease;
}

.professional-product-card .product-content {
    position: relative;
    z-index: 2;
    flex: 1;
    background: rgba(255, 250, 240, 0.98);
}

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.product-modal.is-open {
    display: flex;
}

.product-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 20, 15, 0.78);
    backdrop-filter: blur(8px);
}

.product-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(960px, 100%);
    max-height: 90vh;
    overflow: auto;
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
    gap: 28px;
    padding: 28px;
    border-radius: 34px;
    background: var(--pexco-cream-soft);
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.4);
}

.product-modal-close {
    position: absolute;
    top: 18px;
    inset-inline-end: 18px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: var(--pexco-green);
    color: white;
    cursor: pointer;
    z-index: 3;
}

.product-modal-media {
    min-height: 360px;
    display: grid;
    place-items: center;
    border-radius: 26px;
    background:
        radial-gradient(circle at 50% 60%, rgba(189, 146, 80, 0.24), transparent 12rem),
        rgba(255, 255, 255, 0.58);
}

.product-modal-media img {
    max-width: 92%;
    max-height: 330px;
    object-fit: contain;
    filter: drop-shadow(0 24px 24px rgba(11, 51, 39, 0.22));
}

.product-modal-content {
    padding: 24px 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-modal-content h2 {
    margin: 18px 0 14px;
    color: var(--pexco-green);
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 900;
    line-height: 1.05;
}

.product-modal-content p {
    color: var(--pexco-muted);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 26px;
}

.professional-product-card:hover .professional-product-image img {
    transform: scale(1.04) rotate(-1deg);
}

.logistics-section {
    background: #f6f6f6;
    border-top: 1px solid rgba(11, 51, 39, 0.08);
    border-bottom: 1px solid rgba(11, 51, 39, 0.08);
}

.logistics-title {
    margin: 0 0 36px;
    color: #1c211e;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 3.4vw, 46px);
    font-weight: 800;
    text-align: center;
}

.logistics-images {
    display: grid;
    grid-template-columns: 0.95fr 1fr;
    gap: 38px;
    align-items: center;
}

.logistics-image-card {
    overflow: hidden;
    background: #fff;
}

.logistics-image-card img {
    display: block;
    width: 100%;
    height: 318px;
    object-fit: cover;
}

.logistics-image-card.is-port {
    box-shadow: 0 22px 34px rgba(11, 51, 39, 0.18);
}

.statistics-block {
    margin-top: 74px;
    padding-top: 42px;
    border-top: 1px solid rgba(11, 51, 39, 0.10);
}

.statistics-title {
    margin: 0 0 34px;
    color: #1c211e;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(24px, 2.5vw, 34px);
    font-weight: 800;
    text-align: center;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    text-align: center;
}

.stat-number {
    color: var(--pexco-gold);
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 900;
    line-height: 1;
}

.stat-label {
    margin-top: 8px;
    color: #757575;
    font-size: 13px;
    font-weight: 700;
}

.x6-showcase {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    align-items: center;
    gap: 34px;
}

.home-products-section {
    padding: 80px 0;
    background:
        radial-gradient(circle at 18% 15%, rgba(189, 146, 80, 0.12), transparent 22rem),
        var(--pexco-cream);
}

.home-products-header {
    text-align: center;
    margin-bottom: 34px;
}

.home-products-book {
    position: relative;
    min-height: 430px;
    perspective: 1400px;
}

.home-products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
}

.home-products-page {
    display: none;
    transform-origin: center left;
}

.home-products-page.is-active {
    display: block;
    animation: pageFlipIn 0.52s ease both;
}

@keyframes pageFlipIn {
    from {
        opacity: 0;
        transform: rotateY(-18deg) translateX(18px);
    }
    to {
        opacity: 1;
        transform: rotateY(0) translateX(0);
    }
}

.home-product-card {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: var(--card-bg, #1f56b8);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.home-product-card:nth-child(2n) {
    --card-bg: #29bbcb;
}

.home-product-image {
    width: min(100%, 560px);
    max-height: 330px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 22px 18px rgba(0, 0, 0, 0.2));
}

.home-product-label {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    min-width: 190px;
    padding: 13px 28px;
    border-radius: 999px;
    background: #28c6d1;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.home-product-card:nth-child(2n) .home-product-label {
    background: #2558bc;
}

.home-products-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.mini-products {
    position: relative;
    min-height: 330px;
}

.brand-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 34px;
}

.brand-icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 24px;
    margin-top: 36px;
}

.brand-chip,
.brand-card {
    min-width: 150px;
    min-height: 74px;
    padding: 18px 26px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--pexco-line);
    box-shadow: 0 14px 30px rgba(11, 51, 39, 0.08);
    display: grid;
    place-items: center;
    color: var(--pexco-green);
    font-size: 22px;
    font-weight: 900;
}

.brand-chip img {
    max-width: 120px;
    max-height: 54px;
    object-fit: contain;
}

.brand-icon-card {
    min-height: 210px;
    gap: 12px;
    padding: 26px 18px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brand-icon-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(11, 51, 39, 0.14);
}

.brand-icon-card img {
    max-width: 74px;
    max-height: 74px;
    object-fit: contain;
}

.brand-logo-orb {
    width: 104px;
    height: 104px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgb(252 252 252);
    box-shadow: inset 0 0 0 8px rgb(255 250 240 / 0%), 0 18px 36px rgba(11, 51, 39, 0.16);
}

.brand-logo-orb img {
    max-width: 68px;
    max-height: 68px;
    object-fit: contain;
}

.brand-icon-card h3 {
    margin: 0;
    color: var(--pexco-green);
    font-size: 20px;
    font-weight: 900;
}

.brand-icon-card p {
    margin: 0;
    color: var(--pexco-muted);
    font-size: 14px;
    line-height: 1.6;
}

.brand-fallback {
    background:
        radial-gradient(circle at 34% 24%, rgba(217, 184, 121, 0.86), rgba(189, 146, 80, 0.42) 42%, transparent 43%),
        linear-gradient(135deg, var(--pexco-green), #071f18);
    color: var(--pexco-gold-2);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.brand-card img,
.product-card img,
.catalog-card img {
    max-width: 100%;
    object-fit: cover;
}

.cards-grid,
.product-grid,
.catalog-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-top: 34px;
}

.product-card,
.catalog-card,
.contact-card,
.content-card {
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255, 250, 240, 0.92);
    border: 1px solid var(--pexco-line);
    box-shadow: var(--pexco-shadow);
}

.card-body,
.product-content,
.catalog-content {
    padding: 26px;
}

.card-title,
.product-title,
.catalog-title,
.contact-title {
    color: var(--pexco-green);
    font-size: 22px;
    font-weight: 900;
}

.card-text,
.product-description,
.catalog-description,
.contact-info {
    margin-top: 10px;
    color: var(--pexco-muted);
    line-height: 1.75;
}

.product-image,
.catalog-image {
    height: 230px;
    background: linear-gradient(135deg, rgba(11, 51, 39, 0.08), rgba(189, 146, 80, 0.20));
    display: grid;
    place-items: center;
}

.product-placeholder {
    width: 138px;
    height: 162px;
    border-radius: 22px;
    background: linear-gradient(145deg, #071a14, #173c2f);
    color: var(--pexco-gold-2);
    display: grid;
    place-items: center;
    font-size: 52px;
    font-weight: 900;
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.22);
}

/* About page */
.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 48px;
    align-items: center;
}

.about-lead {
    font-size: 19px;
    font-weight: 600;
    color: var(--pexco-green);
}

.about-split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 36px;
    align-items: start;
}

.about-highlight-card {
    padding: 32px;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(11, 51, 39, 0.06), rgba(189, 146, 80, 0.14));
    border: 1px solid var(--pexco-line);
    box-shadow: var(--pexco-shadow);
}

.about-me-section {
    background: linear-gradient(135deg, rgba(11, 51, 39, 0.04), rgba(189, 146, 80, 0.08));
}

.about-me-panel {
    padding: 48px;
    border-radius: 36px;
    background: rgba(255, 250, 240, 0.95);
    border: 1px solid var(--pexco-line);
    box-shadow: var(--pexco-shadow);
}

.about-me-body ul,
.about-rich-text ul {
    margin: 16px 0 0;
    padding: 0 22px;
}

.about-rich-text li {
    margin-bottom: 10px;
    line-height: 1.75;
    color: var(--pexco-muted);
}

.about-region-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.about-region-tags span {
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--pexco-green);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.about-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    text-align: start;
}

.about-capabilities-grid .about-cap-item {
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 250, 240, 0.95);
    border: 1px solid var(--pexco-line);
    box-shadow: 0 12px 32px rgba(11, 51, 39, 0.08);
}

.about-capabilities-grid h3 {
    margin: 0 0 12px;
    color: var(--pexco-green);
    font-size: 20px;
    font-weight: 800;
}

.about-capabilities-grid p {
    margin: 0;
    color: var(--pexco-muted);
    line-height: 1.75;
}

.about-sectors-card {
    padding: 12px 0;
}

.about-why-panel {
    padding: 40px;
    border-radius: 32px;
    background: linear-gradient(120deg, rgba(11, 51, 39, 0.05), rgba(255, 250, 240, 0.9));
    border: 1px solid var(--pexco-line);
}

.about-checklist {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 24px;
}

.about-checklist li {
    position: relative;
    padding: 14px 16px 14px 44px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--pexco-line);
    color: var(--pexco-ink);
    font-weight: 600;
    line-height: 1.5;
}

.about-checklist li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 16px;
    top: 16px;
    color: var(--pexco-gold);
}

[dir="rtl"] .about-checklist li {
    padding: 14px 44px 14px 16px;
}

[dir="rtl"] .about-checklist li::before {
    left: auto;
    right: 16px;
}

.about-mvv-grid {
    margin-top: 0;
}

.about-stats-strip {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(217, 184, 121, 0.28) !important;
    box-shadow: none !important;
}

.about-cta-band {
    background: linear-gradient(180deg, rgba(189, 146, 80, 0.12), rgba(248, 243, 232, 0.4));
}

@media (max-width: 992px) {
    .about-hero-grid,
    .about-split,
    .about-capabilities-grid,
    .about-checklist {
        grid-template-columns: 1fr;
    }

    .about-me-panel,
    .about-why-panel {
        padding: 28px 22px;
    }
}

.catalog-band {
    border-radius: 52px 52px 0 0;
    padding: 74px 0;
    background:
        linear-gradient(90deg, rgba(11, 51, 39, 0.95), rgba(11, 51, 39, 0.82)),
        url("https://images.unsplash.com/photo-1519671482749-fd09be7ccebf?auto=format&fit=crop&w=1400&q=75") center/cover;
    color: white;
}

.catalog-hero-pro {
    border-radius: 0 0 54px 54px;
}

.catalog-cover-preview {
    display: grid;
    place-items: center;
}

.catalog-cover-book {
    width: min(360px, 100%);
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding: 38px;
    border-radius: 12px 34px 34px 12px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 18%),
        radial-gradient(circle at 80% 18%, rgba(217, 184, 121, 0.22), transparent 12rem),
        #08291f;
    color: white;
    box-shadow: 28px 30px 70px rgba(0, 0, 0, 0.32);
    border: 1px solid rgba(217, 184, 121, 0.32);
}

.catalog-cover-book span {
    color: var(--pexco-gold-2);
    font-size: 18px;
    letter-spacing: 0.3em;
    font-weight: 900;
}

.catalog-cover-book strong {
    font-size: 46px;
    line-height: 1.05;
}

.catalog-cover-book small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
}

.catalog-band .section-title,
.catalog-band .section-copy {
    color: white;
}

.catalog-book-section {
    background: linear-gradient(180deg, var(--pexco-cream), var(--pexco-cream-soft));
}

.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
}

.catalog-page-indicator {
    min-width: 86px;
    padding: 10px 16px;
    border-radius: 999px;
    background: white;
    color: var(--pexco-green);
    font-weight: 900;
    text-align: center;
    box-shadow: 0 12px 26px rgba(11, 51, 39, 0.08);
}

.product-catalog-book {
    position: relative;
    perspective: 1600px;
    min-height: 560px;
}

.catalog-book-page {
    display: none;
    transform-origin: center left;
}

.catalog-book-page.is-active {
    display: block;
    animation: catalogPageFlip 0.55s ease both;
}

@keyframes catalogPageFlip {
    from {
        opacity: 0;
        transform: rotateY(-16deg) translateX(20px);
    }
    to {
        opacity: 1;
        transform: rotateY(0) translateX(0);
    }
}

.catalog-page-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border-radius: 34px;
    background: #fffaf0;
    border: 1px solid var(--pexco-line);
    box-shadow: var(--pexco-shadow);
}

.catalog-product-sheet {
    min-height: 560px;
    display: grid;
    grid-template-rows: 1fr auto;
    padding: 28px;
    border-inline-start: 1px solid var(--pexco-line);
    background:
        radial-gradient(circle at 50% 30%, rgba(189, 146, 80, 0.16), transparent 14rem),
        rgba(255, 250, 240, 0.88);
}

.catalog-product-sheet:first-child {
    border-inline-start: 0;
}

.catalog-product-image {
    display: grid;
    place-items: center;
    min-height: 300px;
}

.catalog-product-image img {
    max-width: 92%;
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 20px 22px rgba(11, 51, 39, 0.18));
}

.catalog-product-copy h2 {
    margin: 14px 0 8px;
    color: var(--pexco-green);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
    line-height: 1.08;
}

.catalog-brand-name {
    color: var(--pexco-gold);
    font-weight: 900;
    margin-bottom: 10px;
}

.catalog-product-copy p {
    color: var(--pexco-muted);
    line-height: 1.75;
}

.catalog-printable {
    display: none;
}

.site-footer {
    background: var(--pexco-green);
    color: rgba(255, 255, 255, 0.82);
    padding: 56px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1.1fr;
    gap: 34px;
}

.footer-title {
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 16px;
}

.footer-link {
    display: block;
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.72);
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.newsletter-form input,
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--pexco-line);
    border-radius: 16px;
    padding: 14px 16px;
    background: rgba(255, 250, 240, 0.9);
    color: var(--pexco-ink);
    outline: none;
}

.newsletter-form button {
    background: var(--pexco-gold);
    color: var(--pexco-green);
    border: 0;
    border-radius: 16px;
    padding: 0 20px;
    font-weight: 900;
}

.footer-bottom {
    margin-top: 38px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.loading-card {
    padding: 32px 42px;
    border-radius: 28px;
    background: var(--pexco-green);
    color: #fff;
    box-shadow: var(--pexco-shadow);
}

@media (max-width: 980px) {
    .site-nav {
        min-height: 78px;
    }

    .nav-links,
    .nav-actions .pill-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-grid,
    .split-grid,
    .products-hero,
    .featured-product-card,
    .catalog-page-inner,
    .x6-showcase,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .catalog-product-sheet {
        border-inline-start: 0;
        border-top: 1px solid var(--pexco-line);
    }

    .catalog-product-sheet:first-child {
        border-top: 0;
    }

    .featured-product-media {
        min-height: 320px;
    }

    .featured-product-media img {
        height: 280px;
    }

    .product-stage {
        min-height: 420px;
    }

    .feature-strip,
    .statistics-grid,
    .cards-grid,
    .product-grid,
    .catalog-grid,
    .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .pexco-shell {
        padding: 0 16px;
    }

    .hero-x6 {
        padding-top: 44px;
    }

    .feature-strip,
    .logistics-images,
    .statistics-grid,
    .home-products-grid,
    .cards-grid,
    .product-grid,
    .catalog-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        border-inline-start: 0;
        border-top: 1px solid var(--pexco-line);
    }

    .feature-item:first-child {
        border-top: 0;
    }

    .logistics-image-card img {
        height: 230px;
    }

    .home-product-card {
        min-height: 330px;
    }

    .home-products-book {
        min-height: 660px;
    }

    .home-product-image {
        max-height: 250px;
    }

    .featured-product-card {
        padding: 22px;
        border-radius: 28px;
    }

    .product-modal-dialog {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .product-modal-media {
        min-height: 250px;
    }

    .product-modal-media img {
        max-height: 230px;
    }

    .featured-product-media {
        min-height: 250px;
    }

    .featured-product-media img {
        height: 220px;
    }

    .professional-product-image {
        height: 230px;
        min-height: 230px;
    }

    .catalog-toolbar {
        flex-wrap: wrap;
    }

    .product-catalog-book {
        min-height: 920px;
    }

    .catalog-product-sheet {
        min-height: 460px;
    }

    .catalog-product-image {
        min-height: 220px;
    }

    .catalog-product-image img {
        max-height: 220px;
    }

    .professional-product-image img {
        max-height: 185px;
    }

    .x6-bag {
        right: 16%;
        width: 190px;
        height: 270px;
    }

    .x6-bottle {
        left: 5%;
    }

    .x6-can {
        right: 0;
    }

    .newsletter-form {
        flex-direction: column;
    }
}
