:root {
    --primary: #5A2D1A;
    --secondary: #FCF0E2;
    --accent: #C0392B;
    --dark: #24140D;
    --text: #5E4A40;
    --muted: #8A766B;
    --white: #FFFFFF;
    --cream: #FFF8F1;
    --soft-cream: #FFF4E8;
    --border: rgba(90, 45, 26, 0.14);
    --shadow: 0 20px 50px rgba(36, 20, 13, 0.08);
    --shadow-strong: 0 28px 70px rgba(36, 20, 13, 0.14);
    --radius: 22px;
    --container: 1180px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

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

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--accent), #E0735E);
    z-index: 2000;
    transform-origin: left center;
    transition: width 0.08s linear;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 248, 241, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.35s var(--ease), background 0.35s var(--ease), transform 0.35s var(--ease);
}

.site-header.scrolled {
    background: rgba(255, 248, 241, 0.98);
    box-shadow: 0 12px 34px rgba(36, 20, 13, 0.08);
}

.header-inner {
    height: 88px;
    display: flex;
    align-items: center;
    gap: 28px;
    transition: height 0.35s var(--ease);
}

.site-header.scrolled .header-inner {
    height: 76px;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    line-height: 1;
}

.brand-logo img {
    width: auto;
    height: 58px;
    max-width: 190px;
    object-fit: contain;
    display: block;
    transition: height 0.35s var(--ease), transform 0.35s var(--ease);
}

.site-header.scrolled .brand-logo img {
    height: 50px;
}

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav a {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    position: relative;
    transition: color 0.25s var(--ease);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s var(--ease);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.header-cta,
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), background 0.28s var(--ease), color 0.28s var(--ease), border-color 0.28s var(--ease);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.header-cta::before,
.btn-primary::before,
.btn-secondary::before,
.btn-outline::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: translateX(-120%);
    transition: transform 0.65s var(--ease);
}

.header-cta:hover::before,
.btn-primary:hover::before,
.btn-secondary:hover::before,
.btn-outline:hover::before {
    transform: translateX(120%);
}

.header-cta {
    padding: 12px 20px;
    color: var(--white);
    background: var(--accent);
    box-shadow: 0 12px 30px rgba(192, 57, 43, 0.18);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(192, 57, 43, 0.28);
}

.btn-primary {
    padding: 14px 24px;
    background: var(--accent);
    color: var(--white);
    border: 1px solid var(--accent);
    box-shadow: 0 14px 32px rgba(192, 57, 43, 0.18);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 44px rgba(192, 57, 43, 0.26);
}

.btn-secondary {
    padding: 14px 24px;
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
    box-shadow: 0 14px 34px rgba(90, 45, 26, 0.18);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 44px rgba(90, 45, 26, 0.24);
}

.btn-outline {
    padding: 13px 22px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 42px;
    height: 42px;
    padding: 8px;
    margin-left: auto;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--primary);
    margin: 6px 0;
    border-radius: 10px;
    transition: transform 0.28s var(--ease), opacity 0.28s var(--ease);
}

body.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    min-height: calc(100vh - 88px);
    overflow: hidden;
    background: var(--primary);
    isolation: isolate;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: opacity 0.95s var(--ease), visibility 0.95s var(--ease), background-position 0.15s linear;
    will-change: opacity, background-position;
}

.hero-slide[style*="--desktop-banner"] {
    background-image:
        linear-gradient(90deg, rgba(36, 20, 13, 0.82) 0%, rgba(36, 20, 13, 0.62) 42%, rgba(36, 20, 13, 0.18) 100%),
        var(--desktop-banner);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at right center, rgba(192, 57, 43, 0.18), transparent 36%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.12));
    z-index: 1;
    pointer-events: none;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 120px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 18px;
}

.hero-slide .eyebrow {
    color: #F7C8B6;
}

.hero-slide h1 {
    margin: 0;
    color: var(--white);
    font-size: clamp(42px, 5.6vw, 76px);
    line-height: 1.08;
    letter-spacing: -0.045em;
    max-width: 780px;
    text-wrap: balance;
}

.hero-slide p {
    margin: 24px 0 0;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.banner-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.08);
}

.banner-outline:hover {
    background: rgba(255, 255, 255, 0.16);
}

.hero-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}

.hero-slider-dots button {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.22);
    cursor: pointer;
    padding: 0;
    transition: all 0.28s var(--ease);
}

.hero-slider-dots button.active {
    width: 34px;
    background: var(--accent);
    border-color: var(--accent);
}



.hero-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.hero-arrow-prev {
    left: 28px;
}

.hero-arrow-next {
    right: 28px;
}

/* Trust Strip */
.trust-strip {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.trust-item {
    padding: 24px 20px;
    border-right: 1px solid var(--border);
    transition: background 0.28s var(--ease), transform 0.28s var(--ease);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item:hover {
    background: var(--secondary);
}

.trust-item strong {
    display: block;
    color: var(--primary);
    font-size: 17px;
    margin-bottom: 4px;
}

.trust-item span {
    color: var(--muted);
    font-size: 14px;
}

/* Sections */
.section {
    padding: 92px 0;
    position: relative;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 38px;
}

.section-heading.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2,
.cta-section h2,
.quality-content h2 {
    color: var(--primary);
    line-height: 1.12;
    margin: 0;
}

.section-heading h2,
.quality-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.section-heading p {
    margin: 16px 0 0;
    font-size: 17px;
    color: var(--muted);
}

.section-action {
    margin-top: 34px;
    display: flex;
    justify-content: center;
}

/* Cards */
.category-grid,
.product-grid,
.value-grid,
.process-grid,
.industry-grid,
.blog-grid {
    display: grid;
    gap: 24px;
}

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

.process-grid,
.industry-grid {
    grid-template-columns: repeat(4, 1fr);
}

.card,
.industry-card,
.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 14px 40px rgba(36, 20, 13, 0.05);
    transition: transform 0.34s var(--ease), box-shadow 0.34s var(--ease), border-color 0.34s var(--ease), background 0.34s var(--ease);
    will-change: transform;
}

.card {
    padding: 26px;
}

.card:hover,
.industry-card:hover,
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(192, 57, 43, 0.20);
}

.category-card h3,
.product-card h3,
.value-card h3,
.process-card h3,
.industry-card h3 {
    color: var(--primary);
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.25;
}

.card p,
.industry-card p {
    margin: 0;
    color: var(--muted);
}

/* Product Cards */
.product-image {
    height: 220px;
    border-radius: 18px;
    overflow: hidden;
    background: var(--secondary);
    margin-bottom: 18px;
}

.product-image img,
.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.product-card:hover .product-image img,
.blog-card:hover .blog-thumb img {
    transform: scale(1.06);
}

.product-meta {
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

/* About Band */
.about-band {
    background:
        radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.06), transparent 30%),
        var(--primary);
    color: var(--white);
    overflow: hidden;
}

.about-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.04), transparent);
    transform: translateX(-30%);
    pointer-events: none;
}

.about-band .section-heading h2,
.about-band h3 {
    color: var(--white);
}

.about-band .section-heading p,
.about-band p {
    color: rgba(255, 255, 255, 0.78);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    padding: 22px;
    transition: transform 0.34s var(--ease), background 0.34s var(--ease);
}

.stat-box:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.12);
}

.stat-box strong {
    display: block;
    font-size: 28px;
    color: var(--white);
}

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

.light-outline:hover {
    background: rgba(255, 255, 255, 0.10);
}

/* Quality */
.quality-section {
    background:
        radial-gradient(circle at left top, rgba(192, 57, 43, 0.08), transparent 34%),
        var(--secondary);
    overflow: hidden;
}

.quality-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 54px;
    align-items: center;
}

.quality-visual {
    min-height: 460px;
    border-radius: 34px;
    background:
        linear-gradient(rgba(90, 45, 26, 0.14), rgba(90, 45, 26, 0.18)),
        url("../images/home-hero-banner.jpg") center/cover no-repeat;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s linear;
    will-change: transform;
}

.quality-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.22), transparent 32%);
    pointer-events: none;
}

.quality-badge {
    position: absolute;
    left: 28px;
    bottom: 28px;
    right: 28px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.54);
    backdrop-filter: blur(14px);
    border-radius: 22px;
    padding: 22px;
}

.quality-badge span {
    display: block;
    color: var(--accent);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    margin-bottom: 5px;
}

.quality-badge strong {
    color: var(--primary);
    font-size: 25px;
    line-height: 1.2;
}

.quality-content p {
    color: var(--muted);
    margin: 18px 0 0;
    font-size: 17px;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 26px 0 30px;
}

