:root {
    --ink: #363385;
    --ink-2: #4b48a8;
    --red: #f58200;
    --red-dark: #d96800;
    --paper: #fff8e6;
    --line: #ead7aa;
    --muted: #67677f;
    --white: #fff;
    --shadow: 0 24px 70px rgba(54, 51, 133, .14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-shell {
    width: min(100% - 40px, 1440px);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    left: 16px;
    top: -80px;
    padding: 12px 18px;
    background: white;
    color: var(--ink);
    border-radius: 8px;
    font-weight: 800;
    transition: top .2s ease;
}

.skip-link:focus { top: 16px; }

.notice-bar { background: linear-gradient(90deg, #ffd900, var(--red)); color: #332f82; }

.site-header {
    position: sticky;
    z-index: 80;
    top: 0;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(54, 51, 133, .12);
    backdrop-filter: blur(16px);
    transition: box-shadow .25s ease;
}

.site-header.is-scrolled { box-shadow: 0 12px 35px rgba(54, 51, 133, .12); }

.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-logo { width: 172px; height: 58px; object-fit: contain; object-position: left center; }
.brand > span:last-child { display: grid; line-height: 1; }
.brand strong { font-size: 24px; letter-spacing: -.04em; color: var(--ink); }
.brand small { margin-top: 6px; color: #6a7480; font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }

.brand-mark {
    position: relative;
    display: inline-flex;
    align-items: end;
    gap: 3px;
    width: 37px;
    height: 37px;
    padding: 6px;
    background: var(--ink);
    border-radius: 3px 12px 3px 3px;
    overflow: hidden;
}

.brand-mark::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 5px;
    right: -7px;
    top: 5px;
    transform: rotate(45deg);
    background: var(--red);
}

.brand-mark i { display: block; width: 6px; background: white; border-radius: 1px 1px 0 0; }
.brand-mark i:nth-child(1) { height: 11px; }
.brand-mark i:nth-child(2) { height: 18px; }
.brand-mark i:nth-child(3) { height: 25px; }

.desktop-nav { align-items: center; justify-content: flex-end; gap: clamp(9px, .9vw, 17px); }
.desktop-nav a {
    position: relative;
    max-width: 150px;
    color: #354252;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.01em;
    text-align: center;
    transition: color .2s ease;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -11px;
    height: 2px;
    background: var(--red);
    transition: right .25s ease;
}

.desktop-nav a:hover, .desktop-nav a.is-active { color: var(--red); }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { right: 0; }

.menu-toggle {
    position: relative;
    width: 46px;
    height: 46px;
    padding: 13px 11px;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 4px 0;
    border-radius: 2px;
    background: white;
    transition: transform .3s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    inset: 76px 0 auto 0;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    background: white;
    border-top: 1px solid #e7e9ec;
    box-shadow: 0 30px 60px rgba(54, 51, 133, .16);
    opacity: 0;
    transform: translateY(-12px);
    transition: max-height .45s cubic-bezier(.22, 1, .36, 1), opacity .25s ease, transform .35s ease, visibility .35s;
}

.mobile-menu.is-open {
    max-height: calc(100vh - 76px);
    visibility: visible;
    overflow-y: auto;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu a {
    display: flex;
    align-items: center;
    min-height: 44px;
    border-bottom: 1px solid #edf0f2;
    color: var(--ink);
    font-size: 14px;
    font-weight: 750;
}

.mobile-menu a::after { content: "→"; margin-left: auto; color: var(--red); }

.hero-section { position: relative; min-height: 660px; background: var(--ink); }
.hero-section h1 { max-width: 650px; font-size: clamp(38px, 4.4vw, 58px) !important; line-height: 1.02 !important; }
.hero-image { position: absolute; inset: 0 0 82px; background: url('../img/hero-inspeccion.webp') center/cover no-repeat; }
.hero-overlay { position: absolute; inset: 0 0 82px; background: linear-gradient(90deg, rgba(42, 37, 116, .95) 0%, rgba(54, 51, 133, .78) 39%, rgba(54, 51, 133, .2) 72%, rgba(255, 137, 0, .08) 100%), linear-gradient(0deg, rgba(42, 37, 116, .52), transparent 45%); }

.hero-facts {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 0;
    left: 0;
    color: white;
    background: rgba(48, 44, 126, .97);
    border-top: 1px solid rgba(255,255,255,.12);
}

.hero-facts article { display: flex; align-items: center; gap: 18px; min-height: 116px; padding: 24px 28px; border-right: 1px solid rgba(255,255,255,.12); }
.hero-facts article:last-child { border-right: 0; }
.hero-facts article > span { color: #ffd900; font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.hero-facts strong { display: block; font-size: 15px; }
.hero-facts p { margin: 4px 0 0; color: #dad9f1; font-size: 11px; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .03em;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: white; box-shadow: 0 10px 25px rgba(245, 130, 0, .25); }
.button-primary:hover { background: var(--red-dark); }
.button-ghost { border-color: rgba(255,255,255,.4); color: white; backdrop-filter: blur(8px); }
.button-ghost:hover { background: white; color: var(--ink); border-color: white; }
.button-light { background: white; color: var(--red); }

.section-pad { padding-block: 88px; }
.eyebrow { margin: 0 0 16px; color: var(--red); font-size: 9px; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow-light { color: #ffe26b; }
.section-title { max-width: 780px; margin: 0; color: var(--ink); font-size: clamp(32px, 4.2vw, 52px); font-weight: 900; line-height: 1.04; letter-spacing: -.045em; }
.section-copy { max-width: 690px; margin: 22px 0 0; color: #606077; font-size: 15px; line-height: 1.7; }
.text-link { display: inline-flex; gap: 9px; margin-top: 25px; padding-bottom: 5px; border-bottom: 1px solid var(--red); color: var(--ink); font-size: 11px; font-weight: 900; }

.purpose-card { min-height: 285px; padding: 34px; background: white; box-shadow: 0 15px 45px rgba(54, 51, 133, .08); }
.purpose-card-dark { background: var(--ink); color: white; transform: translateY(26px); }
.card-index, .mini-label { display: block; font-size: 10px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.card-index { color: var(--red); }
.purpose-card h3 { margin: 58px 0 13px; color: var(--ink); font-size: 23px; letter-spacing: -.03em; }
.purpose-card p { margin: 0; color: #68687c; font-size: 14px; line-height: 1.7; }
.purpose-card-dark h3 { color: white; }
.purpose-card-dark p { color: #bdc7d1; }

.credential-panel { position: relative; overflow: hidden; padding: 42px; border-top: 4px solid var(--red); background: var(--paper); box-shadow: var(--shadow); }
.credential-panel > * { position: relative; z-index: 1; }
.credential-panel > .accreditation-watermark { position: absolute; z-index: 0; inset: 0; display: grid; place-items: center; color: rgba(54,51,133,.075); font-size: clamp(38px, 6vw, 74px); font-weight: 950; letter-spacing: .08em; line-height: .9; text-align: center; pointer-events: none; transform: rotate(-12deg); user-select: none; }
.approval-card > * { position: relative; z-index: 1; }
.approval-card > .informative-watermark {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .11);
    font-size: clamp(34px, 5.5vw, 72px);
    font-weight: 950;
    letter-spacing: .09em;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
    transform: rotate(-11deg);
    user-select: none;
}
.credential-panel h3 { margin: 8px 0 0; color: var(--ink); font-size: 25px; letter-spacing: -.03em; }
.status-dot { width: 14px; height: 14px; margin-top: 4px; border-radius: 50%; background: #f0a82d; box-shadow: 0 0 0 7px rgba(240, 168, 45, .15); }
.status-dot.is-ready { background: #16a66a; box-shadow: 0 0 0 7px rgba(22, 166, 106, .14); }
.credential-panel dl { margin: 38px 0 0; }
.credential-panel dl div { display: grid; grid-template-columns: 115px 1fr; gap: 18px; padding: 19px 0; border-top: 1px solid #d8d3c9; }
.credential-panel dt { color: #747d86; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.credential-panel dd { margin: 0; color: var(--ink); font-size: 14px; font-weight: 750; }
.config-warning { margin: 22px 0 0; padding: 14px 16px; border-left: 3px solid #f0a82d; background: #fff8df; color: #6d5720; font-size: 13px; line-height: 1.6; }
.config-warning code { font-size: 12px; }

.approval-card { position: relative; display: flex; overflow: hidden; gap: 34px; padding: 40px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.055); }
.approval-card h3 { margin: 7px 0 0; font-size: 29px; letter-spacing: -.035em; }
.approval-card p { margin: 6px 0 0; font-weight: 800; }
.approval-document-link { color: #ffd900; border-bottom-color: #ffd900; }
.approval-validity { margin-top: 24px !important; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.16); color: #ffd900; font-size: 12px; line-height: 1.55; }
.approval-validity strong { color: #ffd900; }
.approval-seal { display: flex; flex: 0 0 112px; width: 112px; height: 112px; align-items: center; justify-content: center; overflow: hidden; border: 1px solid rgba(255,217,0,.55); border-radius: 20px; background: white; }
.approval-seal img { width: 100%; height: 100%; object-fit: contain; }
.approval-seal span { font-size: 26px; font-weight: 950; letter-spacing: -.04em; }
.approval-seal small { margin-top: 4px; color: #ffd900; font-size: 7px; font-weight: 900; letter-spacing: .17em; }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: repeat(2, 330px) repeat(3, 320px); gap: 18px; }
.gallery-item { position: relative; min-height: 300px; margin: 0; overflow: hidden; background: var(--ink); }
.gallery-main { grid-column: 1 / 5; grid-row: 1 / 3; }
.gallery-field-two { grid-column: 5 / 9; grid-row: 1 / 3; }
.gallery-field-three { grid-column: 9 / 13; grid-row: 1 / 3; }
.gallery-truck-scale { grid-column: 1 / 7; grid-row: 3; }
.gallery-distinctive { grid-column: 7 / 13; grid-row: 3; background: white; }
.gallery-extra-one { grid-column: 1 / 7; grid-row: 4; }
.gallery-extra-two { grid-column: 7 / 13; grid-row: 4; }
.gallery-generated-low { grid-column: 1 / 5; grid-row: 5; }
.gallery-generated-medium { grid-column: 5 / 9; grid-row: 5; }
.gallery-generated-high { grid-column: 9 / 13; grid-row: 5; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.22, 1, .36, 1); }
.gallery-item .gallery-brand-asset { object-fit: contain; background: white; }
.uv-distinctive-card { display: flex; width: 100%; height: 100%; align-items: center; justify-content: center; flex-direction: column; padding: 44px 24px 86px; color: var(--ink); background: linear-gradient(145deg, #fffdf2, #fff2c2); text-align: center; }
.uv-distinctive-card img { width: auto; height: min(50%, 150px); object-fit: contain; }
.uv-distinctive-card span { margin-top: 15px; color: var(--ink); font-size: clamp(20px, 2.6vw, 32px); font-weight: 950; letter-spacing: -.04em; }
.uv-distinctive-card small { margin-top: 5px; color: var(--red); font-size: 9px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(3, 14, 26, .88)); }
.gallery-distinctive::after { display: none; }
.gallery-item figcaption { position: absolute; z-index: 2; right: 28px; bottom: 26px; left: 28px; color: white; }
.gallery-item figcaption span { display: block; margin-bottom: 7px; color: #ffd900; font-size: 9px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.gallery-item figcaption strong { font-size: 16px; }
.gallery-item figcaption small { display: block; margin-top: 6px; color: rgba(255,255,255,.72); font-size: 9px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }

.download-card { display: grid; grid-template-columns: 86px 1fr; gap: 28px; min-height: 265px; padding: 35px; border: 1px solid #dfe2e5; background: white; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.download-card:hover { transform: translateY(-5px); border-color: #d7c58e; box-shadow: 0 22px 55px rgba(54, 51, 133, .1); }
.document-icon { display: flex; width: 70px; height: 86px; align-items: end; padding: 13px; background: var(--ink); color: white; font-size: 11px; font-weight: 900; clip-path: polygon(0 0, 72% 0, 100% 23%, 100% 100%, 0 100%); }
.download-card h3 { margin: 10px 0 12px; color: var(--ink); font-size: 24px; letter-spacing: -.035em; }
.download-card p { margin: 0; color: #67717d; line-height: 1.7; }
.download-card .document-inciso { margin-bottom: 12px; padding-left: 13px; border-left: 3px solid var(--ink); color: var(--ink); }
.download-card a { display: inline-flex; gap: 12px; margin-top: 25px; color: var(--red); font-size: 13px; font-weight: 900; }

.legal-list { border-top: 1px solid rgba(255,255,255,.3); }
.legal-list article { display: grid; grid-template-columns: 58px 1fr; gap: 22px; padding: 27px 0; border-bottom: 1px solid rgba(255,255,255,.24); }
.legal-list article > span { color: #ffd0cc; font-size: 11px; font-weight: 900; letter-spacing: .15em; }
.legal-list h3 { margin: 0 0 7px; font-size: 19px; }
.legal-list p { margin: 0; color: #ffe6e3; font-size: 14px; line-height: 1.6; }

.instrument-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.instrument-card { display: flex; min-height: 370px; flex-direction: column; padding: 35px; border: 1px solid #d9d5cd; background: rgba(255,255,255,.62); }
.instrument-card strong { display: block; margin: auto 0 22px; color: var(--ink); font-size: clamp(35px, 4vw, 54px); line-height: 1; letter-spacing: -.065em; }
.instrument-card p { min-height: 76px; margin: 0; color: #56616d; line-height: 1.65; }
.instrument-card small { margin-top: 30px; padding-top: 18px; border-top: 1px solid #d9d5cd; color: #6e7780; }
.instrument-featured { background: var(--ink); color: white; border-color: var(--ink); transform: translateY(-16px); box-shadow: var(--shadow); }
.instrument-featured strong { color: white; }
.instrument-featured p, .instrument-featured small { color: #c1cbd5; }
.instrument-featured small { border-color: rgba(255,255,255,.18); }
.range-tag { color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .18em; }

.news-band { color: white; background: var(--ink); }
.news-label { display: inline-grid; place-items: center; width: 64px; height: 64px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; color: #f27972; font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.news-band h2 { margin: 0; font-size: 24px; letter-spacing: -.03em; }
.news-band p { margin: 5px 0 0; color: #99a8b7; font-size: 14px; }
.news-band a { justify-self: start; padding-bottom: 5px; border-bottom: 1px solid var(--red); font-size: 13px; font-weight: 900; }
.news-video-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 46px; align-items: center; padding-block: 0 64px; }
.news-video-copy { max-width: 520px; }
.news-video-copy .mini-label { color: #ffd900; }
.news-video-copy h3 { margin: 13px 0 0; color: white; font-size: clamp(25px, 3vw, 39px); letter-spacing: -.04em; line-height: 1.05; }
.news-video-copy p { margin-top: 18px; line-height: 1.7; }
.video-embed { position: relative; overflow: hidden; width: 100%; aspect-ratio: 16 / 9; border: 1px solid rgba(255,255,255,.16); background: #11102f; box-shadow: 0 22px 58px rgba(0,0,0,.24); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.schedule-wrap { overflow-x: auto; border: 1px solid #dfe2e5; }
.schedule-wrap table { width: 100%; min-width: 680px; border-collapse: collapse; }
.schedule-wrap th { padding: 17px 22px; color: #68727c; background: #f5f6f6; font-size: 10px; letter-spacing: .13em; text-align: left; text-transform: uppercase; }
.schedule-wrap td { padding: 22px; border-top: 1px solid #e2e5e8; color: #354252; font-size: 14px; vertical-align: top; }
.schedule-wrap td strong { display: block; margin-bottom: 6px; color: var(--ink); font-size: 15px; }
.schedule-wrap td span:not(.pill) { display: block; max-width: 360px; color: #7b858e; font-size: 12px; line-height: 1.5; }
.pill { display: inline-block; padding: 7px 10px; border-radius: 999px; color: #0d774b; background: #dff7eb; font-size: 10px; font-weight: 900; white-space: nowrap; }
.pill-warm { color: #8a5e00; background: #fff0c9; }
.pill-dark { color: #34506d; background: #e5ecf2; }

.contact-section { position: relative; overflow: hidden; background: var(--ink); }
.contact-section::before { content: ""; position: absolute; width: 480px; height: 480px; left: -250px; bottom: -280px; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; box-shadow: 0 0 0 65px rgba(255,255,255,.025), 0 0 0 130px rgba(255,255,255,.018); }
.contact-details { display: grid; gap: 0; margin-top: 45px; }
.contact-details a, .contact-details > div { display: grid; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.14); }
.contact-details span { color: #8695a5; font-size: 10px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.contact-details strong { margin-top: 6px; color: white; font-size: 16px; overflow-wrap: anywhere; }

.contact-form { display: grid; gap: 20px; padding: clamp(25px, 5vw, 48px); background: white; box-shadow: 0 28px 80px rgba(0,0,0,.2); }
.contact-form label > span:first-child { display: block; margin-bottom: 9px; color: #3a4652; font-size: 11px; font-weight: 850; letter-spacing: .05em; }
.contact-form input:not([type="checkbox"]), .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #d9dee3; border-radius: 2px; outline: none; background: #fafafa; color: var(--ink); transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input:not([type="checkbox"]), .contact-form select { height: 50px; padding: 0 14px; }
.contact-form textarea { min-height: 128px; padding: 13px 14px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(245,130,0,.13); }
.contact-form [aria-invalid="true"] { border-color: #c32d26 !important; }
.consent { display: flex; align-items: flex-start; gap: 10px; color: #65707b; font-size: 12px; line-height: 1.5; }
.consent input { flex: 0 0 auto; margin-top: 3px; accent-color: var(--red); }
.consent span { margin: 0 !important; color: inherit !important; font-size: inherit !important; font-weight: 500 !important; letter-spacing: 0 !important; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { min-height: 22px; margin: 0; color: #52606d; font-size: 13px; line-height: 1.5; }
.form-status.is-success { color: #087443; }
.form-status.is-error { color: #b32923; }

.site-footer { background: #fff3d5; border-top: 1px solid #ead7aa; }
.brand-logo-footer { width: 150px; height: 56px; }
.footer-admin-link { display: inline-flex; min-height: 38px; align-items: center; gap: 7px; margin-top: 16px; padding: 0 13px; border: 1px solid rgba(54,51,133,.28); border-radius: 2px; color: var(--ink); background: rgba(255,255,255,.52); font-size: 10px; font-weight: 850; letter-spacing: .04em; text-decoration: none; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.footer-admin-link:hover, .footer-admin-link:focus-visible { border-color: var(--ink); background: white; transform: translateY(-1px); outline: none; }

.floating-actions { position: fixed; z-index: 70; right: 20px; bottom: 20px; display: flex; align-items: center; gap: 9px; }
.whatsapp-fab, .call-fab { display: inline-flex; align-items: center; justify-content: center; color: white; box-shadow: 0 14px 35px rgba(54,51,133,.25); transition: transform .2s ease; }
.whatsapp-fab:hover, .call-fab:hover { transform: translateY(-3px); }
.whatsapp-fab { gap: 9px; min-height: 50px; padding: 0 18px; border-radius: 999px; background: #168b59; font-size: 12px; font-weight: 900; }
.whatsapp-fab span { display: grid; width: 26px; height: 26px; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; font-size: 8px; }
.call-fab { display: none; width: 50px; height: 50px; border-radius: 50%; background: var(--red); font-size: 8px; font-weight: 900; }

.js-enabled .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
.js-enabled .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1279px) {
    .site-shell { width: min(100% - 36px, 1120px); }
}

@media (max-width: 900px) {
    .section-pad { padding-block: 82px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 500px repeat(5, 310px); }
    .gallery-main { grid-column: 1 / 3; grid-row: 1; }
    .gallery-field-two, .gallery-field-three, .gallery-truck-scale, .gallery-distinctive, .gallery-extra-one, .gallery-extra-two, .gallery-generated-low, .gallery-generated-medium, .gallery-generated-high { grid-column: auto; grid-row: auto; }
    .instrument-grid { grid-template-columns: 1fr; }
    .instrument-card { min-height: 300px; }
    .instrument-card strong { margin-top: 70px; }
    .instrument-featured { transform: none; }
    .news-video-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 767px) {
    .site-shell { width: min(100% - 30px, 660px); }
    .notice-bar .site-shell { justify-content: center; }
    .hero-section { min-height: 820px; }
    .hero-image, .hero-overlay { bottom: 214px; }
    .hero-image { background-position: 62% center; }
    .hero-overlay { bottom: 214px; background: linear-gradient(90deg, rgba(3,14,26,.94), rgba(3,14,26,.58)), linear-gradient(0deg, rgba(3,14,26,.72), transparent 55%); }
    .hero-facts article { min-height: 70px; padding: 15px 5px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
    .hero-facts article:last-child { border-bottom: 0; }
    .section-title { font-size: clamp(30px, 10vw, 44px); }
    .purpose-card-dark { transform: none; }
    .approval-card { flex-direction: column; padding: 30px; }
    .approval-seal { width: 100px; height: 100px; flex-basis: 100px; }
    .gallery-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(10, 350px); }
    .gallery-main { grid-column: auto; grid-row: auto; }
    .download-card { grid-template-columns: 1fr; padding: 28px; }
    .credential-panel { padding: 28px; }
    .credential-panel dl div { grid-template-columns: 1fr; gap: 7px; }
    .approval-card > .informative-watermark { font-size: clamp(28px, 9vw, 48px); transform: rotate(-12deg); }
    .call-fab { display: inline-flex; }
    .whatsapp-fab b { display: none; }
    .whatsapp-fab { width: 50px; padding: 0; }
    .contact-form { padding: 25px; }
}

@media (max-width: 430px) {
    .hero-section { min-height: 900px; }
    .hero-section h1 { font-size: 36px !important; }
    .brand-logo { width: 145px; height: 52px; }
    .button { width: 100%; }
    .gallery-grid { grid-template-rows: repeat(10, 300px); }
    .instrument-card { padding: 28px; }
}

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

@media print {
    .notice-bar, .site-header, .floating-actions, .contact-form { display: none !important; }
    .section-pad { padding-block: 30px; }
    body { background: white; color: black; }
}
