:root {
    --green: #194b3b;
    --green-dark: #0e3228;
    --navy: #1b2a47;
    --gold: #d7a328;
    --gold-soft: #f2dfaa;
    --red: #97363e;
    --red-dark: #7b2830;
    --charcoal: #202522;
    --ink-muted: #5f6762;
    --white: #f8f8f5;
    --paper: #ffffff;
    --canvas: #e8ece9;
    --border: rgba(32, 37, 34, 0.14);
    --shadow: 0 14px 35px rgba(32, 37, 34, 0.09);
    --shadow-hover: 0 22px 50px rgba(32, 37, 34, 0.17);
    --radius: 16px;
    --radius-small: 12px;
    --shell: 100%;
    --content: 1280px;
    --transition: 0.3s ease-in-out;
    --hero-image: url("images/pulses-hero.jpg");
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--charcoal);
    font-family: Aptos, "Segoe UI", system-ui, sans-serif;
    line-height: 1.65;
    letter-spacing: 0;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, p, li, figcaption, label, td, th { text-align: center; }
h1, h2 {
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.08;
    letter-spacing: 0;
}
h1 { font-size: clamp(2.6rem, 6vw, 5.9rem); margin-bottom: 1rem; }
h2 { font-size: clamp(2rem, 4vw, 3.65rem); margin-bottom: 1rem; }
h3 { font-size: 1.05rem; line-height: 1.3; }
p { color: var(--ink-muted); }

.screen-shell {
    width: 100%;
    min-height: 100vh;
    overflow: clip;
    background: var(--paper);
}
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; background: var(--gold); padding: 0.75rem 1rem; border-radius: 8px; }
.skip-link:focus { top: 1rem; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }

.site-header {
    min-height: 78px;
    width: 100%;
    padding: 0;
    background: rgba(248, 248, 245, 0.96);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 50;
}
.header-inner {
    width: min(100%, 1440px);
    min-height: 78px;
    margin-inline: auto;
    padding: 0.75rem clamp(1rem, 3vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.75rem; text-decoration: none; min-width: max-content; transition: transform var(--transition); }
.brand:hover { transform: translateY(-2px); }
.brand-mark { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--green); color: var(--white); font-weight: 800; font-size: 0.78rem; border: 3px solid var(--gold); }
.brand-logo { width: 58px; height: 58px; flex: 0 0 58px; display: grid; place-items: center; }
.brand-logo img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 3px 6px rgba(32,37,34,.13)); }
.brand-copy { display: grid; }
.brand-copy small { text-align: left; color: var(--ink-muted); font-size: 0.69rem; text-transform: uppercase; }
.brand-wordmark { display: block; height: 34px; width: auto; max-width: 45vw; object-fit: contain; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: clamp(0.75rem, 1.6vw, 1.5rem); }
.site-nav a, .site-footer a { position: relative; text-decoration: none; font-size: 0.84rem; font-weight: 700; transition: color var(--transition); }
.site-nav a::after, .site-footer a::after, .text-link::after {
    content: ""; position: absolute; left: 50%; right: 50%; bottom: -0.35rem; height: 2px; background: var(--gold); transition: left var(--transition), right var(--transition);
}
.site-nav a:hover, .site-nav a.active, .site-footer a:hover { color: var(--red); }
.site-nav a:hover::after, .site-nav a.active::after, .site-footer a:hover::after, .text-link:hover::after { left: 0; right: 0; }
.icon-button { width: 46px; height: 46px; display: inline-grid; place-items: center; border-radius: 12px; border: 1px solid var(--border); background: var(--white); cursor: pointer; transition: all var(--transition); }
.icon-button:hover { border-color: var(--gold); transform: translateY(-2px); }
.menu-toggle { display: none; }

.button {
    min-height: 48px;
    padding: 0.75rem 1.2rem;
    border: 1px solid transparent;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--charcoal);
    font-weight: 800;
    font-size: 0.86rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition);
}
.button svg { width: 18px; height: 18px; }
.button:hover { transform: translateY(-3px) scale(1.015); box-shadow: var(--shadow); }
.button-primary { background: var(--red); color: var(--white); }
.button-primary:hover { background: var(--red-dark); border-color: var(--gold); }
.button-light { background: var(--white); color: var(--charcoal); }
.button-light:hover { background: var(--gold); }
.button-dark { background: var(--charcoal); color: var(--white); }
.button-dark:hover { background: var(--green); border-color: var(--gold); }
.button-outline { border-color: var(--charcoal); background: transparent; }
.button-outline:hover { background: var(--charcoal); color: var(--white); border-color: var(--gold); }
.button-small { min-height: 44px; }
.button-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.75rem; }