.check-list div {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px 16px;
    color: var(--dark);
    font-weight: 700;
    transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.check-list div:hover {
    transform: translateX(6px);
    box-shadow: 0 14px 32px rgba(36, 20, 13, 0.06);
}

/* Industries */
.industries-section {
    background: var(--cream);
}

.industry-card {
    padding: 26px;
}

.industry-card span {
    display: inline-flex;
    color: var(--accent);
    font-weight: 900;
    margin-bottom: 18px;
}

/* Blog */
.insights-section {
    background: var(--secondary);
}

.blog-card {
    overflow: hidden;
}

.blog-thumb {
    height: 210px;
    background: var(--secondary);
    overflow: hidden;
}

.blog-content {
    padding: 24px;
}

.blog-content.no-thumb {
    min-height: 265px;
}

.blog-content span {
    display: inline-flex;
    color: var(--accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 900;
    margin-bottom: 10px;
}

.blog-content h3 {
    margin: 0 0 12px;
    color: var(--primary);
    font-size: 22px;
    line-height: 1.25;
}

.blog-content p {
    margin: 0 0 18px;
    color: var(--muted);
}

.blog-content a {
    color: var(--accent);
    font-weight: 900;
}

/* FAQ */
.faq-preview {
    background: var(--cream);
}

.faq-preview-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-list details {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 12px 30px rgba(36, 20, 13, 0.04);
    transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.faq-list details:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(36, 20, 13, 0.08);
}

.faq-list summary {
    cursor: pointer;
    color: var(--primary);
    font-weight: 900;
    list-style: none;
    position: relative;
    padding-right: 26px;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    color: var(--accent);
    font-weight: 900;
}

.faq-list details[open] summary::after {
    content: "–";
}

.faq-list p {
    color: var(--muted);
    margin: 12px 0 0;
}

/* CTA */
.cta-section {
    padding: 84px 0;
    background:
        radial-gradient(circle at 78% 12%, rgba(192, 57, 43, 0.18), transparent 32%),
        linear-gradient(135deg, var(--primary), #35170D);
    color: var(--white);
    overflow: hidden;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-section h2 {
    color: var(--white);
    font-size: clamp(30px, 4vw, 48px);
    letter-spacing: -0.03em;
}

.cta-section p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.78);
    max-width: 680px;
}

/* Footer */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.76);
    padding-top: 64px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
    gap: 38px;
}

.site-footer h3,
.site-footer h4 {
    color: var(--white);
    margin: 0 0 18px;
}

.footer-links a,
.footer-contact a {
    display: block;
    margin-bottom: 9px;
    color: rgba(255, 255, 255, 0.74);
    transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 44px;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-bottom a {
    margin-left: 16px;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1001;
    background: #1FAF5A;
    color: var(--white);
    padding: 13px 18px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 16px 36px rgba(31, 175, 90, 0.28);
    transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 22px 48px rgba(31, 175, 90, 0.36);
}

/* Reveal Animation System */
.fade-up,
.reveal-item {
    opacity: 1;
    transform: none;
}

body.js-ready .fade-up,
body.js-ready .reveal-item {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
    transition:
        opacity 0.9s var(--ease),
        transform 0.9s var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

body.js-ready .fade-up.is-visible,
body.js-ready .reveal-item.is-visible,
body.js-ready .fade-up.visible,
body.js-ready .reveal-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

body.js-ready .hero-slide.active .hero-slide-content .eyebrow,
body.js-ready .hero-slide.active .hero-slide-content h1,
body.js-ready .hero-slide.active .hero-slide-content p,
body.js-ready .hero-slide.active .hero-slide-content .hero-actions {
    opacity: 0;
    transform: translateY(26px);
    animation: heroTextReveal 0.95s var(--ease) forwards;
}

body.js-ready .hero-slide.active .hero-slide-content .eyebrow {
    animation-delay: 0.16s;
}

body.js-ready .hero-slide.active .hero-slide-content h1 {
    animation-delay: 0.28s;
}

body.js-ready .hero-slide.active .hero-slide-content p {
    animation-delay: 0.40s;
}

body.js-ready .hero-slide.active .hero-slide-content .hero-actions {
    animation-delay: 0.52s;
}

@keyframes heroTextReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Compatibility */
.hero {
    position: relative;
    padding: 94px 0 80px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(192, 57, 43, 0.10), transparent 34%),
        linear-gradient(135deg, var(--secondary), var(--cream));
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 58px;
    align-items: center;
}

.hero h1 {
    color: var(--primary);
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.12;
    letter-spacing: -0.04em;
    max-width: 760px;
    margin: 0;
}

.hero p {
    font-size: 18px;
    max-width: 650px;
    margin: 24px 0 0;
    color: var(--text);
}

.hero-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 34px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.hero-image {
    min-height: 390px;
    border-radius: 28px;
    background:
        linear-gradient(rgba(90, 45, 26, 0.08), rgba(90, 45, 26, 0.18)),
        url("../images/home-hero-banner.jpg") center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-image-caption {
    width: 100%;
    padding: 24px;
    color: var(--white);
    background: linear-gradient(transparent, rgba(36, 20, 13, 0.78));
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid,
    .about-grid,
    .quality-grid,
    .faq-preview-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid,
    .process-grid,
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-grid,
    .product-grid,
    .value-grid,
    .blog-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-cta {
        display: none;
    }

    .quality-visual {
        min-height: 360px;
    }
}

@media (max-width: 820px) {
    .header-inner,
    .site-header.scrolled .header-inner {
        height: 74px;
    }

    .brand-logo img,
    .site-header.scrolled .brand-logo img {
        height: 48px;
        max-width: 155px;
    }

    .menu-toggle {
        display: block;
        z-index: 1002;
    }

    .main-nav {
        position: fixed;
        inset: 74px 0 auto 0;
        background: rgba(255, 248, 241, 0.98);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
        padding: 24px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .main-nav.open {
        display: flex;
        animation: menuDrop 0.32s var(--ease) forwards;
    }

    @keyframes menuDrop {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .main-nav a {
        font-size: 18px;
    }

    .hero-slider {
        min-height: 640px;
    }

    .hero-slide[style*="--mobile-banner"] {
        background-image:
            linear-gradient(180deg, rgba(36, 20, 13, 0.84) 0%, rgba(36, 20, 13, 0.58) 58%, rgba(36, 20, 13, 0.30) 100%),
            var(--mobile-banner);
    }

    .hero-slide-content {
        padding: 92px 0 110px;
    }

    .hero-slide h1 {
        font-size: clamp(38px, 10vw, 58px);
    }

    .hero-slide p {
        font-size: 16px;
    }

    .hero-arrow {
        display: none;
    }

    .hero-slider-dots {
        bottom: 24px;
    }

    .section {
        padding: 68px 0;
    }

    .category-grid,
    .product-grid,
    .value-grid,
    .process-grid,
    .industry-grid,
    .blog-grid,
    .trust-grid,
    .about-stats,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-bottom a {
        margin-left: 0;
        margin-right: 14px;
    }

    .blog-thumb {
        height: 190px;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

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

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

    .hero-slider {
        min-height: 620px;
    }

    .hero-slide h1 {
        letter-spacing: -0.035em;
    }

    .quality-visual {
        min-height: 320px;
    }

    .quality-badge {
        left: 18px;
        right: 18px;
        bottom: 18px;
        padding: 18px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        padding: 12px 15px;
        font-size: 14px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }

    body.js-ready .fade-up,
    body.js-ready .reveal-item {
        opacity: 1;
        transform: none;
    }

    .hero-slide {
        transition: none;
    }
}
.hero-scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 6;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    opacity: 0.9;
    transition: transform 0.28s var(--ease), opacity 0.28s var(--ease);
}

.hero-scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-3px);
}

.hero-scroll-mouse {
    width: 28px;
    height: 44px;
    border: 1.5px solid rgba(255, 255, 255, 0.72);
    border-radius: 18px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
}

.hero-scroll-dot {
    width: 4px;
    height: 9px;
    border-radius: 999px;
    background: var(--white);
    animation: scrollDotMove 1.6s ease-in-out infinite;
}

.hero-scroll-arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid rgba(255, 255, 255, 0.85);
    border-bottom: 2px solid rgba(255, 255, 255, 0.85);
    transform: rotate(45deg);
    animation: scrollArrowBounce 1.6s ease-in-out infinite;
}

@keyframes scrollDotMove {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

@keyframes scrollArrowBounce {
    0%, 100% {
        transform: rotate(45deg) translate(0, 0);
    }
    50% {
        transform: rotate(45deg) translate(4px, 4px);
    }
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1001;
    background: #1FAF5A;
    color: var(--white);
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 16px 36px rgba(31, 175, 90, 0.28);
    transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 22px 48px rgba(31, 175, 90, 0.36);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.whatsapp-text {
    line-height: 1;
}

@media (max-width: 820px) {
    .hero-scroll-indicator {
        bottom: 18px;
    }

    .hero-scroll-mouse {
        width: 24px;
        height: 38px;
        padding-top: 7px;
    }

    .hero-scroll-dot {
        height: 8px;
    }
}

@media (max-width: 520px) {
    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        padding: 11px 14px;
        gap: 8px;
    }

    .whatsapp-icon,
    .whatsapp-icon svg {
        width: 18px;
        height: 18px;
    }

    .whatsapp-text {
        font-size: 13px;
    }
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

#home-categories {
    scroll-margin-top: 110px;
}

.hero-scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 6;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    opacity: 0.9;
    transition: transform 0.28s var(--ease), opacity 0.28s var(--ease);
}

.hero-scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-3px);
}

