@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
    --bg-page: #ffffff;
    --bg-dark: #ffffff;
    --bg-card: #ffffff;
    --bg-section: #f8f7f4;
    --text-main: #1c1c1c;
    --text-muted: #5a5a5a;
    --accent: #A68946;
    --accent-hover: #8a7340;
    --accent-green: #2D4028;
    --accent-gradient: linear-gradient(135deg, #A68946 0%, #c4a55a 50%, #8a7340 100%);
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: #e8e4dc;
    --border-subtle: #e8e4dc;
    --radius: 12px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-glow: var(--shadow-card);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.skip-link {
    position: absolute; top: -100px; left: 1rem; z-index: 10001;
    background: var(--accent-green); color: #ffffff; padding: .75rem 1.25rem;
    border-radius: 8px; font-weight: 700; transition: top .2s;
}
.skip-link:focus { top: 1rem; }

h1, h2, .section-header h2, .hero h1, .page-header h1 {
    font-family: 'Playfair Display', serif;
}

a:focus-visible, button:focus-visible, .product-card:focus-visible {
    outline: 2px solid var(--accent-green);
    outline-offset: 3px;
}

/* ── Utility ── */
.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: .75rem; }
.section-header p { color: var(--text-muted); font-size: 1.15rem; }

/* ── Buttons ── */
.btn-primary {
    background: var(--accent-gradient);
    color: #ffffff;
    padding: .8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-family: inherit;
    font-size: .95rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform .3s, box-shadow .3s;
    letter-spacing: .3px;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(200, 164, 85, .3);
}