.hero, .page-hero { position: relative; display: grid; place-items: center; text-align: center; }
.hero-home { min-height: min(760px, calc(100vh - 78px)); padding: clamp(5rem, 11vw, 9rem) 1.25rem; color: var(--white); }
.hero-media { position: absolute; inset: 0; background: linear-gradient(rgba(14, 50, 40, 0.6), rgba(20, 30, 26, 0.85)), var(--hero-image) center 42% / cover; }
.hero-content { position: relative; z-index: 2; width: min(860px, 100%); }
.hero h1 { color: var(--white); }
.hero-tagline { margin-bottom: 0.55rem; color: var(--gold-soft); font: 700 clamp(1.2rem, 2.5vw, 1.8rem) Georgia, "Times New Roman", serif; }
.hero-copy { max-width: 690px; margin: 0 auto 2rem; color: rgba(248, 248, 245, 0.88); font-size: 1.02rem; }
.eyebrow { color: var(--red); font-size: 0.74rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.8rem; }
.hero .eyebrow, .section-dark .eyebrow, .page-hero .eyebrow { color: var(--gold); }
.hero-scroll { position: absolute; z-index: 3; bottom: 1.25rem; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; color: var(--white); border: 1px solid rgba(255,255,255,.45); transition: all var(--transition); }
.hero-scroll:hover { transform: translateY(4px); border-color: var(--gold); color: var(--gold); }

.section { padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3.5rem); text-align: center; }
.section-compact { padding-block: clamp(3rem, 6vw, 4.75rem); }
.section-light { background: var(--white); }
.section-dark { background: var(--charcoal); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(248,248,245,.72); }
.section-accent { background: var(--gold); color: var(--charcoal); }
.section-accent .eyebrow { color: var(--red-dark); }
.section-accent p { color: rgba(32,37,34,.75); }
.section-heading { width: min(790px, 100%); margin: 0 auto clamp(2rem, 5vw, 3.5rem); }
.section-heading > p:last-child { max-width: 680px; margin-inline: auto; }
.section-action { margin-top: 2.25rem; }

.stats-grid, .card-grid, .feature-grid, .process-grid, .spec-grid, .certificate-grid, .values-grid { display: grid; gap: 1rem; width: min(var(--content), 100%); margin-inline: auto; }
.stats-grid { grid-template-columns: repeat(4, 1fr); }
.stat-card, .card, .process-card, .spec-card, .value-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: clamp(1.2rem, 3vw, 2rem);
    background: var(--paper);
    box-shadow: 0 8px 20px rgba(32,37,34,.045);
    transition: all var(--transition);
}
.stat-card:hover, .card:hover, .process-card:hover, .spec-card:hover, .value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--gold); }
.stat-card strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.4rem, 3vw, 2.15rem); color: var(--green); text-align: center; }
.stat-card span { color: var(--ink-muted); font-size: .78rem; font-weight: 700; }
.data-note { margin: 1.25rem auto 0; font-size: .73rem; }

.about-story-card { width: min(1100px, 100%); padding: clamp(2rem, 5vw, 3.5rem); }
.about-story-card h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.about-story-card p { max-width: 760px; margin-inline: auto; }

.product-grid { grid-template-columns: repeat(4, 1fr); }
.product-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.product-image { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--green); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.product-card:hover .product-image img { transform: scale(1.055); }
.card-body { padding: 1.4rem; display: flex; align-items: center; flex-direction: column; flex: 1; }
.card-body p { font-size: .84rem; }
.product-meta { display: flex; justify-content: center; flex-wrap: wrap; gap: .4rem; margin-top: auto; margin-bottom: 1.1rem; }
.product-meta span { border: 1px solid var(--border); border-radius: 999px; padding: .25rem .55rem; color: var(--ink-muted); font-size: .65rem; text-align: center; }
.text-link { position: relative; display: inline-flex; align-items: center; gap: .35rem; color: var(--red); font-weight: 800; font-size: .78rem; text-decoration: none; }
.text-link svg { width: 16px; }