.hero-scroll-mouse {
    width: 28px;
    height: 44px;
    border: 1.5px solid rgba(255, 255, 255, 0.72);
    border-radius: 18px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
}

.hero-scroll-dot {
    width: 4px;
    height: 9px;
    border-radius: 999px;
    background: var(--white);
    animation: scrollDotMove 1.6s ease-in-out infinite;
}

.hero-scroll-arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid rgba(255, 255, 255, 0.85);
    border-bottom: 2px solid rgba(255, 255, 255, 0.85);
    transform: rotate(45deg);
    animation: scrollArrowBounce 1.6s ease-in-out infinite;
}

@keyframes scrollDotMove {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

@keyframes scrollArrowBounce {
    0%, 100% {
        transform: rotate(45deg) translate(0, 0);
    }
    50% {
        transform: rotate(45deg) translate(4px, 4px);
    }
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1001;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: linear-gradient(135deg, #25D366, #1FAF5A);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 38px rgba(31, 175, 90, 0.30);
    transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
    overflow: visible;
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 999px;
    border: 1px solid rgba(37, 211, 102, 0.28);
    animation: whatsappPulse 2.2s ease-out infinite;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 24px 48px rgba(31, 175, 90, 0.38);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.whatsapp-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.whatsapp-text {
    display: none;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.65;
    }
    70% {
        transform: scale(1.22);
        opacity: 0;
    }
    100% {
        transform: scale(1.22);
        opacity: 0;
    }
}

@media (max-width: 820px) {
    html {
        scroll-padding-top: 88px;
    }

    #home-categories {
        scroll-margin-top: 88px;
    }

    .hero-scroll-indicator {
        bottom: 18px;
    }

    .hero-scroll-mouse {
        width: 24px;
        height: 38px;
        padding-top: 7px;
    }

    .hero-scroll-dot {
        height: 8px;
    }
}

@media (max-width: 520px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        right: 14px;
        bottom: 14px;
    }

    .whatsapp-icon,
    .whatsapp-icon svg {
        width: 22px;
        height: 22px;
    }
}
/* Hero content left alignment + premium animation */
.hero-slide-content {
    position: relative;
    z-index: 2;
    width: min(var(--container), calc(100% - 32px));
    max-width: var(--container);
    margin: 0 auto;
    padding: 120px 0;
}

.hero-slide-content .eyebrow,
.hero-slide-content h1,
.hero-slide-content p,
.hero-slide-content .hero-actions {
    max-width: 720px;
}

.hero-slide h1 {
    max-width: 720px;
}

/* Active banner soft zoom */
.hero-slide.active {
    animation: heroBannerFade 1.05s var(--ease) both;
}

.hero-slide.active::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1.02);
    animation: heroImageZoom 8s ease-out forwards;
    pointer-events: none;
}

.hero-slide.active .hero-slide-overlay,
.hero-slide.active .hero-slide-content {
    position: relative;
    z-index: 2;
}

/* Keep original background layer stable */
.hero-slide {
    background-size: cover;
    background-position: center;
}

/* Premium text reveal */
body.js-ready .hero-slide.active .hero-slide-content .eyebrow,
body.js-ready .hero-slide.active .hero-slide-content h1,
body.js-ready .hero-slide.active .hero-slide-content p,
body.js-ready .hero-slide.active .hero-slide-content .hero-actions {
    opacity: 0;
    transform: translateY(32px);
    filter: blur(8px);
    animation: premiumHeroReveal 1s var(--ease) forwards;
}

body.js-ready .hero-slide.active .hero-slide-content .eyebrow {
    animation-delay: 0.12s;
}

body.js-ready .hero-slide.active .hero-slide-content h1 {
    animation-delay: 0.26s;
}

body.js-ready .hero-slide.active .hero-slide-content p {
    animation-delay: 0.42s;
}

body.js-ready .hero-slide.active .hero-slide-content .hero-actions {
    animation-delay: 0.58s;
}

@keyframes premiumHeroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes heroImageZoom {
    from {
        transform: scale(1.04);
    }

    to {
        transform: scale(1.09);
    }
}

@keyframes heroBannerFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Better text readability on banner */
.hero-slide h1 {
    text-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.hero-slide p {
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

/* Mobile tuning */
@media (max-width: 820px) {
    .hero-slide-content {
        padding: 92px 0 110px;
    }

    .hero-slide-content .eyebrow,
    .hero-slide-content h1,
    .hero-slide-content p,
    .hero-slide-content .hero-actions {
        max-width: 100%;
    }

    .hero-slide h1 {
        max-width: 100%;
    }

    .hero-slide.active::before {
        animation: none;
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide.active,
    .hero-slide.active::before,
    body.js-ready .hero-slide.active .hero-slide-content .eyebrow,
    body.js-ready .hero-slide.active .hero-slide-content h1,
    body.js-ready .hero-slide.active .hero-slide-content p,
    body.js-ready .hero-slide.active .hero-slide-content .hero-actions {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}
#about-elantivo {
    scroll-margin-top: 110px;
}
@media (max-width: 820px) {
    #about-elantivo {
        scroll-margin-top: 88px;
    }
}
.about-light {
    background:
        radial-gradient(circle at 16% 12%, rgba(192, 57, 43, 0.08), transparent 34%),
        linear-gradient(135deg, #FFF8F1 0%, #FCF0E2 100%);
    overflow: hidden;
}

.about-light-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 52px;
    align-items: center;
}

.about-light-content h2 {
    color: var(--primary);
    font-size: clamp(34px, 4.2vw, 52px);
    line-height: 1.12;
    letter-spacing: -0.035em;
    margin: 0;
    max-width: 720px;
}

.about-light-content p {
    color: var(--muted);
    font-size: 17px;
    margin: 18px 0 0;
    max-width: 680px;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 28px 0 30px;
}

.about-points div {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 14px 38px rgba(36, 20, 13, 0.05);
    transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
}

.about-points div:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.about-points strong {
    display: block;
    color: var(--primary);
    font-size: 16px;
    margin-bottom: 7px;
}

.about-points span {
    display: block;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

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

.light-stat {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text);
    min-height: 150px;
    box-shadow: 0 18px 46px rgba(36, 20, 13, 0.06);
}

.light-stat strong {
    color: var(--primary);
    font-size: 30px;
}

.light-stat p {
    color: var(--muted);
}

.light-stat:hover {
    background: var(--white);
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

#about-elantivo {
    scroll-margin-top: 110px;
}

@media (max-width: 1024px) {
    .about-light-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    #about-elantivo {
        scroll-margin-top: 88px;
    }

    .about-points,
    .about-light-cards {
        grid-template-columns: 1fr;
    }
}
.about-minimal {
    background:
        radial-gradient(circle at 14% 18%, rgba(192, 57, 43, 0.08), transparent 34%),
        linear-gradient(135deg, #FFF8F1 0%, #FCF0E2 100%);
    overflow: hidden;
}

.about-minimal-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 72px;
    align-items: center;
}

.about-minimal-left h2 {
    color: var(--primary);
    font-size: clamp(36px, 4.4vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.045em;
    margin: 0;
    max-width: 620px;
}

.about-minimal-left .hero-actions {
    margin-top: 34px;
}

.about-minimal-right {
    position: relative;
    padding-left: 34px;
}

.about-minimal-right::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 3px;
    height: calc(100% - 12px);
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent), rgba(192, 57, 43, 0.12));
}

.about-minimal-right p {
    margin: 0;
    color: var(--text);
    font-size: 19px;
    line-height: 1.95;
    max-width: 760px;
}

#about-elantivo {
    scroll-margin-top: 110px;
}

@media (max-width: 1024px) {
    .about-minimal-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about-minimal-right {
        padding-left: 24px;
    }
}

@media (max-width: 820px) {
    #about-elantivo {
        scroll-margin-top: 88px;
    }

    .about-minimal-left h2 {
        font-size: clamp(34px, 9vw, 48px);
    }

    .about-minimal-right p {
        font-size: 16px;
        line-height: 1.85;
    }
}
.about-minimal-right p {
    margin: 0;
    color: var(--text);
    font-size: 19px;
    line-height: 1.95;
    max-width: 760px;
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
}
@media (max-width: 820px) {
    .about-minimal-right p {
        text-align: left;
        text-align-last: auto;
        font-size: 16px;
        line-height: 1.85;
    }
}
.product-range-section {
    background:
        radial-gradient(circle at 86% 8%, rgba(192, 57, 43, 0.07), transparent 30%),
        var(--cream);
}