.btn-secondary {
    background: #ffffff;
    color: var(--text-main);
    padding: .8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: inherit;
    font-size: .95rem;
    border: 1px solid var(--accent-green);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .3s;
}
.btn-secondary:hover { background: #f8f7f4; border-color: var(--accent); color: var(--accent-green); }

/* ── Top Contact Strip ── */
.top-contact-strip {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1001;
    background: var(--accent-green);
    color: #f0ece4;
    font-size: .82rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.top-contact-inner {
    max-width: 1240px; margin: 0 auto; padding: .45rem 5%;
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
    gap: .75rem 1.75rem;
}
.top-contact-inner a { color: #f0ece4; text-decoration: underline; text-underline-offset: 2px; }
.top-contact-inner a:hover { color: #fff; }

/* ── Navbar ── */
.navbar {
    position: fixed; top: 34px; left: 0; width: 100%; z-index: 1000;
    padding: .75rem 5%;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: background .35s, box-shadow .35s;
}
.navbar.scrolled { background: #ffffff; box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1); }

.logo-container {
    display: flex; align-items: center;
    padding: 2px 0; border-radius: 0;
    transition: opacity .3s;
}
.logo-container:hover { opacity: .9; }
.logo-full { height: 52px; width: auto; max-width: 220px; object-fit: contain; }
.logo-icon { display: none; height: 40px; width: auto; }

.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a {
    color: var(--text-main); font-weight: 500; font-size: .95rem;
    position: relative; transition: color .3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a.active { font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.nav-whatsapp {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; min-width: 44px; min-height: 44px;
    background: #25D366; color: #fff; border-radius: 50%;
    transition: transform .3s, box-shadow .3s, background-color .3s;
}
.nav-whatsapp svg { width: 22px; height: 22px; fill: #fff; }
.nav-whatsapp:hover { background: #20ba5a; transform: scale(1.05); box-shadow: 0 4px 14px rgba(37,211,102,.35); color: #fff; }
.nav-mobile-brochure { display: none; }
.nav-mobile-whatsapp { display: none; }
.nav-brochure { flex-shrink: 0; }
.nav-links a::after {
    content: ''; position: absolute; bottom: -5px; left: 0;
    width: 0; height: 2px; background: var(--accent-gradient);
    transition: width .3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.hamburger {
    display: none; background: none; border: none; cursor: pointer;
    padding: 10px; min-width: 44px; min-height: 44px;
}
.hamburger span {
    display: block; width: 26px; height: 2px; background: var(--text-main);
    margin: 6px 0; transition: .3s;
}

/* ── Hero ── */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; padding: 0 5%;
}
.slider {
    position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.slider::after {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(255,255,255,.88) 0%, rgba(248,247,244,.72) 100%);
}
.slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.2s ease, transform 6s linear;
    transform: scale(1.08);
}
.slide.active { opacity: 1; transform: scale(1); }

.hero-content {
    position: relative; z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
    padding: 3.5rem; border-radius: 24px;
    max-width: 680px;
    animation: fadeUp .8s ease backwards;
}
.hero h1 { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800; line-height: 1.08; margin-bottom: 1.25rem; color: var(--text-main); }
.hero p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.certifications { display: flex; gap: 1rem; }
.certifications img {
    height: 42px; background: rgba(255,255,255,.9);
    padding: 5px; border-radius: 6px; opacity: .85; transition: opacity .3s;
}
.certifications img:hover { opacity: 1; }

/* ── Page Header (sub-pages) ── */
.page-header {
    padding: clamp(8rem, 18vw, 11rem) 5% 4rem;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-section) 100%);
    position: relative;
}
.page-header::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 1px; background: var(--accent-gradient); opacity: .3;
}
.page-header h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: .5rem; }
.page-header .breadcrumb { color: var(--text-muted); font-size: .95rem; }
.page-header .breadcrumb a { color: var(--accent); }
.page-header .breadcrumb ol { list-style: none; display: inline-flex; flex-wrap: wrap; gap: .35rem; justify-content: center; }
.page-header .breadcrumb li:not(:last-child)::after { content: '/'; margin-left: .35rem; color: var(--text-muted); }
.page-intro { max-width: 820px; margin: 0 auto 3rem; text-align: center; color: var(--text-muted); font-size: 1.05rem; line-height: 1.75; }

/* ── About Section ── */
.about-section { padding: 6rem 0; background: var(--bg-page); }
.about-text h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1.5rem; }
.about-text p { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 1.25rem; max-width: 820px; line-height: 1.75; }

.stats { display: flex; gap: 3rem; margin-top: 2.5rem; flex-wrap: wrap; }
.stat-item .stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: .35rem;
}
.stat-item span { color: var(--text-muted); font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; font-size: .85rem; }

/* ── Product Grid ── */
.products-section {
    padding: 6rem 0 8rem;
    background: linear-gradient(180deg, var(--bg-page) 0%, var(--bg-section) 100%);
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
}
a.product-card {
    display: block;
    color: inherit;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .35s, box-shadow .35s, border-color .35s;
}
article.product-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .35s, box-shadow .35s, border-color .35s;
}
article.product-card .card-quote-link { padding: 0 1.75rem 1.25rem; display: inline-flex; }
.product-card-link { display: block; color: inherit; }
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .35s, box-shadow .35s, border-color .35s;
}
a.product-card:hover, article.product-card:hover, .product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card), 0 20px 40px rgba(0,0,0,.1);
    border-color: rgba(166,137,70,.45);
}
.card-quote-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--accent-green); font-weight: 600; font-size: .85rem;
    margin-top: .75rem; transition: gap .3s;
}
.card-quote-link:hover { gap: 10px; color: var(--accent); }
.card-img-wrapper {
    height: 240px; overflow: hidden; background: #fff;
    display: flex; align-items: center; justify-content: center;
}
.card-img-wrapper img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s;
}
.product-card:hover .card-img-wrapper img { transform: scale(1.08); }
article.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card), 0 20px 40px rgba(0,0,0,.1); border-color: rgba(166,137,70,.45); }
.card-content { padding: 1.75rem; }
.card-content h3 { font-size: 1.25rem; margin-bottom: .75rem; font-weight: 600; }
.card-content p { color: var(--text-muted); font-size: .95rem; line-height: 1.6; }
.card-content .view-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--accent); font-weight: 600; font-size: .9rem;
    margin-top: 1rem; transition: gap .3s;
}
.card-content .view-link:hover { gap: 10px; }

/* ── About Page Content ── */
.about-page-content { padding: 4rem 0 6rem; }
.about-page-content .about-body { max-width: 860px; margin: 0 auto; }
.about-page-content .about-body p {
    font-size: 1.1rem; color: var(--text-muted); line-height: 1.85;
    margin-bottom: 1.5rem;
}

/* ── Contact ── */
.contact-section { padding: 4rem 0 6rem; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: start; }
.contact-map iframe { width: 100%; height: 450px; border: none; border-radius: var(--radius); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form label {
    font-size: .9rem; font-weight: 500; color: var(--text-main); margin-bottom: -.5rem;
}
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; margin-bottom: 2.5rem; }
.contact-card {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: var(--radius); padding: 1.5rem; text-align: center;
}
.contact-card h3 { font-size: 1rem; color: var(--accent); margin-bottom: .5rem; font-family: 'Outfit', sans-serif; }
.contact-card p, .contact-card a { color: var(--text-muted); font-size: .95rem; }
.contact-card a:hover { color: var(--accent); }