.product-showcase { padding-inline: 0; }
.product-showcase .section-heading,
.product-showcase .section-action { padding-inline: 1rem; }
.product-showcase .section-heading h2 { font-size: clamp(1.9rem, 3vw, 3rem); }
.product-marquee {
    width: 100%;
    overflow: hidden;
    padding: .9rem 0 1.35rem;
}
.marquee-control-row { width: min(var(--content), calc(100% - 2rem)); margin: -.75rem auto .65rem; display: flex; justify-content: flex-end; }
.marquee-toggle { width: 44px; height: 44px; border-color: var(--gold); background: var(--white); }
.marquee-toggle svg { width: 18px; height: 18px; }
.marquee-toggle .marquee-icon-play { display: none; }
.marquee-toggle[aria-pressed="true"] .marquee-icon-pause { display: none; }
.marquee-toggle[aria-pressed="true"] .marquee-icon-play { display: block; }
.marquee-track {
    --marquee-duration: 132s;
    width: max-content;
    display: flex;
    gap: 1rem;
    animation: product-marquee var(--marquee-duration) linear infinite;
    will-change: transform;
}
.marquee-group { display: flex; gap: 1rem; }
.product-marquee:hover .marquee-track,
.product-marquee:focus-within .marquee-track,
.product-marquee.is-paused .marquee-track { animation-play-state: paused; }
@keyframes product-marquee {
    to { transform: translateX(calc(-50% - .5rem)); }
}
.marquee-card {
    flex: 0 0 clamp(268px, 20vw, 312px);
    width: clamp(268px, 20vw, 312px);
    min-height: 354px;
    border-color: rgba(27, 42, 71, .13);
    box-shadow: 0 12px 32px rgba(27, 42, 71, .1);
}
.marquee-card:hover { border-color: var(--gold); box-shadow: 0 22px 48px rgba(27, 42, 71, .18); }
.marquee-card .product-image { height: 190px; aspect-ratio: auto; }
.marquee-card .card-body { min-height: 164px; padding: 1rem 1.1rem 1.1rem; }
.marquee-card h3 { margin-bottom: .75rem; color: var(--navy); font-size: 1.03rem; }
.weight-badges { min-height: 29px; display: flex; justify-content: center; flex-wrap: wrap; gap: .35rem; margin-bottom: .85rem; }
.weight-badges span {
    padding: .24rem .58rem;
    border: 1px solid var(--gold);
    border-radius: 999px;
    color: var(--charcoal);
    background: rgba(215, 163, 40, .07);
    font-size: .64rem;
    font-weight: 800;
}
.marquee-card-action {
    min-height: 42px;
    margin-top: auto;
    padding: .58rem .9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    border: 1px solid var(--navy);
    border-radius: 10px;
    color: var(--white);
    background: var(--navy);
    font-size: .74rem;
    font-weight: 800;
    text-decoration: none;
    transition: all var(--transition);
}
.marquee-card-action svg { width: 16px; height: 16px; }
.marquee-card-action:hover { border-color: var(--gold); background: var(--red); transform: translateY(-2px); }