.product-range-heading p {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.product-visual-slider {
    position: relative;
    margin: 44px auto 42px;
    max-width: 1080px;
    height: 430px;
    border-radius: 34px;
    overflow: hidden;
    background: var(--secondary);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.product-visual-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-visual-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.025);
    transition:
        opacity 0.85s var(--ease),
        visibility 0.85s var(--ease),
        transform 1.2s var(--ease);
}

.product-visual-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.product-visual-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-visual-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(36, 20, 13, 0.38), rgba(36, 20, 13, 0.08) 52%, rgba(36, 20, 13, 0.10)),
        linear-gradient(180deg, transparent, rgba(36, 20, 13, 0.34));
    pointer-events: none;
}

.product-visual-caption {
    position: absolute;
    left: 30px;
    bottom: 28px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.48);
    backdrop-filter: blur(12px);
    border-radius: 999px;
    padding: 12px 18px;
    box-shadow: 0 14px 34px rgba(36, 20, 13, 0.12);
}

.product-visual-caption span {
    color: var(--primary);
    font-weight: 900;
    letter-spacing: 0.02em;
}

.product-visual-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    transition:
        background 0.28s var(--ease),
        border-color 0.28s var(--ease),
        transform 0.28s var(--ease);
}

.product-visual-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.product-visual-prev {
    left: 22px;
}

.product-visual-next {
    right: 22px;
}

.product-visual-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 9px;
}

.product-visual-dots button {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.26);
    padding: 0;
    cursor: pointer;
    transition: all 0.28s var(--ease);
}

.product-visual-dots button.active {
    width: 32px;
    background: var(--accent);
    border-color: var(--accent);
}

.product-range-cards {
    margin-top: 10px;
}

@media (max-width: 820px) {
    .product-visual-slider {
        height: 360px;
        border-radius: 26px;
        margin-top: 34px;
    }

    .product-visual-arrow {
        display: none;
    }

    .product-visual-caption {
        left: 18px;
        bottom: 22px;
        padding: 10px 15px;
    }
}

@media (max-width: 520px) {
    .product-visual-slider {
        height: 300px;
        border-radius: 22px;
    }

    .product-visual-caption span {
        font-size: 13px;
    }
}


.product-visual-slider {
    position: relative;
    margin: 44px auto 42px;
    max-width: 980px;
    height: 760px;
    background: transparent;
    overflow: visible;
    border: none;
    box-shadow: none;
}

.product-visual-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-visual-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(12px);
    transition:
        opacity 0.75s var(--ease),
        visibility 0.75s var(--ease),
        transform 0.75s var(--ease);
}

.product-visual-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    z-index: 2;
}

.product-visual-slide::after {
    display: none !important;
}

.product-visual-shape {
    position: relative;
    width: min(720px, 100%);
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    overflow: hidden;
    background: transparent;
    filter: drop-shadow(0 28px 55px rgba(36, 20, 13, 0.14));

    -webkit-mask-image: url("../images/slider.png");
    mask-image: url("../images/slider.png");

    -webkit-mask-size: contain;
    mask-size: contain;

    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;

    -webkit-mask-position: center;
    mask-position: center;
}

.product-visual-shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
}

.product-visual-caption {
    position: static;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid rgba(90, 45, 26, 0.12);
    border-radius: 999px;
    padding: 12px 18px;
    box-shadow: 0 14px 34px rgba(36, 20, 13, 0.08);
}

.product-visual-caption span {
    color: var(--primary);
    font-weight: 900;
    letter-spacing: 0.02em;
}

.product-visual-arrow {
    position: absolute;
    top: 48%;
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(90, 45, 26, 0.18);
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    box-shadow: 0 12px 30px rgba(36, 20, 13, 0.08);
}

.product-visual-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.product-visual-prev {
    left: 20px;
}

.product-visual-next {
    right: 20px;
}

.product-visual-dots {
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 9px;
}

.product-visual-dots button {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(90, 45, 26, 0.34);
    background: rgba(90, 45, 26, 0.16);
    padding: 0;
    cursor: pointer;
    transition: all 0.28s var(--ease);
}

.product-visual-dots button.active {
    width: 32px;
    background: var(--accent);
    border-color: var(--accent);
}

@media (max-width: 1024px) {
    .product-visual-slider {
        height: 650px;
    }

    .product-visual-shape {
        width: min(620px, 100%);
    }
}

@media (max-width: 820px) {
    .product-visual-slider {
        height: 520px;
        margin-top: 34px;
    }

    .product-visual-shape {
        width: min(500px, 100%);
    }

    .product-visual-arrow {
        display: none;
    }
}

@media (max-width: 520px) {
    .product-visual-slider {
        height: 420px;
    }

    .product-visual-shape {
        width: min(360px, 100%);
    }

    .product-visual-caption span {
        font-size: 13px;
    }
}
.product-range-section {
    background:
        radial-gradient(circle at 86% 8%, rgba(192, 57, 43, 0.07), transparent 30%),
        var(--cream);
}

.product-range-heading p {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.product-visual-slider {
    position: relative;
    margin: 42px auto 36px;
    max-width: 1080px;
    height: 430px;
    border-radius: 34px;
    overflow: hidden;
    background: var(--secondary);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.product-visual-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-visual-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.025);
    transition:
        opacity 0.85s var(--ease),
        visibility 0.85s var(--ease),
        transform 1.2s var(--ease);
}

.product-visual-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
    z-index: 2;
}

.product-visual-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-visual-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(36, 20, 13, 0.38), rgba(36, 20, 13, 0.08) 52%, rgba(36, 20, 13, 0.10)),
        linear-gradient(180deg, transparent, rgba(36, 20, 13, 0.34));
    pointer-events: none;
}

.product-visual-caption {
    position: absolute;
    left: 30px;
    bottom: 28px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.48);
    backdrop-filter: blur(12px);
    border-radius: 999px;
    padding: 12px 18px;
    box-shadow: 0 14px 34px rgba(36, 20, 13, 0.12);
}

.product-visual-caption span {
    color: var(--primary);
    font-weight: 900;
    letter-spacing: 0.02em;
}

.product-visual-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    transition:
        background 0.28s var(--ease),
        border-color 0.28s var(--ease),
        transform 0.28s var(--ease);
}

.product-visual-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.product-visual-prev {
    left: 22px;
}

.product-visual-next {
    right: 22px;
}

.product-visual-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 9px;
}

.product-visual-dots button {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.26);
    padding: 0;
    cursor: pointer;
    transition: all 0.28s var(--ease);
}

.product-visual-dots button.active {
    width: 32px;
    background: var(--accent);
    border-color: var(--accent);
}

@media (max-width: 820px) {
    .product-visual-slider {
        height: 360px;
        border-radius: 26px;
        margin-top: 34px;
    }

    .product-visual-arrow {
        display: none;
    }

    .product-visual-caption {
        left: 18px;
        bottom: 22px;
        padding: 10px 15px;
    }
}

@media (max-width: 520px) {
    .product-visual-slider {
        height: 300px;
        border-radius: 22px;
    }

    .product-visual-caption span {
        font-size: 13px;
    }
}
.product-range-section {
    background:
        radial-gradient(circle at 86% 8%, rgba(192, 57, 43, 0.07), transparent 30%),
        var(--cream);
}

.product-range-heading p {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.product-showcase-wrap {
    position: relative;
    margin: 46px auto 34px;
}

.product-showcase-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 48px) / 3);
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px 4px 28px;
    scrollbar-width: none;
}

.product-showcase-slider::-webkit-scrollbar {
    display: none;
}

.product-showcase-card {
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 46px rgba(36, 20, 13, 0.07);
    transition:
        transform 0.32s var(--ease),
        box-shadow 0.32s var(--ease),
        border-color 0.32s var(--ease);
}

.product-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(192, 57, 43, 0.22);
}

.product-showcase-image {
    height: 280px;
    overflow: hidden;
    background: var(--secondary);
}

.product-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.65s var(--ease);
}

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

.product-showcase-content {
    padding: 24px 24px 26px;
}