.contact-form input, .contact-form select, .contact-form textarea {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: 12px; padding: 1rem 1.25rem; color: var(--text-main);
    font-family: inherit; font-size: 1rem; outline: none;
    transition: border-color .3s;
}
.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23A68946' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 1.5rem;
    cursor: pointer;
    padding-right: 3rem;
}
.contact-form select option {
    background: var(--bg-card);
    color: var(--text-main);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--accent); }
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-muted); }

.form-actions-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
}
@media (max-width: 480px) {
    .form-actions-row {
        grid-template-columns: 1fr;
    }
}

/* ── WhatsApp Buttons & Widget ── */
.btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: .8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-family: inherit;
    font-size: .95rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform .3s, box-shadow .3s, background-color .3s;
    letter-spacing: .3px;
    text-align: center;
}
.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, .3);
    color: #fff;
}
.btn-whatsapp svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s;
    animation: bounceIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both, pulseGlow 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background: #20ba5a;
    color: #fff;
}
.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

/* Pulsing & Entrance Animations */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
@keyframes bounceIn {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* ── Footer ── */
.footer { padding: 2rem 5%; background: #f3f1ec; }
.footer-glass {
    max-width: 1240px; margin: 0 auto;
    background: #ffffff; border: 1px solid var(--border-subtle);
    border-radius: 24px; padding: 3.5rem;
    box-shadow: var(--shadow-card);
}
.footer-content { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-info { max-width: 400px; }
.footer-logo {
    height: 48px; width: auto; max-width: 240px; object-fit: contain;
    margin-bottom: 1.25rem;
}
.footer-tagline { color: var(--accent); font-size: .8rem; letter-spacing: .5px; margin-bottom: .75rem; text-transform: uppercase; }
.footer-info p { color: var(--text-muted); font-size: .95rem; }

.footer-links h3, .footer-contact h3 { margin-bottom: 1.25rem; font-size: 1.15rem; color: var(--accent); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: var(--text-muted); transition: color .3s; font-size: .95rem; }
.footer-links a:hover { color: var(--accent); }

.footer-contact p { color: var(--text-muted); margin-bottom: .5rem; font-size: .9rem; display: flex; align-items: flex-start; gap: 8px; }
.footer-contact a { color: var(--accent); transition: color .3s; }
.footer-contact a:hover { color: var(--accent-hover); }

.footer-certs { display: flex; gap: .75rem; margin-top: 1rem; }
.footer-certs img { height: 40px; background: rgba(255,255,255,.9); padding: 4px; border-radius: 4px; }

.footer-bottom {
    text-align: center; padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-muted); font-size: .85rem;
}

/* ── Trust Bar ── */
.trust-bar {
    background: var(--bg-card); border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border); padding: 1.25rem 0;
}
.trust-bar-inner {
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
    gap: 1.5rem 2.5rem; font-size: .9rem; color: var(--text-muted);
}
.trust-bar-inner strong { color: var(--text-main); }

/* ── Why Choose Us ── */
.why-section { padding: 6rem 0; background: var(--bg-section); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.why-card {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: var(--radius); padding: 2rem; transition: border-color .3s;
}
.why-card:hover { border-color: rgba(166,137,70,.3); }
.why-card h3 { font-size: 1.15rem; margin-bottom: .75rem; color: var(--accent); font-family: 'Outfit', sans-serif; }
.why-card p { color: var(--text-muted); font-size: .95rem; line-height: 1.65; }

/* ── FAQ ── */
.faq-section { padding: 6rem 0; background: var(--bg-page); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: var(--radius); margin-bottom: 1rem; overflow: hidden;
}
.faq-item summary {
    padding: 1.25rem 1.5rem; cursor: pointer; font-weight: 600;
    list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--accent); font-size: 1.25rem; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 1.5rem 1.25rem; color: var(--text-muted); line-height: 1.7; font-size: .95rem; }

/* ── Machine Detail ── */
.machine-detail-section { padding: 4rem 0 8rem; }
.machine-detail-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.machine-img { background: #fff; border-radius: var(--radius); padding: 2rem; border: 1px solid var(--glass-border); text-align: center; }
.machine-img img { max-width: 100%; height: auto; margin: 0 auto; }
.machine-info h1 { font-size: clamp(1.75rem, 4vw, 2.25rem); margin-bottom: 1.5rem; color: var(--accent); }
.tech-data { background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 2rem; margin-bottom: 2rem; }
.tech-data h2 { margin-bottom: 1rem; font-size: 1.25rem; color: var(--text-main); border-bottom: 1px solid var(--glass-border); padding-bottom: 0.5rem; font-family: 'Outfit', sans-serif; }
.tech-data p, .tech-data ul { font-size: 1rem; color: var(--text-muted); line-height: 1.7; }
.tech-data ul { padding-left: 1.25rem; margin-top: .5rem; }
.machine-desc h2 { margin-bottom: 1rem; font-size: 1.25rem; font-family: 'Outfit', sans-serif; }
.machine-desc p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.related-machines { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--glass-border); }
.related-machines h2 { font-size: 1.25rem; margin-bottom: 1rem; font-family: 'Outfit', sans-serif; }
.related-machines ul { list-style: none; display: flex; flex-wrap: wrap; gap: .75rem; }
.related-machines a {
    display: inline-block; padding: .5rem 1rem; background: var(--bg-card);
    border: 1px solid var(--glass-border); border-radius: 50px; font-size: .9rem;
    color: var(--text-muted); transition: all .3s;
}
.related-machines a:hover { border-color: var(--accent); color: var(--accent); }

.quote-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
    background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-subtle);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
    padding: .75rem 5%;
    display: flex; justify-content: center; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.quote-bar .btn-primary, .quote-bar .btn-whatsapp { padding: .65rem 1.5rem; font-size: .9rem; }