.process-grid { grid-template-columns: repeat(7, 1fr); }
.process-card { position: relative; background: #2c322f; border-color: rgba(255,255,255,.12); padding: 1.45rem .8rem; }
.process-card:hover { background: var(--white); color: var(--charcoal); }
.process-card:hover h3, .process-card:hover p { color: var(--charcoal); }
.process-card svg, .feature-card svg, .dark-card svg, .certificate-card svg, .contact-card svg, .value-card svg { width: 30px; height: 30px; color: var(--gold); margin: 0 auto 1rem; }
.process-card h3 { font-size: .9rem; }
.process-card p { font-size: .72rem; }
.step-number { display: block; margin-bottom: .65rem; color: var(--gold); font-weight: 800; font-size: .68rem; text-align: center; }
.feature-grid { grid-template-columns: repeat(4, 1fr); }
.three-column { grid-template-columns: repeat(3, 1fr); }
.feature-card p, .dark-card p { font-size: .84rem; }
.dark-card { background: var(--white); color: var(--charcoal); }
.dark-card p { color: var(--ink-muted); }

.trading-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.trading-card { display: flex; flex-direction: column; align-items: center; padding-block: 2.25rem; }
.trading-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 1rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(215,163,40,.7);
    border-radius: 50%;
    color: var(--navy);
    background: rgba(215,163,40,.1);
    transition: all var(--transition);
}
.trading-icon svg { width: 27px; height: 27px; margin: 0; }
.trading-card:hover .trading-icon { color: var(--white); background: var(--navy); transform: scale(1.06); }
.trading-card h3 { min-height: 2.6rem; display: flex; align-items: center; justify-content: center; }
.trading-card p { max-width: 480px; margin: 0 auto 1.4rem; }
.item-chip-list { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; max-width: 560px; margin: 0 auto; }
.item-chip-list span {
    padding: .35rem .75rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--canvas);
    color: var(--charcoal);
    font-size: .74rem;
    font-weight: 700;
}
.item-chip-list span.chip-more { border-style: dashed; border-color: var(--gold); background: transparent; color: var(--red); }
.trading-note { margin-top: 2rem; }
.values-grid { grid-template-columns: repeat(6, 1fr); }
.value-card { padding: 1.4rem .7rem; }
.value-card h3 { margin-bottom: 0; font-size: .83rem; }

.page-hero { min-height: 420px; padding: clamp(5rem, 10vw, 8rem) 1.25rem; color: var(--white); isolation: isolate; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(135deg, rgba(14,50,40,.9), rgba(32,37,34,.72)), var(--hero-image) center / cover; }
.page-hero::after { content: ""; position: absolute; inset: 12px; z-index: -1; border: 1px solid rgba(248,248,245,.22); border-radius: 12px; pointer-events: none; }
.page-hero h1 { max-width: 920px; color: var(--white); font-size: clamp(2.45rem, 5vw, 4.7rem); }
.page-hero > p:last-child { max-width: 680px; color: rgba(248,248,245,.82); }
.filter-toolbar { position: relative; z-index: 10; width: min(1280px, calc(100% - 2rem)); margin: 0 auto 1.4rem; padding: .35rem; display: flex; justify-content: center; flex-wrap: wrap; gap: .5rem; overflow-x: auto; border: 0; background: transparent; }
.filter-button { min-height: 44px; padding: .68rem 1.05rem; border: 1px solid var(--border); border-radius: 999px; background: var(--white); color: var(--charcoal); font-weight: 800; font-size: .76rem; white-space: nowrap; cursor: pointer; box-shadow: 0 6px 16px rgba(32,37,34,.06); transition: all var(--transition); }
.filter-button:hover { color: var(--navy); border-color: var(--gold); transform: translateY(-2px); }
.filter-button.active { background: var(--navy); color: var(--white); border-color: var(--gold); box-shadow: 0 10px 24px rgba(27,42,71,.2); }
.product-card.is-hidden { display: none; }
.product-filter-empty { width: min(560px, calc(100% - 2rem)); margin: 1rem auto 0; padding: clamp(1.5rem,4vw,2.5rem); border: 1px dashed var(--gold); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); text-align: center; }
.product-filter-empty[hidden] { display: none; }
.product-filter-empty svg { width: 34px; height: 34px; margin-bottom: .75rem; color: var(--gold); }
.product-filter-empty h3 { color: var(--navy); }
.product-filter-empty p { margin-bottom: 0; font-size: .8rem; }

.product-hero { padding: clamp(2rem, 6vw, 5rem); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: clamp(2rem, 6vw, 5rem); }
.product-visual { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5 / 4; }
.product-visual img { width: 100%; height: 100%; object-fit: cover; }
.product-intro { display: flex; flex-direction: column; align-items: center; }
.product-intro h1 { font-size: clamp(2.4rem, 5vw, 4.8rem); }
.product-intro .lead { color: var(--green); font-weight: 700; }
.spec-grid { grid-template-columns: repeat(5, 1fr); }
.spec-card { display: flex; min-height: 140px; align-items: center; justify-content: center; flex-direction: column; }
.spec-card span { color: var(--red); text-transform: uppercase; font-size: .65rem; font-weight: 800; }
.spec-card strong { margin-top: .45rem; font-size: .82rem; text-align: center; }