.product-showcase-content span {
    display: inline-flex;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-showcase-content h3 {
    color: var(--primary);
    font-size: 23px;
    line-height: 1.18;
    margin: 0 0 10px;
}

.product-showcase-content p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

.product-showcase-arrow {
    position: absolute;
    top: 44%;
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(90, 45, 26, 0.16);
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 32px rgba(36, 20, 13, 0.10);
    transition:
        background 0.28s var(--ease),
        color 0.28s var(--ease),
        transform 0.28s var(--ease);
}

.product-showcase-arrow:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.product-showcase-prev {
    left: -22px;
}

.product-showcase-next {
    right: -22px;
}

@media (max-width: 1024px) {
    .product-showcase-slider {
        grid-auto-columns: calc((100% - 24px) / 2);
    }

    .product-showcase-prev {
        left: -10px;
    }

    .product-showcase-next {
        right: -10px;
    }
}

@media (max-width: 820px) {
    .product-showcase-slider {
        grid-auto-columns: 82%;
        gap: 18px;
        padding-bottom: 18px;
    }

    .product-showcase-arrow {
        display: none;
    }

    .product-showcase-image {
        height: 240px;
    }
}

@media (max-width: 520px) {
    .product-showcase-slider {
        grid-auto-columns: 88%;
    }

    .product-showcase-image {
        height: 220px;
    }

    .product-showcase-content {
        padding: 20px;
    }
}
.product-range-heading h2 {
    margin-top: 0;
}

.product-range-heading p {
    max-width: 820px;
    margin: 14px auto 0;
}
.product-showcase-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-showcase-content {
    flex: 1;
    min-height: 145px;
}
.product-range-section {
    padding-top: 96px;
    padding-bottom: 96px;
}

.product-showcase-wrap {
    max-width: 1060px;
    margin: 42px auto 34px;
}

.product-showcase-image {
    height: 260px;
}
@media (max-width: 820px) {
    .product-range-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .product-showcase-image {
        height: 230px;
    }
}
.about-minimal-tagline {
    color: var(--primary);
    font-size: clamp(30px, 3.8vw, 48px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin: 18px 0 0;
    max-width: 620px;
}
.product-range-section {
    padding-bottom: 40px !important;
}

.product-range-section .section-action {
    margin-top: 22px !important;
    margin-bottom: 0 !important;
}

.product-range-section + .section {
    padding-top: 45px !important;
}
@media (max-width: 820px) {
    .product-range-section {
        padding-bottom: 42px !important;
    }

    .product-range-section + .section {
        padding-top: 45px !important;
    }
}
.product-showcase-slider {
    padding-bottom: 44px !important;
}

.product-showcase-card {
    background: var(--white) !important;
    border-radius: 28px !important;
    overflow: hidden !important;
    box-shadow: 0 18px 42px rgba(36, 20, 13, 0.055) !important;
    border: 1px solid rgba(90, 45, 26, 0.10) !important;
}

.product-showcase-card:hover {
    box-shadow: 0 24px 54px rgba(36, 20, 13, 0.075) !important;
    transform: translateY(-6px);
}

.product-showcase-card::before,
.product-showcase-card::after {
    display: none !important;
    content: none !important;
}

.product-showcase-image {
    background: #F8EFE5 !important;
}

.product-showcase-image img {
    display: block;
    background: transparent !important;
}
.product-showcase-card {
    box-shadow: 0 14px 34px rgba(36, 20, 13, 0.035) !important;
}

.product-showcase-card:hover {
    box-shadow: 0 20px 44px rgba(36, 20, 13, 0.055) !important;
}
.why-choose-grid {
    grid-template-columns: repeat(3, 1fr);
}

.why-choose-grid .value-card {
    min-height: 210px;
}

@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}
.about-minimal {
    background:
        radial-gradient(circle at 16% 18%, rgba(192, 57, 43, 0.07), transparent 34%),
        linear-gradient(135deg, #FFF8F1 0%, #FCF0E2 100%) !important;
}

.product-range-section {
    background:
        radial-gradient(circle at 86% 8%, rgba(192, 57, 43, 0.07), transparent 30%),
        #FFF5EC !important;
}

.why-section {
    background:
        radial-gradient(circle at 50% 0%, rgba(90, 45, 26, 0.04), transparent 34%),
        #FFFDF9 !important;
}

.industries-section {
    background:
        linear-gradient(135deg, #FCF0E2 0%, #F8E7D4 100%) !important;
}

.insights-section {
    background:
        radial-gradient(circle at 14% 12%, rgba(192, 57, 43, 0.06), transparent 30%),
        linear-gradient(135deg, #FFF8F1 0%, #FCECDC 100%) !important;
}

.cta-section {
    background:
        radial-gradient(circle at 80% 20%, rgba(192, 57, 43, 0.28), transparent 32%),
        linear-gradient(135deg, #5A2D1A 0%, #34170D 100%) !important;
}
.about-minimal,
.product-range-section,
.why-section,
.industries-section,
.insights-section {
    border-top: 1px solid rgba(90, 45, 26, 0.045);
}
.insights-section {
    background:
        radial-gradient(circle at 14% 12%, rgba(192, 57, 43, 0.06), transparent 30%),
        var(--secondary);
}

.insight-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 44px;
}

.insight-card {
    background: var(--white);
    border: 1px solid rgba(90, 45, 26, 0.10);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 46px rgba(36, 20, 13, 0.055);
    transition:
        transform 0.32s var(--ease),
        box-shadow 0.32s var(--ease),
        border-color 0.32s var(--ease);
}

.insight-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 58px rgba(36, 20, 13, 0.085);
    border-color: rgba(192, 57, 43, 0.20);
}

.insight-image {
    display: block;
    height: 245px;
    overflow: hidden;
    background: #F8EFE5;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s var(--ease);
}

.insight-card:hover .insight-image img {
    transform: scale(1.06);
}

.insight-content {
    padding: 24px 24px 28px;
}

.insight-content span {
    display: inline-flex;
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 11px;
}

.insight-content h3 {
    color: var(--primary);
    font-size: 23px;
    line-height: 1.22;
    margin: 0 0 12px;
}

.insight-content p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 18px;
}

.insight-link {
    color: var(--accent);
    font-weight: 900;
    font-size: 13px;
}

.insight-link:hover {
    color: var(--primary);
}

@media (max-width: 1024px) {
    .insight-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .insight-card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .insight-image {
        height: 220px;
    }

    .insight-content {
        padding: 22px;
    }
}
.industry-card {
    position: relative;
    padding-top: 34px;
}

.industry-card > span {
    display: none;
}

.industry-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 30% 20%, rgba(192, 57, 43, 0.12), transparent 55%),
        #FFF8F1;
    border: 1px solid rgba(90, 45, 26, 0.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 14px 32px rgba(36, 20, 13, 0.055);
}

.industry-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--accent);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.industry-card:hover .industry-icon {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
    transition: all 0.28s var(--ease);
}

.industry-card:hover .industry-icon svg {
    stroke: var(--white);
}

.industry-card h3 {
    margin-top: 0;
}
.home-faq-section {
    background:
        radial-gradient(circle at 86% 10%, rgba(192, 57, 43, 0.055), transparent 30%),
        #FFFDF9;
}

.home-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 22px;
    max-width: 1080px;
    margin: 42px auto 0;
}

.home-faq-grid details {
    background: var(--white);
    border: 1px solid rgba(90, 45, 26, 0.10);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 14px 36px rgba(36, 20, 13, 0.045);
    overflow: hidden;
}

.home-faq-grid summary {
    list-style: none;
    cursor: pointer;
    color: var(--primary);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.45;
    padding: 20px 52px 20px 22px;
    position: relative;
}

.home-faq-grid summary::-webkit-details-marker {
    display: none;
}

.home-faq-grid summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 18px;
    color: var(--accent);
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.home-faq-grid details[open] summary::after {
    content: "−";
}

.home-faq-grid p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
    padding: 0 22px 22px;
}

@media (max-width: 820px) {
    .home-faq-grid {
        grid-template-columns: 1fr;
        margin-top: 32px;
    }

    .home-faq-grid summary {
        font-size: 15px;
        padding: 18px 48px 18px 20px;
    }
}
.home-faq-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 1080px;
    margin: 42px auto 0;
    align-items: start;
}

.home-faq-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.home-faq-column details {
    background: var(--white);
    border: 1px solid rgba(90, 45, 26, 0.10);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 14px 36px rgba(36, 20, 13, 0.045);
    overflow: hidden;
}

.home-faq-column summary {
    list-style: none;
    cursor: pointer;
    color: var(--primary);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.45;
    padding: 20px 52px 20px 22px;
    position: relative;
}

.home-faq-column summary::-webkit-details-marker {
    display: none;
}

.home-faq-column summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 18px;
    color: var(--accent);
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.home-faq-column details[open] summary::after {
    content: "−";
}

.home-faq-column p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
    padding: 0 22px 22px;
}

@media (max-width: 820px) {
    .home-faq-columns {
        grid-template-columns: 1fr;
        margin-top: 32px;
    }

    .home-faq-column summary {
        font-size: 15px;
        padding: 18px 48px 18px 20px;
    }
}
.insights-section {
    padding-bottom: 78px !important;
}

.home-faq-section {
    background:
        radial-gradient(circle at 86% 10%, rgba(192, 57, 43, 0.055), transparent 30%),
        #FFFDF9 !important;
    padding-top: 82px !important;
    padding-bottom: 96px !important;
}

.home-faq-section .section-heading {
    margin-bottom: 0;
}

.home-faq-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 1080px;
    margin: 42px auto 0;
    align-items: start;
}

.home-faq-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.home-faq-column details {
    background: var(--white);
    border: 1px solid rgba(90, 45, 26, 0.10);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 14px 36px rgba(36, 20, 13, 0.045);
    overflow: hidden;
}