body.has-quote-bar { padding-bottom: 70px; }

.hero { padding-top: 5rem; }

/* ── Timeline ── */
.timeline { max-width: 700px; margin: 3rem auto 0; }
.timeline-item {
    display: flex; gap: 1.5rem; margin-bottom: 2rem; padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year {
    flex-shrink: 0; width: 80px; font-weight: 800; font-size: 1.1rem;
    color: var(--accent); font-family: 'Playfair Display', serif;
}
.timeline-content p { color: var(--text-muted); line-height: 1.7; }

.section-heading-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

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

/* ── Spec tables (KGR product data) ── */
.spec-table {
    width: 100%; border-collapse: collapse; font-size: .95rem;
    margin-top: .5rem;
}
.spec-table caption { caption-side: top; text-align: left; font-weight: 600; color: var(--text-main); margin-bottom: .75rem; }
.spec-table th, .spec-table td {
    padding: .75rem 1rem; border: 1px solid var(--border-subtle); text-align: left;
}
.spec-table thead th {
    background: var(--accent-green); color: #ffffff; font-weight: 600;
}
.spec-table tbody tr:nth-child(even) { background: #f8f7f4; }
.spec-table tbody th[scope="row"] {
    background: #f3f1ec; color: var(--text-main); font-weight: 600; min-width: 120px;
}
.tech-data .spec-table { overflow-x: auto; display: block; max-width: 100%; }
.brochure-link { margin-top: 1.5rem; }

.section-header .section-label {
    display: block; font-size: .8rem; letter-spacing: 2px; text-transform: uppercase;
    color: var(--accent); margin-bottom: .5rem; font-weight: 600;
}

/* ── Animations ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll {
    opacity: 1; transform: translateY(0);
    transition: opacity .6s ease-out, transform .6s ease-out;
}
.js .animate-on-scroll {
    opacity: 0; transform: translateY(28px);
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .slide { transition: none; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .footer-content { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .machine-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
    .top-contact-inner { flex-direction: column; gap: .35rem; font-size: .78rem; padding: .4rem 5%; }
    .navbar { top: 72px; }
    .logo-full { display: none; }
    .logo-icon { display: block; }
    .nav-links { display: none; }
    .nav-brochure { display: none; }
    .nav-whatsapp { display: none; }
    .nav-mobile-brochure { display: block; margin-top: .5rem; }
    .nav-mobile-whatsapp { display: block; margin-top: .5rem; }
    .nav-mobile-whatsapp .btn-whatsapp { width: 100%; justify-content: center; }
    .hamburger { display: block; }
    .nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; width: 100%;
        background: #ffffff; padding: 1.5rem 5%;
        border-bottom: 1px solid var(--border-subtle);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }
    .hero-content { padding: 2rem; }
    .hero h1 { font-size: 2.2rem; }
    .stats { gap: 2rem; }
    .footer-content { grid-template-columns: 1fr; }
    .footer-glass { padding: 2rem; }
    .product-grid { grid-template-columns: 1fr; }
    body { padding-bottom: 100px; }
    body.has-quote-bar { padding-bottom: 130px; }
    .whatsapp-float { bottom: 80px; right: 20px; width: 54px; height: 54px; }
    body.has-quote-bar .whatsapp-float { bottom: 90px; }
    .machine-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
    .quote-bar { padding: .65rem 1rem; }
    .trust-bar-inner { flex-direction: column; gap: .75rem; text-align: center; }
}