.gallery-grid { width: min(var(--content), 100%); margin-inline: auto; display: grid; grid-template-columns: 1.5fr 1fr; gap: 1rem; }
.gallery-grid figure { margin: 0; position: relative; min-height: 250px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.gallery-grid .gallery-feature { grid-row: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gallery-grid figure:hover img { transform: scale(1.045); }
.gallery-grid figcaption { position: absolute; left: .75rem; right: .75rem; bottom: .75rem; padding: .65rem; color: var(--white); background: rgba(32,37,34,.78); border-radius: 10px; font-size: .72rem; }
.certificate-grid { grid-template-columns: repeat(3, 1fr); }
.certificate-card span { color: var(--red); text-transform: uppercase; font-size: .65rem; font-weight: 800; }
.credentials-hero::before { background: linear-gradient(135deg, rgba(27,42,71,.9), rgba(14,50,40,.8)), var(--hero-image) center 42% / cover; }
.credential-section { background: #f4f5f2; }
.credential-grid { align-items: stretch; }
.credential-card { min-height: 370px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; }
.credential-icon, .achievement-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 1rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(215,163,40,.7);
    border-radius: 50%;
    color: var(--navy);
    background: rgba(215,163,40,.1);
    transition: all var(--transition);
}
.credential-icon svg, .achievement-icon svg { width: 27px; height: 27px; }
.credential-card:hover .credential-icon { color: var(--white); background: var(--navy); transform: scale(1.06); }
.credential-photo { display: flex; align-items: center; justify-content: center; width: 100%; aspect-ratio: 4 / 3; margin-bottom: 1rem; padding: 1rem; border: 1px solid var(--border); border-radius: var(--radius-small); overflow: hidden; background: var(--paper); }
.credential-photo img { width: 100%; height: 100%; object-fit: contain; transition: transform .3s ease; }
.credential-photo:hover img { transform: scale(1.03); }
.credential-status { margin-bottom: .65rem; padding: .3rem .7rem; border: 1px solid rgba(151,54,62,.28); border-radius: 999px; }
.credential-card h3 { color: var(--navy); font-size: 1.2rem; }
.credential-card > p { max-width: 300px; }
.credential-meta { width: 100%; margin: .7rem 0; }
.credential-meta div { display: grid; gap: .15rem; padding: .65rem; border-block: 1px solid var(--border); }
.credential-meta dt { color: var(--ink-muted); font-size: .65rem; font-weight: 800; text-align: center; text-transform: uppercase; }
.credential-meta dd { margin: 0; color: var(--charcoal); font-size: .76rem; font-weight: 800; text-align: center; overflow-wrap: anywhere; }
.credential-validity { margin-bottom: 1rem; font-size: .72rem; font-weight: 700; }
.credential-card .button, .credential-pending { margin-top: auto; }
.credential-availability { width: min(620px,100%); margin-inline: auto; padding: clamp(1.5rem,4vw,2.5rem); border: 1px solid var(--border); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow); text-align: center; }
.credential-availability > svg { width: 42px; height: 42px; margin-bottom: .8rem; color: var(--gold); }
.credential-availability p { max-width: 470px; margin-inline: auto; }
.credential-pending { min-height: 42px; display: inline-flex; align-items: center; justify-content: center; gap: .45rem; color: var(--ink-muted); font-size: .72rem; font-weight: 800; }
.credential-pending svg { width: 15px; height: 15px; margin: 0; flex-shrink: 0; }
.credential-pending svg { width: 16px; height: 16px; color: var(--gold); }
.achievement-grid { position: relative; width: min(var(--content), 100%); margin-inline: auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.achievement-card { position: relative; min-height: 330px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; overflow: hidden; }
.achievement-section .achievement-card { background: #f8f8f5; color: var(--charcoal); }
.achievement-section .achievement-card h3 { color: var(--navy); }
.achievement-section .achievement-card p { color: var(--ink-muted); font-size: .8rem; }
.achievement-icon { color: var(--gold); background: var(--navy); border-color: var(--gold); }
.achievement-card:hover .achievement-icon { color: var(--navy); background: var(--gold); transform: translateY(-3px) rotate(4deg); }
.achievement-year { display: inline-flex; min-height: 30px; margin-bottom: .8rem; padding: .25rem .75rem; align-items: center; justify-content: center; border: 1px solid var(--gold); border-radius: 999px; color: var(--red); font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.achievement-card h3 { margin-bottom: .65rem; font-size: 1.05rem; }
.admin-achievement-grid { grid-template-columns: repeat(4, 1fr); margin-bottom: 1.5rem; }
.admin-achievement-grid .achievement-card { min-height: 280px; }
.four-step { grid-template-columns: repeat(4, 1fr); }

.table-wrap { width: min(1000px, 100%); margin-inline: auto; overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; min-width: 720px; background: var(--paper); }
th, td { padding: 1rem; border-bottom: 1px solid var(--border); }
th { background: var(--green); color: var(--white); font-size: .75rem; text-transform: uppercase; }
td { font-size: .8rem; }
tbody tr { transition: background var(--transition); }
tbody tr:hover { background: rgba(215,163,40,.1); }

.contact-layout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(260px, .7fr); gap: 1rem; width: min(1050px, 100%); margin-inline: auto; align-items: start; }
.inquiry-form { padding: clamp(1.2rem, 4vw, 2.2rem); }
.honeypot-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.form-grid label { display: flex; flex-direction: column; gap: .4rem; }
.form-grid label span { font-size: .74rem; font-weight: 800; }
.form-wide { grid-column: 1 / -1; }
input, select, textarea { width: 100%; min-height: 48px; padding: .75rem .85rem; border: 1px solid var(--border); border-radius: 10px; background: var(--white); color: var(--charcoal); text-align: center; outline: none; transition: all var(--transition); }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(215,163,40,.14); }
.consent { display: flex; align-items: center; justify-content: center; gap: .6rem; margin: 1.2rem 0; font-size: .75rem; }
.consent input { width: 20px; height: 20px; min-height: 20px; }
.consent a,
.legal-content a { color: var(--red); font-weight: 800; text-decoration: underline; text-decoration-color: rgba(151,54,62,.35); text-underline-offset: 3px; }
.consent a:hover,
.consent a:focus-visible,
.legal-content a:hover,
.legal-content a:focus-visible { color: var(--navy); text-decoration-color: var(--gold); }
.legal-page { background: var(--white); }
.legal-content { max-width: 920px; margin: 0 auto; padding: clamp(1.5rem,4vw,3.5rem); }
.legal-content h2 { margin: 2rem 0 .65rem; font-size: clamp(1.3rem,2vw,1.75rem); }
.legal-content h2:first-of-type { margin-top: 1rem; }
.legal-content p { max-width: 760px; margin: 0 auto 1rem; }
.legal-content .legal-updated { color: var(--ink-muted); font-size: .85rem; font-weight: 800; }
.form-status { min-height: 1.5rem; margin: 1rem 0 0; font-size: .78rem; font-weight: 700; }
.form-status.success { color: var(--green); }
.form-status.error { color: var(--red); }
.contact-details { display: grid; gap: 1rem; }
.contact-card { padding: 1.3rem; }
.contact-card svg { margin-bottom: .5rem; }
.contact-card h3 { margin-bottom: .25rem; }
.contact-card p, .contact-card a { font-size: .78rem; word-break: break-word; }

.site-footer { background: var(--green-dark); color: var(--white); padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 3.5rem) 1.5rem; }
.footer-grid { width: min(var(--content),100%); margin-inline: auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; align-items: start; column-gap: clamp(2rem,5vw,5rem); }
.footer-column { min-width: 0; display: flex; flex-direction: column; align-items: center; }
.footer-grid h2, .footer-grid h3 { min-height: 1.6rem; margin: 0 0 1.5rem; color: var(--white); line-height: 1.3; }
.footer-grid h2 { font-size: 1.45rem; }
.footer-grid h3 { font-size: 1rem; }
.footer-grid p { margin: 0; color: rgba(248,248,245,.66); font-size: .8rem; max-width: 350px; }
.footer-grid a { max-width: 100%; margin-bottom: .65rem; color: rgba(248,248,245,.85); overflow-wrap: anywhere; }
.footer-socials { display: flex; justify-content: center; align-items: center; gap: .75rem; margin-top: 1.75rem; }
.footer-social-link { width: 44px; height: 44px; margin: 0; border: 1px solid rgba(215,163,40,.65); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--white); background: rgba(248,248,245,.06); box-shadow: 0 8px 20px rgba(0,0,0,.12); transition: all .3s ease-in-out; }
.footer-social-link::after { display: none; }
.footer-social-link svg { width: 20px; height: 20px; }
.site-footer .footer-social-link:hover, .site-footer .footer-social-link:focus-visible { color: var(--green-dark); background: var(--gold); border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,.2); }
.footer-social-link:active { transform: translateY(-1px) scale(.96); }
.footer-mark { margin-bottom: 1rem; }
.footer-logo { width: 96px; height: 96px; flex-basis: 96px; margin-bottom: 1rem; }
.footer-bottom { width: min(var(--content),100%); margin: 2.5rem auto 0; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.13); display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p, .footer-bottom a { color: rgba(248,248,245,.55); font-size: .7rem; margin: 0; }
.whatsapp-fab { position: fixed; right: clamp(1rem, 2vw, 2rem); bottom: 1rem; z-index: 60; width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: var(--white); background: #237b50; border: 2px solid var(--white); box-shadow: var(--shadow); transition: all var(--transition); }
.whatsapp-fab:hover { transform: translateY(-4px) scale(1.04); background: var(--green); border-color: var(--gold); }

@media (max-width: 1120px) {
    .header-cta { display: none; }
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .process-grid { grid-template-columns: repeat(4, 1fr); }
    .values-grid { grid-template-columns: repeat(3, 1fr); }
    .spec-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1040px) {
    .menu-toggle { display: inline-grid; order: 3; }
    .site-nav { position: absolute; left: 1rem; right: 1rem; top: calc(100% + .5rem); padding: 1rem; display: grid; visibility: hidden; opacity: 0; transform: translateY(-8px); background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-hover); transition: all var(--transition); }
    .site-nav.open { visibility: visible; opacity: 1; transform: translateY(0); }
    .site-nav a { min-height: 44px; display: grid; place-items: center; }
    .stats-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .product-hero, .contact-layout { grid-template-columns: 1fr; }
    .product-intro { max-width: 720px; margin-inline: auto; }
    .achievement-grid, .admin-achievement-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
    .footer-grid { grid-template-columns: 1fr; row-gap: 2.75rem; }
}
@media (max-width: 620px) {
    .site-header, .header-inner { min-height: 68px; }
    .brand-mark { width: 42px; height: 42px; }
    .brand-logo { width: 48px; height: 48px; flex-basis: 48px; }
    .footer-logo { width: 86px; height: 86px; flex-basis: 86px; }
    .brand-wordmark { height: 28px; }
    .brand-copy small { display: none; }
    .hero-home { min-height: 700px; }
    .section { padding-inline: 1rem; }
    .stats-grid, .product-grid, .feature-grid, .process-grid, .spec-grid, .certificate-grid, .achievement-grid, .admin-achievement-grid, .values-grid, .three-column, .four-step, .trading-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-card { padding: 1rem .5rem; }
    .stat-card strong { font-size: 1.3rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-grid .gallery-feature { grid-row: auto; }
    .form-grid { grid-template-columns: 1fr; }
    .form-wide { grid-column: auto; }
    .button-row { width: 100%; }
    .button-row .button { width: 100%; }
    .filter-toolbar { justify-content: flex-start; flex-wrap: nowrap; width: calc(100% - 1rem); }
    .page-hero { min-height: 390px; }
    .whatsapp-fab { width: 50px; height: 50px; }
}
@media (hover: none) {
    .card:hover, .stat-card:hover, .process-card:hover, .spec-card:hover, .value-card:hover, .button:hover, .icon-button:hover { transform: none; }
    .button:active, .filter-button:active, .icon-button:active { transform: scale(.98); }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
    .product-marquee { overflow-x: auto; }
    .marquee-track { animation: none; }
    .marquee-control-row { display: none; }
}