.home-faq-column summary {
    list-style: none;
    cursor: pointer;
    color: var(--primary);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.45;
    padding: 20px 52px 20px 22px;
    position: relative;
}

.home-faq-column summary::-webkit-details-marker {
    display: none;
}

.home-faq-column summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 18px;
    color: var(--accent);
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.home-faq-column details[open] summary::after {
    content: "−";
}

.home-faq-column p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
    padding: 0 22px 22px;
}

.home-faq-section .section-action {
    margin-top: 36px;
    margin-bottom: 0;
}

.home-faq-section + .cta-section {
    margin-top: 0 !important;
}
@media (max-width: 820px) {
    .home-faq-section {
        padding-top: 68px !important;
        padding-bottom: 78px !important;
    }

    .home-faq-columns {
        grid-template-columns: 1fr;
        margin-top: 32px;
    }

    .home-faq-column summary {
        font-size: 15px;
        padding: 18px 48px 18px 20px;
    }
}
.site-footer {
    background:
        radial-gradient(circle at 82% 12%, rgba(192, 57, 43, 0.20), transparent 32%),
        linear-gradient(135deg, #2A1209 0%, #1B0B05 100%);
    color: rgba(255, 255, 255, 0.78);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr 0.85fr 1.15fr;
    gap: 52px;
    padding: 72px 0 46px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
}

.footer-logo img {
    width: 168px;
    height: auto;
    display: block;
}

.footer-brand p {
    max-width: 330px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}

.footer-column h3 {
    color: var(--white);
    font-size: 18px;
    line-height: 1.2;
    margin: 0 0 22px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a,
.footer-column span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.25s var(--ease);
}

.footer-column a:hover {
    color: var(--white);
}

.footer-contact li {
    margin-bottom: 16px;
}

.footer-contact strong {
    display: block;
    color: var(--white);
    font-size: 13px;
    margin-bottom: 4px;
}

.footer-social {
    margin-top: 22px;
}

.footer-social h4 {
    color: var(--white);
    font-size: 15px;
    margin: 0 0 12px;
}

.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 13px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 700;
}

.footer-social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding: 22px 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-legal-links a,
.footer-bottom p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    margin: 0;
    text-decoration: none;
}

.footer-legal-links a:hover {
    color: var(--white);
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .footer-main {
        grid-template-columns: 1fr;
        padding: 56px 0 34px;
        gap: 34px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .footer-legal-links {
        flex-wrap: wrap;
        gap: 14px;
    }

    .footer-logo img {
        width: 150px;
    }
}
.footer-logo img {
    width: 168px;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}
@media (max-width: 640px) {
    .footer-logo img {
        width: 150px;
    }
}
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.footer-contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
}

.footer-contact-icon svg {
    width: 19px;
    height: 19px;
    stroke: var(--white);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-contact-text {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.footer-contact-text strong {
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    margin: 0;
    white-space: nowrap;
}

.footer-contact-text strong::after {
    content: ":";
}

.footer-contact-text span,
.footer-contact-text a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    white-space: nowrap;
}

.footer-contact-text a:hover {
    color: var(--white);
}

.footer-social {
    margin-top: 24px;
}

.footer-social h4 {
    color: var(--white);
    font-size: 15px;
    margin: 0 0 13px;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.82);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.25s var(--ease),
        border-color 0.25s var(--ease),
        color 0.25s var(--ease),
        transform 0.25s var(--ease);
}

.footer-social-icons a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-social-icons svg {
    width: 18px;
    height: 18px;
}

.footer-social-icons a[aria-label="Instagram"] svg {
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
@media (max-width: 640px) {
    .footer-contact-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .footer-contact-text strong::after {
        content: "";
    }

    .footer-contact-text span,
    .footer-contact-text a {
        white-space: normal;
    }
}
.site-footer {
    font-weight: 500;
}

.footer-brand p {
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.72) !important;
}

.footer-column h3 {
    font-size: 19px !important;
    font-weight: 850 !important;
    letter-spacing: -0.015em;
}

.footer-column a,
.footer-column span,
.footer-contact-text,
.footer-bottom p,
.footer-legal-links a {
    font-weight: 600 !important;
}

.footer-column ul li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.70) !important;
    transition:
        color 0.28s var(--ease),
        transform 0.28s var(--ease);
}

.footer-column ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    border-radius: 999px;
    background: var(--accent);
    transition: width 0.28s var(--ease);
}

.footer-column ul li a:hover {
    color: var(--white) !important;
    transform: translateX(5px);
}

.footer-column ul li a:hover::after {
    width: 100%;
}

.footer-column ul li a:active {
    transform: translateX(5px) scale(0.97);
}
.footer-contact-list li {
    transition: transform 0.28s var(--ease);
}

.footer-contact-list li:hover {
    transform: translateX(4px);
}

.footer-contact-icon {
    transition:
        background 0.28s var(--ease),
        border-color 0.28s var(--ease),
        transform 0.28s var(--ease),
        box-shadow 0.28s var(--ease);
}

.footer-contact-list li:hover .footer-contact-icon {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(192, 57, 43, 0.22);
}

.footer-contact-list li:hover .footer-contact-text {
    color: var(--white) !important;
}

.footer-contact-text {
    color: rgba(255, 255, 255, 0.76) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    transition: color 0.28s var(--ease);
}

.footer-contact-icon svg {
    stroke-width: 2 !important;
}
.footer-social h4 {
    font-size: 16px !important;
    font-weight: 850 !important;
}

.footer-social-icons a {
    position: relative;
    overflow: hidden;
}

.footer-social-icons a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--accent);
    transform: scale(0);
    transition: transform 0.28s var(--ease);
    z-index: 0;
}

.footer-social-icons a svg {
    position: relative;
    z-index: 1;
    transition: transform 0.28s var(--ease);
}

.footer-social-icons a:hover::before {
    transform: scale(1);
}

.footer-social-icons a:hover {
    border-color: var(--accent) !important;
    color: var(--white) !important;
    transform: translateY(-4px);
}

.footer-social-icons a:hover svg {
    transform: scale(1.08);
}

.footer-social-icons a:active {
    transform: translateY(-2px) scale(0.94);
}
.footer-legal-links a {
    position: relative;
    transition:
        color 0.28s var(--ease),
        transform 0.28s var(--ease);
}

.footer-legal-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.28s var(--ease);
}

.footer-legal-links a:hover {
    color: var(--white) !important;
    transform: translateY(-2px);
}

.footer-legal-links a:hover::after {
    width: 100%;
}

.footer-legal-links a:active {
    transform: translateY(0) scale(0.97);
}
.site-footer {
    font-weight: 500;
}

.footer-main {
    padding-top: 72px !important;
    padding-bottom: 48px !important;
    align-items: flex-start;
}

.footer-logo img {
    width: 175px !important;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 15px !important;
    line-height: 1.75 !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.76) !important;
    max-width: 360px;
}

.footer-column h3 {
    font-size: 18px !important;
    font-weight: 850 !important;
    color: #ffffff !important;
    margin-bottom: 24px !important;
}

.footer-column ul li {
    margin-bottom: 14px !important;
}

.footer-column ul li a {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.74) !important;
}

.footer-column ul li a:hover {
    color: #ffffff !important;
    transform: translateX(5px);
}

.footer-contact-text {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.76) !important;
}

.footer-contact-icon {
    width: 40px !important;
    height: 40px !important;
    flex: 0 0 40px !important;
    border-radius: 13px !important;
}

.footer-contact-icon svg {
    width: 19px !important;
    height: 19px !important;
    stroke-width: 2 !important;
}

.footer-social h4 {
    font-size: 16px !important;
    font-weight: 850 !important;
    color: #ffffff !important;
}

.footer-social-icons a {
    width: 40px !important;
    height: 40px !important;
}

.footer-social-icons svg {
    width: 18px !important;
    height: 18px !important;
}

.footer-bottom {
    padding-top: 24px !important;
    padding-bottom: 30px !important;
}

.footer-legal-links a,
.footer-bottom p {
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.68) !important;
}

.footer-legal-links a:hover {
    color: #ffffff !important;
}
.footer-column ul li a {
    position: relative;
    transition:
        color 0.28s var(--ease),
        transform 0.28s var(--ease);
}

.footer-column ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.28s var(--ease);
}

.footer-column ul li a:hover::after {
    width: 100%;
}
.footer-main {
    padding-top: 62px !important;
    padding-bottom: 26px !important;
    align-items: flex-start !important;
}

.footer-social {
    margin-top: 22px !important;
    margin-bottom: 0 !important;
}

.footer-social-icons {
    margin-bottom: 0 !important;
}

.footer-bottom {
    padding-top: 18px !important;
    padding-bottom: 22px !important;
}

.site-footer {
    min-height: auto !important;
}
.footer-main {
    padding-top: 58px !important;
    padding-bottom: 18px !important;
}

