:root {
  --purple: #04395d;
  --purple-dark: #03304f;
  --purple-deep: #012942;
  --blue: #14b8ed;
  --blue-dark: #2180aa;
  --green: #14b8ed;
  --yellow: #35c7f2;
  --ink: #0b2740;
  --muted: #5d6e7b;
  --soft: #eff8fc;
  --line: #d8eaf3;
  --white: #fff;
  --container: 1180px;
  --shadow: 0 18px 45px rgba(3, 57, 93, .15);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; overflow-x: hidden; }
body { margin: 0; color: var(--ink); background: #fff; font-family: Arial, Helvetica, sans-serif; line-height: 1.55; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 9999; left: 12px; top: 12px; padding: 10px 15px; color: #fff; background: #111; transform: translateY(-180%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; z-index: 200; top: 0; transition: box-shadow .25s ease; }
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(1, 41, 66, .18); }
.header-ribbon { color: #fff; background: var(--purple-deep); font-size: 12px; }
.header-ribbon__inner { min-height: 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.header-main { background: var(--purple); }
.header-main__inner { min-height: 72px; display: flex; align-items: center; gap: 14px; }
.brand { flex: 0 0 auto; width: 230px; align-self: stretch; display: grid; align-items: center; }
.brand__plate { display: grid; place-items: center; min-height: 72px; padding: 8px 16px; background: #fff; clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%); }
.brand__plate img { width: 185px; height: auto; }
.main-nav { margin-left: auto; min-height: 72px; display: flex; align-items: stretch; background: var(--blue); }
.main-nav a { min-width: 92px; display: grid; place-items: center; padding: 0 16px; color: #fff; font-size: 12px; font-weight: 800; text-transform: uppercase; transition: background .2s ease, color .2s ease; }
.main-nav a:hover, .main-nav a:focus-visible { background: #0686c3; color: #fff; }
.header-whatsapp { min-height: 40px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 0 14px; margin-left: 2px; color: #25d366; background: #fff; border-radius: 999px; font-size: 11px; font-weight: 900; text-transform: uppercase; white-space: nowrap; transition: transform .2s ease; }
.header-whatsapp:hover { transform: translateY(-2px); }
.header-whatsapp svg { width: 17px; height: 17px; flex: 0 0 17px; display: block; fill: none; transform: none !important; }
.menu-toggle { display: none; width: 46px; height: 46px; margin-left: auto; padding: 10px; color: #fff; background: var(--blue); border: 0; border-radius: 7px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: currentColor; transition: transform .2s, opacity .2s; }
.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); }

.hero { position: relative; isolation: isolate; min-height: 590px; display: grid; align-items: center; overflow: hidden; background: #e7f1f6 url('/static/images/estrutura-producao.jpeg') right center/cover no-repeat; }
.hero__shade { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(244,249,252,.99) 0%, rgba(244,249,252,.96) 36%, rgba(244,249,252,.79) 52%, rgba(244,249,252,.28) 73%, rgba(4,57,93,.18) 100%); }
.hero__inner { width: 100%; padding: 78px 0 92px; }
.hero__copy { width: min(565px, 51%); }
.section-kicker { display: inline-flex; align-items: center; gap: 9px; color: var(--purple); font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.section-kicker::before { content: ''; width: 34px; height: 4px; background: var(--yellow); }
.section-kicker--dark { color: #111; }
.section-kicker--light { color: #fff; }
.hero h1 { margin: 13px 0 28px; font-size: clamp(42px, 4.2vw, 60px); line-height: .99; letter-spacing: -.05em; font-weight: 900; text-wrap: balance; }
.hero h1 strong { font-weight: 900; text-transform: uppercase; }
.hero p { max-width: 555px; margin: 0 0 16px; color: #181818; font-size: 15px; font-weight: 500; }
.hero__actions { display: flex; gap: 12px; margin-top: 28px; }
.hero__line { position: absolute; right: 20%; top: 34%; width: 75px; height: 2px; background: rgba(255,255,255,.9); transform: rotate(-47deg); box-shadow: 14px 11px 0 rgba(255,255,255,.75); }
.hero__diamond { position: absolute; right: 13%; bottom: 18%; width: 23px; height: 23px; border: 2px solid #fff; transform: rotate(45deg); }

.button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; padding: 11px 24px; border: 0; border-radius: 3px; font-size: 14px; font-weight: 800; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(1,41,66,.18); }
.button--green { color: #fff; background: var(--green); }
.button--green:hover { background: #0ca9dd; }
.button--purple { color: #fff; background: var(--purple); }
.button--purple:hover { background: var(--purple-dark); }
.button--yellow { color: var(--purple-deep); background: var(--yellow); }
.button--round { border-radius: 999px; }
.button--full { width: 100%; }

.numbers { position: relative; z-index: 2; margin-top: -1px; padding: 95px 0 78px; color: #fff; background: linear-gradient(120deg, var(--purple-deep), var(--purple)); }
.numbers__wave { position: absolute; z-index: -1; top: -44px; left: -4%; width: 108%; height: 80px; background: var(--purple); clip-path: polygon(0 25%, 34% 68%, 62% 40%, 100% 26%, 100% 100%, 0 100%); }
.numbers__heading { position: relative; margin-bottom: 42px; text-align: center; }
.numbers__heading h2 { margin: 0; color: #fff; font-size: clamp(27px, 3vw, 39px); line-height: 1.05; letter-spacing: -.035em; font-weight: 900; }
.numbers__diamond { position: absolute; right: 2%; top: 50%; width: 26px; height: 26px; border: 3px solid #fff; transform: translateY(-50%) rotate(45deg); }
.numbers__layout { display: grid; grid-template-columns: 1fr 275px; align-items: center; gap: 48px; }
.numbers__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 26px; }
.stat { text-align: center; }
.stat strong, .stat span { display: block; }
.stat strong { font-size: clamp(38px, 4vw, 57px); line-height: .95; letter-spacing: -.05em; font-weight: 900; }
.stat span { margin-top: 9px; font-size: 14px; font-weight: 800; }
.skills { display: grid; gap: 15px; }
.skill__row { margin-bottom: 6px; display: flex; justify-content: space-between; gap: 12px; font-size: 12px; font-weight: 800; }
.skill__bar { height: 24px; background: rgba(255,255,255,.13); overflow: hidden; }
.skill__bar span { display: block; width: 100%; height: 100%; background: var(--green); transform-origin: left; animation: loadbar 1.2s ease both; }
@keyframes loadbar { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.section { padding: 102px 0; }
.about { background: #fff; }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 78px; }
.about__visual { position: relative; padding: 0 28px 30px 0; }
.about__photo-wrap { position: relative; overflow: hidden; border-radius: 2px; box-shadow: var(--shadow); }
.about__photo-wrap::after { content: ''; position: absolute; inset: 0; border: 12px solid rgba(255,255,255,.22); pointer-events: none; }
.about__photo-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about__dots { position: absolute; z-index: -1; right: -18px; bottom: 0; width: 180px; height: 180px; opacity: .55; background-image: radial-gradient(var(--purple) 2px, transparent 2px); background-size: 14px 14px; }
.about__mini-card { position: absolute; right: 0; bottom: 12px; min-width: 225px; padding: 18px 20px; color: #fff; background: var(--purple); border-left: 6px solid var(--yellow); box-shadow: var(--shadow); }
.about__mini-card strong, .about__mini-card span { display: block; }
.about__mini-card span { margin-top: 4px; color: rgba(255,255,255,.74); font-size: 12px; }
.about h2, .center-heading h2, .showcase__heading h2, .faq-intro h2 { margin: 4px 0 4px; color: var(--ink); font-size: clamp(40px, 4.4vw, 60px); line-height: 1; letter-spacing: -.05em; font-weight: 900; text-transform: uppercase; }
.about h2 span, .center-heading h2 span, .showcase__heading h2 span, .faq-intro h2 span { color: var(--purple); }
.title-line { width: 118px; height: 5px; margin: 20px 0 28px; background: var(--yellow); }
.title-line--center { margin-inline: auto; }
.about__content p { margin: 0 0 16px; color: var(--muted); font-size: 15px; }
.about__checks { display: grid; gap: 9px; margin: 25px 0 28px; color: var(--purple-dark); font-size: 14px; font-weight: 800; }

.production { background: linear-gradient(180deg, #f4fbfe 0%, #ffffff 100%); }
.production-grid { display: grid; grid-template-columns: .9fr 1.2fr .9fr; gap: 22px; align-items: stretch; }
.production-card { position: relative; min-width: 0; min-height: 430px; margin: 0; overflow: hidden; background: var(--purple-deep); box-shadow: 0 18px 45px rgba(1,41,66,.13); }
.production-card img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; transition: transform .45s ease; }
.production-card--featured img { object-position: center; }
.production-card:hover img { transform: scale(1.035); }
.production-card::after { content: ''; position: absolute; inset: 52% 0 0; background: linear-gradient(transparent, rgba(1,41,66,.94)); pointer-events: none; }
.production-card figcaption { position: absolute; z-index: 2; right: 22px; bottom: 22px; left: 22px; color: #fff; }
.production-card figcaption strong, .production-card figcaption span { display: block; }
.production-card figcaption strong { font-size: 20px; text-transform: uppercase; }
.production-card figcaption span { margin-top: 4px; color: #bfeeff; font-size: 12px; font-weight: 700; }

.services { background: linear-gradient(#f3fafe, #fff); }
.center-heading { max-width: 760px; margin: 0 auto 55px; text-align: center; }
.center-heading > p { margin: 0; color: var(--muted); }
.service-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-bottom: 34px; }
.service-feature { display: grid; grid-template-columns: 1.02fr .98fr; min-height: 330px; overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: 0 15px 40px rgba(3,57,93,.09); }
.service-feature > img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; }
.service-feature > div { padding: 34px 30px; align-self: center; }
.service-feature > div > span { color: var(--green); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.service-feature h3 { margin: 7px 0 14px; color: var(--purple); font-size: 31px; line-height: 1; text-transform: uppercase; }
.service-feature p { color: var(--muted); font-size: 14px; }
.service-feature a { color: var(--purple); font-size: 13px; font-weight: 900; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card { overflow: hidden; background: #fff; box-shadow: 0 14px 36px rgba(3,57,93,.09); border-bottom: 5px solid var(--purple); transition: transform .25s ease; }
.product-card:hover { transform: translateY(-7px); }
.product-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.product-card div { position: relative; padding: 20px 22px 24px; }
.product-card div::before { content: ''; position: absolute; left: 22px; top: 0; width: 54px; height: 4px; background: var(--yellow); }
.product-card h3 { margin: 6px 0 7px; color: var(--purple); font-size: 20px; text-transform: uppercase; }
.product-card p { margin: 0; color: var(--muted); font-size: 13px; }

.promo-strip { padding: 46px 0; color: #fff; background: linear-gradient(100deg, var(--purple-deep), var(--purple)); position: relative; overflow: hidden; }
.promo-strip::after { content: ''; position: absolute; right: -60px; top: -80px; width: 300px; height: 300px; border: 45px solid rgba(255,255,255,.06); border-radius: 50%; }
.promo-strip__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.promo-strip span { color: var(--yellow); font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.promo-strip h2 { margin: 5px 0 3px; font-size: clamp(28px, 3vw, 42px); line-height: 1; }
.promo-strip p { margin: 9px 0 0; color: rgba(255,255,255,.75); }

.showcase { background: #fff; }
.showcase__heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 65px; margin-bottom: 45px; }
.showcase__heading > p { margin: 0 0 13px; color: var(--muted); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; gap: 18px; }
.portfolio-card { position: relative; margin: 0; overflow: hidden; background: #ddd; }
.portfolio-card--large { grid-column: span 2; grid-row: span 2; }
.portfolio-card--wide { grid-column: span 2; }
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.portfolio-card:hover img { transform: scale(1.045); }
.portfolio-card::after { content: ''; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(1,41,66,.94)); }
.portfolio-card figcaption { position: absolute; z-index: 2; left: 24px; bottom: 20px; color: #fff; }
.portfolio-card figcaption strong, .portfolio-card figcaption span { display: block; }
.portfolio-card figcaption strong { font-size: 21px; text-transform: uppercase; }
.portfolio-card figcaption span { color: var(--yellow); font-size: 12px; font-weight: 800; }

.why-us { position: relative; isolation: isolate; padding: 100px 0; color: #fff; overflow: hidden; background: var(--purple-deep); }
.why-us__background { position: absolute; z-index: -2; inset: 0; background: url('/static/images/estrutura-impressora-digital.jpeg') center/cover no-repeat; opacity: .26; }
.why-us::after { content: ''; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(1,41,66,.98), rgba(4,57,93,.88)); }
.why-us__intro { max-width: 760px; margin: 0 auto 50px; text-align: center; }
.why-us__intro h2 { margin: 12px 0 0; font-size: clamp(36px, 4vw, 56px); line-height: 1; text-transform: uppercase; }
.why-us__intro h2 strong { color: var(--yellow); }
.why-us__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.reason-card { position: relative; padding: 36px 30px 32px; text-align: center; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(4px); }
.reason-card__number { width: 65px; height: 65px; margin: 0 auto 20px; display: grid; place-items: center; color: var(--purple-deep); background: var(--yellow); border-radius: 50%; font-size: 30px; font-weight: 900; }
.reason-card h3 { margin: 0 0 10px; font-size: 20px; text-transform: uppercase; }
.reason-card p { margin: 0; color: rgba(255,255,255,.75); font-size: 14px; }

.how { background: #f3fafe; }
.steps { max-width: 980px; margin: 0 auto; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { position: relative; padding: 28px 26px; background: #fff; border-top: 5px solid var(--purple); box-shadow: 0 15px 38px rgba(3,57,93,.09); }
.step > span { display: block; margin-bottom: 22px; color: var(--purple); font-size: 48px; line-height: 1; font-weight: 900; }
.step h3 { margin: 0 0 10px; font-size: 19px; text-transform: uppercase; }
.step p { margin: 0; color: var(--muted); font-size: 13px; }

.faq-section { padding: 100px 0; background: #fff; }
.faq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 78px; }
.faq-intro > p { color: var(--muted); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 22px 50px 22px 0; cursor: pointer; color: var(--purple-deep); font-size: 16px; font-weight: 900; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; position: absolute; right: 0; top: 17px; width: 32px; height: 32px; display: grid; place-items: center; color: var(--purple); background: #f1edf6; border-radius: 50%; font-size: 21px; }
.faq-list details[open] summary::after { content: '−'; color: #fff; background: var(--purple); }
.faq-list p { margin: -2px 50px 22px 0; color: var(--muted); font-size: 14px; }

.contact { position: relative; overflow: hidden; padding: 95px 0; color: #fff; background: var(--purple); }
.contact::before { content: ''; position: absolute; inset: 0; opacity: .12; background-image: radial-gradient(#fff 1.5px, transparent 1.5px); background-size: 20px 20px; }
.contact__shape { position: absolute; right: -8%; bottom: -45%; width: 520px; height: 520px; border: 70px solid rgba(53,199,242,.13); border-radius: 50%; }
.contact__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 72px; }
.contact__copy h2 { margin: 10px 0 20px; font-size: clamp(40px, 4.5vw, 62px); line-height: .98; text-transform: uppercase; }
.contact__copy h2 strong { color: var(--yellow); }
.contact__copy > p { color: rgba(255,255,255,.78); }
.contact__quick { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
.contact__quick > * { padding: 16px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); }
.contact__quick span, .contact__quick strong { display: block; }
.contact__quick span { color: var(--yellow); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }
.contact__quick strong { margin-top: 4px; font-size: 14px; }
.contact-form { padding: 30px; color: var(--ink); background: #fff; box-shadow: 0 28px 60px rgba(1,41,66,.26); }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 14px; color: var(--purple-deep); font-size: 12px; font-weight: 900; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 12px 13px; color: #222; background: #f6fafc; border: 1px solid #d8eaf3; border-radius: 2px; outline: 0; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(20,184,237,.14); }
.contact-form textarea { resize: vertical; }
.contact-form small { display: block; margin-top: 10px; color: #777; font-size: 10px; text-align: center; }

.footer { padding: 64px 0 22px; color: rgba(255,255,255,.72); background: #01263e; }
.footer__grid { display: grid; grid-template-columns: 1.5fr .7fr .8fr; gap: 65px; }
.footer__brand p { max-width: 500px; }
.brand__plate--footer { width: 230px; min-height: 64px; clip-path: none; border-radius: 2px; }
.footer__grid > div { display: grid; align-content: start; gap: 8px; }
.footer strong { color: #fff; text-transform: uppercase; }
.footer a:hover { color: var(--yellow); }
.footer__bottom { margin-top: 42px; padding-top: 18px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }

.whatsapp-float { position: fixed; z-index: 500; right: max(20px, env(safe-area-inset-right)); bottom: max(20px, env(safe-area-inset-bottom)); min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 12px 18px; color: #fff; background: #25d366; border-radius: 999px; font-size: 13px; font-weight: 900; line-height: 1; box-shadow: 0 10px 30px rgba(37,211,102,.32); animation: whatsappPulse 2.2s infinite; }
.whatsapp-float svg { width: 24px; height: 24px; flex: 0 0 24px; display: block; fill: none; transform: none !important; transform-origin: center !important; }
@keyframes whatsappPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.43), 0 10px 30px rgba(37,211,102,.28); } 50% { box-shadow: 0 0 0 12px rgba(37,211,102,0), 0 10px 30px rgba(37,211,102,.28); } }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1120px) {
  .brand { width: 205px; }
  .brand__plate img { width: 168px; }
  .main-nav a { min-width: 0; padding: 0 12px; font-size: 11px; }
  .header-whatsapp span { display: none; }
  .header-whatsapp { width: 42px; justify-content: center; padding: 0; }
  .hero__copy { width: 56%; }
  .numbers__layout { grid-template-columns: 1fr; }
  .skills { grid-template-columns: repeat(2, 1fr); }
  .about__grid { gap: 50px; }
  .production-grid { grid-template-columns: 1fr 1fr; }
  .production-card:last-child { grid-column: span 2; min-height: 330px; }
  .production-card:last-child img { min-height: 330px; }
}


@media (max-width: 900px) {
  .header-ribbon__inner span:first-child { display: none; }
  .header-ribbon__inner { justify-content: center; }
  .header-main__inner { min-height: 72px; }
  .brand { width: 220px; }
  .menu-toggle { display: block; }
  .header-whatsapp { margin-left: 0; }
  .main-nav { position: fixed; z-index: 250; top: 100px; right: 16px; left: 16px; min-height: 0; padding: 10px; display: grid; background: var(--purple-deep); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .2s ease; }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { min-height: 46px; place-items: center start; padding: 0 14px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .hero { min-height: 600px; background-position: 66% center; }
  .hero__shade { background: linear-gradient(90deg, rgba(244,249,252,.99), rgba(244,249,252,.94) 58%, rgba(244,249,252,.54)); }
  .hero__copy { width: 68%; }
  .hero__line, .hero__diamond { display: none; }
  .numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid, .faq-grid, .contact__grid { grid-template-columns: 1fr; }
  .about__visual { max-width: 650px; }
  .service-feature-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .production-grid { grid-template-columns: 1fr; }
  .production-card, .production-card:last-child { grid-column: auto; min-height: 360px; }
  .production-card img, .production-card:last-child img { min-height: 360px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-card--large { grid-column: span 2; }
  .portfolio-card--wide { grid-column: span 2; }
  .showcase__heading { grid-template-columns: 1fr; gap: 5px; }
  .why-us__cards, .steps { grid-template-columns: 1fr; }
  .steps { max-width: 650px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--container)); }
  .header-ribbon { display: none; }
  .site-header { top: 0; }
  .header-main__inner { min-height: 66px; }
  .brand { width: 180px; }
  .brand__plate { min-height: 66px; padding-inline: 12px; }
  .brand__plate img { width: 145px; }
  .header-whatsapp { display: none; }
  .main-nav { top: 74px; right: 10px; left: 10px; }
  .hero { min-height: 650px; background-position: 71% center; }
  .hero__shade { background: linear-gradient(90deg, rgba(244,249,252,.99) 0 72%, rgba(244,249,252,.78) 100%); }
  .hero__inner { padding: 68px 0 92px; }
  .hero__copy { width: 100%; }
  .hero h1 { font-size: clamp(39px, 12vw, 54px); max-width: 520px; }
  .hero p { max-width: 520px; font-size: 14px; }
  .hero__actions { display: grid; grid-template-columns: 1fr 1fr; max-width: 390px; }
  .numbers { padding: 78px 0 64px; }
  .numbers__wave { top: -28px; height: 54px; }
  .numbers__diamond { display: none; }
  .numbers__grid { grid-template-columns: 1fr; gap: 26px; }
  .stat strong { font-size: 48px; }
  .skills { grid-template-columns: 1fr; }
  .section { padding: 78px 0; }
  .about__grid { gap: 48px; }
  .about__visual { padding: 0 12px 25px 0; }
  .about__mini-card { right: 0; max-width: 210px; }
  .about h2, .center-heading h2, .showcase__heading h2, .faq-intro h2 { font-size: clamp(37px, 11vw, 50px); }
  .service-feature { grid-template-columns: 1fr; }
  .service-feature > img { min-height: 240px; aspect-ratio: 16/10; }
  .products-grid { grid-template-columns: 1fr; }
  .promo-strip__inner { align-items: flex-start; flex-direction: column; gap: 24px; }
  .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .portfolio-card--large, .portfolio-card--wide { grid-column: auto; grid-row: auto; }
  .why-us { padding: 78px 0; }
  .faq-section, .contact { padding: 78px 0; }
  .field-row, .contact__quick { grid-template-columns: 1fr; }
  .contact-form { padding: 22px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 5px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { width: 56px; height: 56px; padding: 0; justify-content: center; }
}
