:root {
  --ink: #17191c;
  --ink-2: #23262a;
  --paper: #ffffff;
  --soft: #f4f5f6;
  --line: #d8dadd;
  --muted: #666b73;
  --red: #d5242f;
  --red-dark: #ae1822;
  --amber: #f5a623;
  --green: #178c4d;
  --container: 1240px;
  --gutter: 28px;
  --section: 112px;
  --radius: 6px;
  --shadow: 0 22px 60px rgba(12, 14, 16, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Arial, "Helvetica Neue", sans-serif; font-size: 16px; line-height: 1.65; letter-spacing: 0; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; letter-spacing: 0; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: 0; }
h1 { max-width: 800px; margin-bottom: 25px; font-size: 76px; font-weight: 800; }
h2 { margin-bottom: 24px; font-size: 48px; font-weight: 760; }
h3 { margin-bottom: 12px; font-size: 22px; }
p { color: var(--muted); }
.container { width: min(100% - (var(--gutter) * 2), var(--container)); margin-inline: auto; }
.section { padding: var(--section) 0; }
.soft-band { background: var(--soft); }
.dark-band { color: var(--paper); background: linear-gradient(135deg, #111315 0%, #222529 100%); }
.dark-band p { color: #b8bcc2; }
.skip-link { position: fixed; z-index: 1000; top: 8px; left: 8px; padding: 10px 16px; color: white; background: var(--ink); transform: translateY(-140%); }
.skip-link:focus { transform: translateY(0); }
.section-index { margin-bottom: 18px; color: var(--red); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.section-heading { max-width: 810px; margin-bottom: 56px; }
.section-heading p:last-child { max-width: 690px; margin-bottom: 0; font-size: 18px; }
.section-heading.light .section-index, .dark-band .section-index { color: #ff6871; }
.section-heading.split { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); align-items: end; max-width: none; gap: 80px; }
.section-heading.split > p { margin-bottom: 7px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.large-copy { color: var(--ink); font-size: 23px; line-height: 1.45; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 14px; padding: 13px 24px; border: 1px solid transparent; border-radius: 3px; font-size: 14px; font-weight: 800; text-transform: uppercase; transition: transform .25s ease, color .25s ease, background .25s ease, border-color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--red); }
.button-primary:hover { background: var(--red-dark); }
.button-ghost { color: white; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.04); }
.button-ghost:hover { border-color: white; background: rgba(255,255,255,.1); }
.button-dark { color: white; background: var(--ink); }

.site-header { position: fixed; z-index: 100; top: 0; right: 0; left: 0; color: white; border-bottom: 1px solid rgba(255,255,255,.15); transition: background .3s ease, box-shadow .3s ease, color .3s ease; }
.site-header.scrolled { color: var(--ink); background: rgba(255,255,255,.97); box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.nav-shell { display: flex; width: min(100% - 40px, 1420px); min-height: 82px; align-items: center; margin-inline: auto; gap: 30px; }
.brand { display: flex; width: 178px; height: 60px; align-items: center; overflow: hidden; }
.brand img { width: 180px; height: 60px; object-fit: contain; }
.main-nav { display: flex; align-items: center; justify-content: center; margin-left: auto; gap: 28px; }
.main-nav a { position: relative; font-size: 13px; font-weight: 750; white-space: nowrap; }
.main-nav a::after { position: absolute; right: 0; bottom: -9px; left: 0; height: 2px; background: var(--red); content: ""; transform: scaleX(0); transition: transform .25s ease; }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.nav-cta { padding: 11px 17px; color: white; background: var(--red); border-radius: 3px; font-size: 12px; font-weight: 800; text-transform: uppercase; white-space: nowrap; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; color: inherit; background: transparent; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: currentColor; transition: transform .2s ease, opacity .2s ease; }

.hero { position: relative; display: flex; min-height: 880px; align-items: center; overflow: hidden; color: white; background: #15171a; }
.hero-backdrop { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,12,14,.97) 0%, rgba(11,12,14,.88) 45%, rgba(11,12,14,.28) 100%), url("asset/press-production-hall.webp") center/cover no-repeat; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; padding-top: 90px; gap: 32px; }
.hero-copy { z-index: 2; padding: 60px 0 82px; }
.hero-lead { max-width: 670px; margin-bottom: 34px; color: #d6d8dc; font-size: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; margin-bottom: 54px; gap: 14px; }
.hero-specs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 760px; margin: 0; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.22); gap: 26px; }
.hero-specs div { display: grid; grid-template-columns: auto 1fr; align-items: baseline; gap: 0 9px; }
.hero-specs dt { grid-row: 1; color: #aeb3b9; font-size: 11px; text-transform: uppercase; }
.hero-specs dd { grid-row: 1; margin: 0; font-size: 28px; font-weight: 800; }
.hero-specs span { grid-column: 1 / -1; color: #aeb3b9; font-size: 12px; }
.hero-product { position: relative; z-index: 1; align-self: end; margin: 0 0 34px; }
.hero-product::before { position: absolute; z-index: -1; inset: 15% -3% 4% 12%; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06); box-shadow: var(--shadow); content: ""; }
.hero-product img { width: 100%; max-height: 690px; object-fit: contain; filter: drop-shadow(0 30px 34px rgba(0,0,0,.42)); }
.hero-product figcaption { position: absolute; right: 0; bottom: 30px; padding: 9px 14px; color: white; background: rgba(14,15,17,.82); font-size: 11px; text-transform: uppercase; }
.scroll-cue { position: absolute; bottom: 28px; left: 50%; display: flex; align-items: center; gap: 10px; color: #c7c9cd; font-size: 10px; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue span { display: block; width: 30px; height: 1px; background: var(--red); }

.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 110px; }
.overview-copy { padding-top: 43px; }
.capability-rail { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 76px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.capability-rail article { min-height: 225px; padding: 31px 26px; border-right: 1px solid var(--line); }
.capability-rail article:last-child { border-right: 0; }
.capability-rail span { color: var(--red); font-size: 12px; font-weight: 800; }
.capability-rail h3 { margin-top: 38px; font-size: 20px; }
.capability-rail p { margin: 0; font-size: 14px; }

.process-layout { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
.process-media { position: relative; margin: 0; padding: 30px; background: #f7f7f7; box-shadow: 0 30px 70px rgba(0,0,0,.3); }
.process-media img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.process-media figcaption { position: absolute; right: 30px; bottom: 30px; left: 30px; padding: 18px; color: #d4d7db; background: rgba(18,20,22,.9); font-size: 13px; }
.process-steps { margin: 0; padding: 0; list-style: none; }
.process-steps li { display: grid; grid-template-columns: 55px 1fr; padding: 27px 0; border-bottom: 1px solid rgba(255,255,255,.15); gap: 20px; }
.process-steps li:first-child { border-top: 1px solid rgba(255,255,255,.15); }
.process-steps > li > span { color: #ff6871; font-size: 12px; font-weight: 800; }
.process-steps h3 { color: white; }
.process-steps p { margin: 0; }

.advantage-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 70px; }
.advantage-feature { position: sticky; top: 110px; align-self: start; margin: 0; background: var(--ink); box-shadow: var(--shadow); }
.advantage-feature img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.advantage-feature div { padding: 32px 36px 36px; }
.advantage-feature span { color: #ff6871; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.advantage-feature h3 { margin-top: 10px; color: white; font-size: 28px; }
.advantage-feature p { margin: 0; color: #c8cbd0; }
.advantage-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.advantage-list article { min-height: 240px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.advantage-list span { color: var(--red); font-size: 12px; font-weight: 800; }
.advantage-list h3 { margin-top: 33px; font-size: 19px; }
.advantage-list p { margin: 0; font-size: 14px; }

.application-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); }
.application-item { position: relative; overflow: hidden; background: white; }
.application-item img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .5s ease; }
.application-item:hover img { transform: scale(1.035); }
.application-item div { min-height: 210px; padding: 28px 30px 32px; }
.application-item span { color: var(--red); font-size: 11px; font-weight: 800; }
.application-item h3 { margin-top: 24px; }
.application-item p { margin: 0; font-size: 14px; }

.model-controls { display: flex; margin-bottom: 30px; gap: 8px; }
.model-filter { padding: 10px 17px; border: 1px solid var(--line); color: var(--ink); background: white; font-size: 13px; font-weight: 750; }
.model-filter.active { color: white; border-color: var(--ink); background: var(--ink); }
.table-wrap { overflow-x: auto; border-top: 3px solid var(--red); box-shadow: 0 16px 45px rgba(0,0,0,.08); }
table { width: 100%; min-width: 860px; border-collapse: collapse; background: white; }
th, td { padding: 18px 20px; border-bottom: 1px solid var(--line); text-align: left; }
th { color: #565b62; background: var(--soft); font-size: 11px; text-transform: uppercase; }
td { font-size: 14px; }
td:first-child { font-weight: 800; }
tbody tr:hover { background: #fafafa; }
tbody tr.hidden { display: none; }
.table-note { margin: 16px 0 0; font-size: 12px; }

.case-gallery { display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: repeat(3, 215px); gap: 14px; }
.case-gallery figure { position: relative; overflow: hidden; margin: 0; }
.case-gallery .case-main { grid-row: 1 / 4; }
.case-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.case-gallery figure:hover img { transform: scale(1.025); }
.case-gallery figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 34px 24px 18px; color: white; background: linear-gradient(transparent, rgba(0,0,0,.82)); font-weight: 700; }
.case-gallery figcaption span { display: block; margin-bottom: 3px; color: #ff6871; font-size: 10px; text-transform: uppercase; }
.video-block { display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; margin-top: 70px; background: #282b2f; }
.video-copy { padding: 44px; }
.video-copy > span { color: #ff6871; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.video-copy h3 { margin-top: 16px; color: white; font-size: 30px; }
.video-frame { position: relative; aspect-ratio: 16 / 9; background: #000; }
.video-frame video { width: 100%; height: 100%; object-fit: cover; }

.company-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; }
.company-image { position: relative; margin: 0; }
.company-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; box-shadow: var(--shadow); }
.company-image figcaption { position: absolute; right: 0; bottom: 0; padding: 12px 16px; color: white; background: var(--ink); font-size: 11px; text-transform: uppercase; }
.company-metrics { display: grid; grid-template-columns: 1fr 1fr; margin-top: 34px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.company-metrics div { padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.company-metrics strong { display: block; font-size: 28px; }
.company-metrics span { color: var(--muted); font-size: 12px; }
.certification-strip { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 85px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.certification-strip article { display: grid; grid-template-columns: 150px 1fr; min-height: 230px; align-items: center; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); gap: 22px; }
.certification-strip img { width: 150px; height: 180px; object-fit: contain; background: #f7f5ef; }
.certification-strip h3 { font-size: 19px; }
.certification-strip p { margin: 0; font-size: 13px; }
.team-band { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; margin-top: 80px; background: var(--ink); }
.team-band img { width: 100%; height: 440px; object-fit: cover; }
.team-band div { padding: 50px; }
.team-band span { color: #ff6871; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.team-band h3 { margin-top: 17px; color: white; font-size: 34px; }
.team-band p { margin: 0; color: #bdc1c6; }

.customization-grid { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 60px; }
.customization-grid h2 { margin-bottom: 0; font-size: 35px; }
.customization-grid > p { margin: 0; }
.customization-grid .button { white-space: nowrap; }

.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; align-items: start; gap: 100px; }
.faq-layout .section-heading { position: sticky; top: 120px; margin-bottom: 0; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 25px 50px 25px 0; font-size: 18px; font-weight: 750; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span::before, .faq-list summary span::after { position: absolute; top: 36px; right: 5px; width: 18px; height: 2px; background: var(--ink); content: ""; transition: transform .25s ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 760px; padding: 0 50px 25px 0; margin: 0; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 100px; }
.contact-copy h2 { font-size: 52px; }
.contact-copy > p:not(.section-index) { max-width: 520px; }
.contact-copy address { margin-top: 45px; font-style: normal; }
.contact-copy address a, .contact-copy address p { display: block; padding: 18px 0; margin: 0; color: white; border-top: 1px solid rgba(255,255,255,.16); }
.contact-copy address span { display: block; margin-bottom: 3px; color: #9da2a9; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.inquiry-form { padding: 42px; color: var(--ink); background: white; box-shadow: 0 28px 70px rgba(0,0,0,.3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.inquiry-form label { display: block; margin-bottom: 18px; color: #4f545b; font-size: 12px; font-weight: 750; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea { width: 100%; margin-top: 7px; padding: 13px 12px; border: 1px solid #cdd0d4; border-radius: 0; outline: 0; background: #fbfbfb; font-size: 15px; transition: border-color .2s ease, box-shadow .2s ease; }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(213,36,47,.1); }
.inquiry-form .invalid { border-color: var(--red); }
.consent { display: flex !important; align-items: flex-start; gap: 10px; }
.consent input { width: 17px; height: 17px; margin: 2px 0 0; }
.consent span { font-weight: 400; }
.submit-button { width: 100%; border: 0; }
.form-status { min-height: 24px; margin: 12px 0 0; font-size: 13px; }

.site-footer { color: #c6c9ce; background: #0d0f11; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); padding: 76px 0 62px; gap: 70px; }
.footer-brand img { width: 180px; height: 60px; margin-bottom: 22px; object-fit: contain; }
.footer-brand p { max-width: 340px; color: #8f949b; }
.site-footer h2 { margin-bottom: 24px; color: white; font-size: 14px; text-transform: uppercase; }
.site-footer a { display: block; margin: 10px 0; color: #9da2a9; font-size: 13px; }
.site-footer a:hover { color: white; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 23px 0; border-top: 1px solid #2b2e32; }
.footer-bottom p, .footer-bottom a { margin: 0; color: #777c83; font-size: 12px; }
.whatsapp-float { position: fixed; z-index: 90; right: 24px; bottom: 22px; display: flex; min-height: 52px; align-items: center; gap: 10px; padding: 8px 16px 8px 8px; color: white; background: var(--green); border-radius: 28px; box-shadow: 0 12px 30px rgba(0,0,0,.22); }
.whatsapp-float span { display: grid; width: 36px; height: 36px; place-items: center; border: 2px solid white; border-radius: 50%; font-size: 10px; font-weight: 900; }
.whatsapp-float b { font-size: 13px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; } .reveal { opacity: 1; transform: none; } }

@media (max-width: 1180px) {
  :root { --section: 92px; }
  h1 { font-size: 62px; }
  h2 { font-size: 42px; }
  .main-nav { gap: 18px; }
  .main-nav a { font-size: 12px; }
  .nav-cta { display: none; }
  .hero { min-height: 820px; }
  .advantage-grid { gap: 38px; }
  .certification-strip article { grid-template-columns: 110px 1fr; }
  .certification-strip img { width: 110px; height: 150px; }
  .customization-grid { grid-template-columns: 1fr 1fr; }
  .customization-grid .button { width: max-content; }
}

@media (max-width: 900px) {
  :root { --gutter: 22px; --section: 80px; }
  h1 { font-size: 54px; }
  h2 { font-size: 38px; }
  .nav-shell { min-height: 74px; }
  .menu-toggle { display: block; margin-left: auto; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; top: 74px; right: 0; bottom: 0; left: 0; display: none; flex-direction: column; align-items: flex-start; justify-content: flex-start; padding: 38px 24px; color: var(--ink); background: white; gap: 0; }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
  .hero { min-height: calc(100svh - 18px); }
  .hero-grid { grid-template-columns: 1fr; padding-top: 115px; }
  .hero-copy { padding: 30px 0 0; }
  .hero-product { width: min(100%, 620px); margin: -40px auto 20px; }
  .hero-product img { max-height: 480px; }
  .scroll-cue { display: none; }
  .overview-grid, .process-layout, .company-grid, .faq-layout, .contact-grid { grid-template-columns: 1fr; gap: 55px; }
  .overview-copy { padding-top: 0; }
  .capability-rail { grid-template-columns: 1fr 1fr; }
  .capability-rail article:nth-child(2) { border-right: 0; }
  .capability-rail article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading.split { grid-template-columns: 1fr; gap: 20px; }
  .advantage-grid { grid-template-columns: 1fr; }
  .advantage-feature { position: static; }
  .application-grid { grid-template-columns: 1fr 1fr; }
  .case-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 390px 230px; }
  .case-gallery .case-main { grid-column: 1 / 3; grid-row: auto; }
  .case-gallery figure:nth-child(4) { display: none; }
  .video-block { grid-template-columns: 1fr; }
  .certification-strip { grid-template-columns: 1fr; }
  .certification-strip article { grid-template-columns: 150px 1fr; }
  .certification-strip img { width: 150px; height: 170px; }
  .team-band { grid-template-columns: 1fr; }
  .customization-grid { grid-template-columns: 1fr; gap: 24px; }
  .faq-layout .section-heading { position: static; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 45px; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 620px) {
  :root { --gutter: 17px; --section: 66px; }
  body { font-size: 15px; }
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  .nav-shell { width: calc(100% - 28px); }
  .brand { width: 150px; }
  .brand img { width: 150px; }
  .hero { min-height: calc(100svh - 14px); }
  .hero-grid { padding-top: 100px; }
  .hero-lead { font-size: 17px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; margin-bottom: 28px; }
  .hero-actions .button-ghost { display: none; }
  .hero-specs { gap: 10px; }
  .hero-specs dd { font-size: 22px; }
  .hero-specs dt { font-size: 9px; }
  .hero-specs span { font-size: 10px; }
  .hero-product { margin-top: -20px; }
  .hero-product img { max-height: 300px; }
  .section-heading { margin-bottom: 38px; }
  .large-copy { font-size: 19px; }
  .capability-rail, .advantage-list, .application-grid, .company-metrics { grid-template-columns: 1fr; }
  .capability-rail article { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--line); }
  .capability-rail article:last-child { border-bottom: 0; }
  .capability-rail h3 { margin-top: 24px; }
  .process-media { padding: 15px; }
  .process-media figcaption { right: 15px; bottom: 15px; left: 15px; padding: 12px; }
  .process-steps li { grid-template-columns: 38px 1fr; }
  .advantage-list article { min-height: 205px; }
  .application-item div { min-height: auto; }
  .model-controls { display: grid; grid-template-columns: 1fr 1fr; }
  .model-controls button:first-child { grid-column: 1 / -1; }
  .case-gallery { display: grid; grid-template-columns: 1fr; grid-template-rows: 350px 220px; }
  .case-gallery .case-main { grid-column: auto; }
  .case-gallery figure:nth-child(n+3) { display: none; }
  .video-copy { padding: 30px 24px; }
  .team-band img { height: 300px; }
  .team-band div { padding: 32px 24px; }
  .team-band h3 { font-size: 28px; }
  .certification-strip article { grid-template-columns: 95px 1fr; padding: 17px; }
  .certification-strip img { width: 95px; height: 130px; }
  .contact-copy h2 { font-size: 38px; }
  .inquiry-form { padding: 25px 19px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; padding-top: 58px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
  .whatsapp-float { right: 14px; bottom: 14px; padding-right: 8px; }
  .whatsapp-float b { display: none; }
}

@media (max-width: 620px) and (max-height: 720px) {
  .hero-grid { padding-top: 86px; }
  .hero-copy { padding-top: 18px; }
  .hero-lead { margin-bottom: 20px; }
  .hero-specs span { display: none; }
  .hero-product { margin-top: -36px; }
  .hero-product img { max-height: 220px; }
}