.footer-bottom {
    padding-top: 16px !important;
    padding-bottom: 20px !important;
}
@media (max-width: 640px) {
    .footer-main {
        padding-top: 48px !important;
        padding-bottom: 22px !important;
    }

    .footer-bottom {
        padding-top: 18px !important;
        padding-bottom: 24px !important;
    }
}
.product-showcase-wrap {
    position: relative;
    max-width: 1240px;
    margin: 42px auto 34px;
    padding: 0 70px;
}

.product-showcase-slider {
    overflow-x: auto;
    overflow-y: visible;
}

.product-showcase-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(90, 45, 26, 0.12);
    background: rgba(255, 255, 255, 0.96);
    color: var(--primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 0;
    transform: translateY(-50%);
    box-shadow: 0 16px 36px rgba(36, 20, 13, 0.12);
    transition:
        background 0.28s var(--ease),
        color 0.28s var(--ease),
        border-color 0.28s var(--ease),
        transform 0.28s var(--ease);
}

.product-showcase-arrow svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-showcase-prev {
    left: 0;
}

.product-showcase-next {
    right: 0;
}

.product-showcase-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-50%) scale(1.06);
}

.product-showcase-arrow:active {
    transform: translateY(-50%) scale(0.94);
}
@media (max-width: 820px) {
    .product-showcase-wrap {
        padding: 0;
    }

    .product-showcase-arrow {
        display: none;
    }
}
.product-showcase-arrow {
    width: 46px !important;
    height: 46px !important;
    border-radius: 999px;
    padding: 0 !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(90, 45, 26, 0.14);
    color: var(--primary);
    box-shadow: 0 14px 34px rgba(36, 20, 13, 0.12);
}

.product-showcase-arrow svg {
    width: 21px !important;
    height: 21px !important;
    display: block;
    stroke: currentColor;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Optical centering */
.product-showcase-prev svg {
    transform: translateX(-1px);
}

.product-showcase-next svg {
    transform: translateX(1px);
}

.product-showcase-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-50%) scale(1.05);
}


.hero-arrow:hover {
    background: transparent !important;
    color: #ffffff !important;
    opacity: 1 !important;
}

.hero-arrow:active {
    transform: translateY(-50%) scale(0.92) !important;
}

.hero-arrow-prev {
    left: 22px !important;
}

.hero-arrow-next {
    right: 22px !important;
}
.hero-slider .hero-arrow {
    width: auto !important;
    height: auto !important;
    min-width: auto !important;
    min-height: auto !important;

    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;

    color: rgba(255, 255, 255, 0.28) !important;
    opacity: 0.45 !important;

    font-size: 58px !important;
    font-weight: 300 !important;
    line-height: 1 !important;

    padding: 0 !important;
    margin: 0 !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    transition:
        color 0.28s ease,
        opacity 0.28s ease,
        transform 0.28s ease !important;
}

.hero-slider .hero-arrow:hover {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;

    color: #ffffff !important;
    opacity: 1 !important;
}

.hero-slider .hero-arrow-prev {
    left: 24px !important;
}

.hero-slider .hero-arrow-next {
    right: 24px !important;
}

.hero-slider .hero-arrow-prev:hover {
    transform: translateY(-50%) translateX(-3px) !important;
}

.hero-slider .hero-arrow-next:hover {
    transform: translateY(-50%) translateX(3px) !important;
}

.hero-slider .hero-arrow:focus,
.hero-slider .hero-arrow:focus-visible {
    outline: none !important;
    background: transparent !important;
    box-shadow: none !important;
}
.hero-slider button.hero-arrow,
.hero-slider .hero-arrow,
button.hero-arrow {
    position: absolute !important;
    top: 50% !important;
    z-index: 10 !important;

    width: 42px !important;
    height: 70px !important;
    min-width: 0 !important;
    min-height: 0 !important;

    padding: 0 !important;
    margin: 0 !important;

    background: none !important;
    background-color: transparent !important;
    background-image: none !important;

    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;

    appearance: none !important;
    -webkit-appearance: none !important;

    color: rgba(255, 255, 255, 0.28) !important;
    opacity: 0.45 !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    cursor: pointer !important;

    transform: translateY(-50%) !important;

    transition:
        color 0.28s ease,
        opacity 0.28s ease,
        transform 0.28s ease !important;
}

.hero-slider button.hero-arrow::before,
.hero-slider button.hero-arrow::after,
.hero-slider .hero-arrow::before,
.hero-slider .hero-arrow::after,
button.hero-arrow::before,
button.hero-arrow::after {
    display: none !important;
    content: none !important;
    background: none !important;
    border: 0 !important;
    box-shadow: none !important;
}

.hero-slider .hero-arrow svg,
button.hero-arrow svg {
    width: 36px !important;
    height: 36px !important;
    display: block !important;
    stroke: currentColor !important;
    stroke-width: 2.2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    fill: none !important;
}

.hero-slider .hero-arrow-prev {
    left: 22px !important;
}

.hero-slider .hero-arrow-next {
    right: 22px !important;
}

.hero-slider .hero-arrow:hover,
button.hero-arrow:hover {
    background: none !important;
    background-color: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    color: #ffffff !important;
    opacity: 1 !important;
}

.hero-slider .hero-arrow-prev:hover {
    transform: translateY(-50%) translateX(-4px) !important;
}

.hero-slider .hero-arrow-next:hover {
    transform: translateY(-50%) translateX(4px) !important;
}

.hero-slider .hero-arrow:focus,
.hero-slider .hero-arrow:focus-visible,
button.hero-arrow:focus,
button.hero-arrow:focus-visible {
    outline: none !important;
    background: none !important;
    box-shadow: none !important;
}
.footer-contact-icon {
    width: 24px !important;
    height: 24px !important;
    flex: 0 0 24px !important;

    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.footer-contact-icon svg {
    width: 22px !important;
    height: 22px !important;
    stroke: rgba(255, 255, 255, 0.82) !important;
    stroke-width: 2 !important;
}

.footer-contact-list li {
    gap: 14px !important;
}

.footer-contact-list li:hover .footer-contact-icon {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    transform: translateX(2px) !important;
}

.footer-contact-list li:hover .footer-contact-icon svg {
    stroke: var(--accent) !important;
}

.footer-contact-list li:hover .footer-contact-text {
    color: #ffffff !important;
}
.footer-contact-list li {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    margin: 0 0 22px !important;
}

.footer-contact-icon {
    width: 26px !important;
    height: 26px !important;
    flex: 0 0 26px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}

.footer-contact-icon svg {
    width: 26px !important;
    height: 26px !important;
    display: block !important;
    vertical-align: middle !important;
}

.footer-contact-text {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 26px !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}
.inner-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(36, 20, 13, 0.82), rgba(36, 20, 13, 0.52)),
        url("../images/home-hero-banner.jpg") center/cover no-repeat;
}

.inner-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.12), transparent 28%),
        linear-gradient(180deg, transparent, rgba(36, 20, 13, 0.22));
    pointer-events: none;
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 900px;
}

.inner-hero-content h1 {
    font-size: clamp(46px, 5.8vw, 78px);
    line-height: 1.04;
    letter-spacing: -0.055em;
    margin: 0 0 18px;
    color: var(--white);
}

.inner-hero-content p {
    max-width: 720px;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.84);
    margin: 0;
}

.about-intro-section {
    background:
        radial-gradient(circle at 12% 18%, rgba(192, 57, 43, 0.07), transparent 34%),
        linear-gradient(135deg, #FFF8F1 0%, #FCF0E2 100%);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 72px;
    align-items: start;
}

.about-intro-left h2 {
    color: var(--primary);
    font-size: clamp(34px, 4.2vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.045em;
    margin: 0;
}

.about-intro-right {
    position: relative;
    padding-left: 34px;
}

.about-intro-right::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 3px;
    height: calc(100% - 16px);
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent), rgba(192, 57, 43, 0.10));
}

.about-intro-right p {
    color: var(--text);
    font-size: 17px;
    line-height: 1.9;
    text-align: justify;
    margin: 0 0 18px;
}

.about-intro-right p:last-child {
    margin-bottom: 0;
}

.about-focus-section {
    background:
        radial-gradient(circle at 88% 8%, rgba(192, 57, 43, 0.055), transparent 30%),
        #FFFDF9;
}

.about-focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 44px;
}

.about-focus-card {
    background: var(--white);
    border: 1px solid rgba(90, 45, 26, 0.10);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 18px 46px rgba(36, 20, 13, 0.055);
    transition:
        transform 0.32s var(--ease),
        box-shadow 0.32s var(--ease),
        border-color 0.32s var(--ease);
}

.about-focus-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 58px rgba(36, 20, 13, 0.085);
    border-color: rgba(192, 57, 43, 0.20);
}

.about-focus-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #FFF5EC;
    border: 1px solid rgba(90, 45, 26, 0.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.about-focus-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--accent);
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-focus-card h3 {
    color: var(--primary);
    font-size: 23px;
    line-height: 1.2;
    margin: 0 0 12px;
}

.about-focus-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.about-product-section {
    background:
        linear-gradient(135deg, #FCF0E2 0%, #F8E7D4 100%);
}

.about-product-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.about-product-content h2,
.about-buyer-content h2 {
    color: var(--primary);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.12;
    letter-spacing: -0.045em;
    margin: 0 0 18px;
}

.about-product-content p,
.about-buyer-content p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
    margin: 0 0 26px;
}

.about-product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.about-product-list span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 9px 15px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid rgba(90, 45, 26, 0.10);
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 10px 26px rgba(36, 20, 13, 0.045);
}

.about-product-visual,
.about-buyer-visual {
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 24px 58px rgba(36, 20, 13, 0.11);
    border: 1px solid rgba(90, 45, 26, 0.10);
    background: var(--secondary);
}

.about-product-visual img,
.about-buyer-visual img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s var(--ease);
}

.about-product-visual:hover img,
.about-buyer-visual:hover img {
    transform: scale(1.045);
}

.about-process-section {
    background:
        radial-gradient(circle at 12% 8%, rgba(192, 57, 43, 0.055), transparent 30%),
        #FFF8F1;
}

.about-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 44px;
}

.about-process-card {
    background: var(--white);
    border: 1px solid rgba(90, 45, 26, 0.10);
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 16px 42px rgba(36, 20, 13, 0.05);
    transition:
        transform 0.32s var(--ease),
        box-shadow 0.32s var(--ease);
}

.about-process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 52px rgba(36, 20, 13, 0.08);
}

.about-process-card span {
    display: inline-flex;
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
}

.about-process-card h3 {
    color: var(--primary);
    font-size: 21px;
    line-height: 1.24;
    margin: 0 0 10px;
}

.about-process-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.68;
    margin: 0;
}

.about-buyer-section {
    background:
        radial-gradient(circle at 88% 14%, rgba(192, 57, 43, 0.07), transparent 30%),
        #FFFDF9;
}

.about-buyer-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.about-buyer-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.about-buyer-points div {
    background: var(--white);
    border: 1px solid rgba(90, 45, 26, 0.10);
    border-radius: 18px;
    padding: 16px 18px;
    color: var(--primary);
    font-size: 15px;
    font-weight: 850;
    box-shadow: 0 12px 32px rgba(36, 20, 13, 0.045);
}

.about-cta-section {
    background:
        radial-gradient(circle at 80% 20%, rgba(192, 57, 43, 0.28), transparent 32%),
        linear-gradient(135deg, #5A2D1A 0%, #34170D 100%);
    padding: 82px 0;
}

.about-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
}

.about-cta-box h2 {
    color: var(--white);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.12;
    letter-spacing: -0.04em;
    margin: 0 0 14px;
}

.about-cta-box p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 1024px) {
    .about-intro-grid,
    .about-product-grid,
    .about-buyer-grid {
        grid-template-columns: 1fr;
    }

    .about-focus-grid,
    .about-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-product-visual img,
    .about-buyer-visual img {
        height: 430px;
    }
}

@media (max-width: 820px) {
    .inner-hero {
        min-height: 360px;
    }

    .about-intro-right {
        padding-left: 24px;
    }

    .about-intro-right p {
        text-align: left;
        font-size: 16px;
    }

    .about-focus-grid,
    .about-process-grid,
    .about-buyer-points {
        grid-template-columns: 1fr;
    }

    .about-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 520px) {
    .about-focus-card,
    .about-process-card {
        padding: 24px;
    }

    .about-product-visual,
    .about-buyer-visual {
        border-radius: 26px;
    }

    .about-product-visual img,
    .about-buyer-visual img {
        height: 320px;
    }
}
.page-breadcrumb-hero {
    min-height: 300px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(36, 20, 13, 0.82), rgba(36, 20, 13, 0.54)),
        url("../images/home-hero-banner.jpg") center/cover no-repeat;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-breadcrumb-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.12), transparent 30%),
        linear-gradient(180deg, transparent, rgba(36, 20, 13, 0.18));
    pointer-events: none;
}

.page-breadcrumb-hero .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    font-weight: 700;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: color 0.25s var(--ease);
}

.breadcrumb-nav a:hover {
    color: var(--white);
}

.breadcrumb-nav span {
    color: rgba(255, 255, 255, 0.62);
}

.page-breadcrumb-content h1 {
    color: var(--white);
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.055em;
    margin: 0 0 14px;
}

.page-breadcrumb-content p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

.about-history-section {
    background:
        radial-gradient(circle at 14% 18%, rgba(192, 57, 43, 0.07), transparent 34%),
        linear-gradient(135deg, #FFF8F1 0%, #FCF0E2 100%);
}

.about-history-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: start;
}

.about-history-title h2 {
    color: var(--primary);
    font-size: clamp(38px, 4.5vw, 60px);
    line-height: 1.08;
    letter-spacing: -0.05em;
    margin: 0;
}

.about-history-content {
    position: relative;
    padding-left: 34px;
}

.about-history-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 3px;
    height: calc(100% - 16px);
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent), rgba(192, 57, 43, 0.10));
}

.about-history-content p {
    color: var(--text);
    font-size: 17px;
    line-height: 1.9;
    text-align: justify;
    margin: 0 0 18px;
}

.about-history-content p:last-child {
    margin-bottom: 0;
}

.about-mission-vision-section {
    background:
        radial-gradient(circle at 86% 10%, rgba(192, 57, 43, 0.055), transparent 30%),
        #FFFDF9;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.mission-vision-card {
    background: var(--white);
    border: 1px solid rgba(90, 45, 26, 0.10);
    border-radius: 30px;
    padding: 42px;
    box-shadow: 0 18px 46px rgba(36, 20, 13, 0.055);
    transition:
        transform 0.32s var(--ease),
        box-shadow 0.32s var(--ease),
        border-color 0.32s var(--ease);
}

.mission-vision-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 58px rgba(36, 20, 13, 0.085);
    border-color: rgba(192, 57, 43, 0.20);
}

.mission-vision-card h2 {
    color: var(--primary);
    font-size: clamp(32px, 3.5vw, 48px);
    line-height: 1.12;
    letter-spacing: -0.045em;
    margin: 0 0 18px;
}

.mission-vision-card p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.core-values-section {
    background:
        linear-gradient(135deg, #FCF0E2 0%, #F8E7D4 100%);
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 44px;
}

.core-value-card {
    background: var(--white);
    border: 1px solid rgba(90, 45, 26, 0.10);
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 16px 42px rgba(36, 20, 13, 0.05);
    transition:
        transform 0.32s var(--ease),
        box-shadow 0.32s var(--ease),
        border-color 0.32s var(--ease);
}

.core-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 52px rgba(36, 20, 13, 0.08);
    border-color: rgba(192, 57, 43, 0.20);
}

.core-value-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: #FFF5EC;
    border: 1px solid rgba(90, 45, 26, 0.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.core-value-icon svg {
    width: 29px;
    height: 29px;
    stroke: var(--accent);
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.core-value-card h3 {
    color: var(--primary);
    font-size: 22px;
    line-height: 1.22;
    margin: 0 0 12px;
}

.core-value-card p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.72;
    margin: 0;
}

@media (max-width: 1024px) {
    .about-history-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    .page-breadcrumb-hero {
        min-height: 240px;
    }

    .about-history-content {
        padding-left: 24px;
    }

    .about-history-content p {
        text-align: left;
        font-size: 16px;
    }

    .mission-vision-grid,
    .core-values-grid {
        grid-template-columns: 1fr;
    }

    .mission-vision-card {
        padding: 30px;
    }
}

@media (max-width: 520px) {
    .page-breadcrumb-hero {
        min-height: 220px;
    }

    .breadcrumb-nav {
        margin-bottom: 16px;
    }

    .core-value-card {
        padding: 24px;
    }
}
.page-breadcrumb-hero {
    min-height: 250px !important;
}

.page-breadcrumb-content h1 {
    margin-bottom: 0 !important;
}

@media (max-width: 820px) {
    .page-breadcrumb-hero {
        min-height: 220px !important;
    }
}

@media (max-width: 520px) {
    .page-breadcrumb-hero {
        min-height: 200px !important;
    }
}
.mission-vision-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background:
        radial-gradient(circle at 28% 20%, rgba(192, 57, 43, 0.14), transparent 58%),
        #FFF5EC;
    border: 1px solid rgba(90, 45, 26, 0.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    box-shadow: 0 14px 34px rgba(36, 20, 13, 0.055);
    transition:
        background 0.28s var(--ease),
        border-color 0.28s var(--ease),
        transform 0.28s var(--ease),
        box-shadow 0.28s var(--ease);
}

.mission-vision-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent);
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.28s var(--ease);
}

.mission-vision-card:hover .mission-vision-icon {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(192, 57, 43, 0.18);
}

.mission-vision-card:hover .mission-vision-icon svg {
    stroke: var(--white);
}

.mission-vision-card h2 {
    margin-top: 0;
}