:root {
  --font-heading: "Roboto Condensed";
  --font-body: "Source Sans 3";
  --blue: #3e4095;
  --blue-dark: #071c4a;
  --blue-deep: #041333;
  --red: #ee373b;
  --red-dark: #d82328;
  --ink: #101b35;
  --muted: #5f6879;
  --line: #dfe3ea;
  --soft: #f4f6f9;
  --white: #ffffff;
  --warm: #f4f0e9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body), Arial, sans-serif;
  margin: 0;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-body), Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.container {
  margin: 0 auto;
  max-width: 1240px;
  padding-left: 28px;
  padding-right: 28px;
  width: 100%;
}

.site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(7, 28, 74, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 42px;
  min-height: 82px;
}

.brand-link {
  display: block;
  flex: 0 0 auto;
  width: 218px;
}

.brand-link img {
  display: block;
  height: auto;
  width: 100%;
}

nav {
  align-items: center;
  display: flex;
  gap: 30px;
  margin-left: auto;
}

nav a {
  color: #27324b;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--red);
}

.button {
  align-items: center;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 6px;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  gap: 12px;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.button:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
}

.button svg,
.text-link svg,
.whatsapp-direct svg {
  height: 20px;
  width: 20px;
}

.button-small {
  min-height: 44px;
  padding: 10px 17px;
}

.button-outline {
  background: transparent;
  border-color: #bfc6d3;
  color: var(--blue-dark);
}

.button-outline:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
}

.hero {
  background: var(--white);
  overflow: hidden;
  position: relative;
}

.hero::before {
  background: linear-gradient(
    90deg,
    rgba(62, 64, 149, 0.055) 1px,
    transparent 1px
  );
  background-size: 92px 100%;
  content: "";
  inset: 0 0 118px;
  pointer-events: none;
  position: absolute;
}

.hero-grid {
  align-items: center;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 650px;
  padding-bottom: 48px;
  padding-top: 48px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  padding-right: 44px;
}

.eyebrow {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-heading), Arial, sans-serif;
}

h1 {
  color: var(--blue-dark);
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.99;
  margin-bottom: 25px;
  max-width: 670px;
}

h1 span {
  color: var(--blue);
}

.hero-lead {
  color: #4b556b;
  font-size: 21px;
  line-height: 1.5;
  margin-bottom: 30px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.trust-list li {
  align-items: center;
  color: #39435a;
  display: flex;
  font-size: 14px;
  font-weight: 650;
  gap: 7px;
}

.trust-list svg {
  color: var(--red);
  height: 18px;
  stroke-width: 2.5;
  width: 18px;
}

.hero-visual {
  border-radius: 12px 0 0 12px;
  box-shadow: 0 20px 60px rgba(7, 28, 74, 0.14);
  height: 520px;
  margin-right: -9vw;
  overflow: hidden;
  position: relative;
}

.hero-visual > img {
  object-fit: cover;
  object-position: 62% center;
}

.factory-stamp {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-left: 5px solid var(--red);
  bottom: 24px;
  box-shadow: 0 12px 30px rgba(7, 28, 74, 0.18);
  display: flex;
  gap: 16px;
  left: 24px;
  max-width: 370px;
  padding: 13px 17px;
  position: absolute;
}

.factory-stamp img {
  height: auto;
  width: 115px;
}

.factory-stamp span {
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
}

.hero-band {
  background: var(--blue-dark);
  color: var(--white);
  position: relative;
  z-index: 2;
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.band-grid > div {
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  gap: 13px;
  justify-content: center;
  min-height: 118px;
}

.band-grid > div:last-child {
  border-right: 0;
}

.band-grid strong {
  color: var(--white);
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 27px;
  font-weight: 800;
}

.band-grid span {
  color: #c7d0e3;
  font-size: 14px;
  line-height: 1.25;
  max-width: 120px;
}

.section {
  padding: 105px 0;
  scroll-margin-top: 90px;
}

.section-heading {
  margin-bottom: 48px;
}

.split-heading {
  align-items: end;
  display: grid;
  gap: 60px;
  grid-template-columns: 1.05fr 0.75fr;
}

.section-heading h2,
.authority-copy h2,
.contact-copy h2,
.faq-heading h2 {
  color: var(--blue-dark);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin-bottom: 0;
}

.split-heading > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 5px;
}

.product-grid {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 288px;
  padding: 31px;
  position: relative;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.product-card:hover {
  background: var(--soft);
  transform: translateY(-2px);
}

.product-card > span {
  color: var(--red);
  display: block;
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 36px;
}

.product-card h3 {
  color: var(--blue-dark);
  font-size: 25px;
  line-height: 1.12;
  margin-bottom: 13px;
}

.product-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 24px;
}

.product-card a {
  align-items: center;
  bottom: 27px;
  color: var(--blue);
  display: flex;
  font-size: 14px;
  font-weight: 750;
  gap: 8px;
  position: absolute;
}

.product-card a svg {
  height: 17px;
  width: 17px;
}

.audience-section {
  background: var(--soft);
}

.centered-heading {
  margin-left: auto;
  margin-right: auto;
  max-width: 780px;
  text-align: center;
}

.audience-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

.audience-card {
  background: var(--white);
  border: 1px solid #e3e7ee;
  box-shadow: 0 16px 42px rgba(7, 28, 74, 0.08);
}

.audience-image {
  height: 320px;
  overflow: hidden;
  position: relative;
}

.audience-image img {
  object-fit: cover;
}

.professional-card .audience-image img {
  object-position: 53% center;
}

.audience-content {
  padding: 36px 38px 39px;
}

.card-label {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 13px;
  text-transform: uppercase;
}

.audience-content h3 {
  color: var(--blue-dark);
  font-size: 31px;
  line-height: 1.1;
  margin-bottom: 15px;
}

.audience-content > p:not(.card-label) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 23px;
}

.audience-content ul,
.contact-copy ul {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.audience-content li,
.contact-copy li {
  align-items: flex-start;
  color: #374158;
  display: flex;
  font-size: 15px;
  font-weight: 600;
  gap: 10px;
}

.audience-content li svg,
.contact-copy li svg {
  color: var(--red);
  flex: 0 0 19px;
  height: 19px;
  margin-top: 1px;
  stroke-width: 2.5;
  width: 19px;
}

.text-link,
.whatsapp-direct {
  align-items: center;
  color: var(--blue);
  display: inline-flex;
  font-size: 16px;
  font-weight: 800;
  gap: 9px;
}

.process-section {
  background: var(--blue-deep);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.process-section::after {
  border: 80px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
  content: "";
  height: 500px;
  position: absolute;
  right: -220px;
  top: -210px;
  width: 500px;
}

.process-section .container {
  position: relative;
  z-index: 1;
}

.light-heading h2 {
  color: var(--white);
}

.light-heading > p {
  color: #b7c2d9;
}

.process-grid {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 42px;
}

.process-grid article {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  padding: 34px 38px 38px 0;
}

.process-grid article + article {
  padding-left: 38px;
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid article > span {
  color: var(--red);
  display: block;
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 44px;
}

.process-grid h3 {
  color: var(--white);
  font-size: 25px;
  margin-bottom: 11px;
}

.process-grid p {
  color: #aebbd3;
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

.deadline-panel {
  align-items: center;
  background: var(--white);
  color: var(--blue-dark);
  display: grid;
  gap: 36px;
  grid-template-columns: 1.1fr 1.8fr;
  padding: 31px 36px;
}

.deadline-intro {
  align-items: center;
  display: flex;
  gap: 16px;
}

.pin-icon {
  align-items: center;
  background: var(--red);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  flex: 0 0 50px;
  height: 50px;
  justify-content: center;
}

.pin-icon svg {
  height: 25px;
  width: 25px;
}

.deadline-intro p {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.deadline-intro strong {
  font-size: 17px;
  line-height: 1.25;
}

.deadline-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.deadline-items > div {
  border-left: 1px solid var(--line);
  padding: 0 19px;
}

.deadline-items strong {
  display: block;
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 25px;
  font-weight: 800;
}

.deadline-items span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  line-height: 1.25;
}

.deadline-note {
  color: #8998b5;
  font-size: 12px;
  margin: 13px 0 0;
  text-align: right;
}

.authority-section {
  background: var(--white);
}

.authority-grid {
  align-items: center;
  display: grid;
  gap: 90px;
  grid-template-columns: 1.05fr 0.75fr;
}

.authority-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin: 24px 0 35px;
  max-width: 650px;
}

.authority-points {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(3, 1fr);
}

.authority-points > div {
  border-left: 3px solid var(--red);
  padding-left: 16px;
}

.authority-points strong {
  color: var(--blue-dark);
  display: block;
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 20px;
  line-height: 1.1;
  margin-bottom: 6px;
}

.authority-points span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  line-height: 1.35;
}

.brand-panel {
  align-items: center;
  background: linear-gradient(145deg, #f7f8fb, #eef0f5);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 430px;
  justify-content: center;
  padding: 45px;
  position: relative;
}

.brand-panel::after {
  border-bottom: 22px solid var(--red);
  border-left: 22px solid transparent;
  bottom: 0;
  content: "";
  position: absolute;
  right: 0;
}

.brand-panel-logo {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

.vidroglobo-mark img {
  height: auto;
  width: 250px;
}

.temper-mark img {
  height: auto;
  width: 230px;
}

.plus-sign {
  color: #98a0b2;
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 32px;
  font-weight: 500;
  margin: 17px 0 12px;
}

.brand-panel p {
  color: var(--muted);
  font-size: 14px;
  margin: 23px 0 0;
  text-align: center;
}

.contact-section {
  background: var(--soft);
  padding-bottom: 0;
}

.contact-grid {
  align-items: start;
  display: grid;
  gap: 80px;
  grid-template-columns: 0.75fr 1.25fr;
}

.contact-copy {
  padding-top: 29px;
  position: sticky;
  top: 110px;
}

.contact-lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
  margin: 23px 0 30px;
}

.whatsapp-direct {
  margin-top: 7px;
}

.quote-form {
  background: var(--white);
  border-top: 5px solid var(--red);
  box-shadow: 0 18px 50px rgba(7, 28, 74, 0.1);
  display: grid;
  gap: 18px;
  padding: 38px;
  scroll-margin-top: 90px;
}

.form-heading {
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin-bottom: 3px;
  padding-bottom: 20px;
}

.form-heading span {
  color: var(--blue-dark);
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 25px;
  font-weight: 800;
}

.form-heading p {
  color: #7a8393;
  font-size: 12px;
  margin: 0;
}

.field-row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

.quote-form label {
  color: #29344c;
  display: grid;
  font-size: 13px;
  font-weight: 700;
  gap: 7px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  background: var(--white);
  border: 1px solid #cfd5df;
  border-radius: 4px;
  color: var(--ink);
  font-size: 15px;
  min-height: 47px;
  outline: none;
  padding: 11px 13px;
  transition:
    border 0.2s ease,
    box-shadow 0.2s ease;
  width: 100%;
}

.quote-form textarea {
  min-height: 76px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(62, 64, 149, 0.12);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #9ba3b2;
}

.form-button {
  border-radius: 4px;
  margin-top: 4px;
  width: 100%;
}

.form-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-honeypot {
  height: 0;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  width: 0;
}

.form-status {
  color: var(--blue);
  font-size: 13px;
  font-weight: 650;
  height: 0;
  margin: 0;
  opacity: 0;
  overflow: hidden;
  text-align: center;
  transition: all 0.2s ease;
}

.form-status.visible {
  height: auto;
  opacity: 1;
}

.form-status.error {
  color: #b42318;
}

.faq-wrap {
  border-top: 1px solid #dce1e9;
  display: grid;
  gap: 80px;
  grid-template-columns: 0.75fr 1.25fr;
  margin-top: 105px;
  padding-bottom: 105px;
  padding-top: 85px;
  scroll-margin-top: 90px;
}

.faq-heading h2 {
  font-size: 39px;
}

.faq-list {
  border-top: 1px solid #cfd5df;
}

.faq-list details {
  border-bottom: 1px solid #cfd5df;
}

.faq-list summary {
  color: var(--blue-dark);
  cursor: pointer;
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 20px;
  font-weight: 750;
  list-style: none;
  padding: 23px 42px 23px 0;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--red);
  content: "+";
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  position: absolute;
  right: 3px;
  top: 17px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: -7px 45px 23px 0;
}

.location-section {
  background: var(--white);
  padding: 100px 0;
  scroll-margin-top: 90px;
}

.location-grid {
  align-items: stretch;
  display: grid;
  gap: 64px;
  grid-template-columns: 0.8fr 1.2fr;
}

.location-copy {
  align-content: center;
  display: grid;
  justify-items: start;
  min-width: 0;
}

.location-copy h2 {
  color: var(--blue-dark);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 800;
  margin: 0;
}

.location-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin: 23px 0 28px;
}

.location-address {
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: flex;
  gap: 15px;
  margin-bottom: 28px;
  padding: 22px 0;
  width: 100%;
}

.location-address > .location-icon {
  display: block;
  fill: none;
  flex: 0 0 27px;
  height: 27px;
  max-height: 27px;
  max-width: 27px;
  min-height: 27px;
  min-width: 27px;
  stroke: var(--red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 27px;
}

.location-address div {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.location-address strong {
  color: var(--blue-dark);
  font-size: 16px;
}

.location-address span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.map-frame {
  background: var(--soft);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(7, 28, 74, 0.1);
  height: 100%;
  min-height: 440px;
  min-width: 0;
  overflow: hidden;
  width: 100%;
}

.map-frame iframe {
  border: 0;
  display: block;
  height: 100%;
  min-height: 440px;
  width: 100%;
}

footer {
  background: var(--blue-dark);
  color: var(--white);
  padding: 62px 0 26px;
}

.footer-grid {
  display: grid;
  gap: 55px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
}

.footer-grid img {
  filter: brightness(0) invert(1);
  height: auto;
  margin-bottom: 18px;
  width: 210px;
}

.footer-grid p,
.footer-grid span,
.footer-grid a {
  color: #b6c1d7;
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.footer-grid strong {
  font-family: var(--font-heading), Arial, sans-serif;
  font-size: 18px;
  margin-bottom: 9px;
}

.footer-grid a:hover {
  color: var(--white);
}

.instagram-link {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  margin-top: 10px !important;
  width: fit-content;
}

.instagram-link svg {
  fill: none;
  height: 18px;
  max-height: 18px;
  max-width: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 18px;
  flex: 0 0 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #8291af;
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  margin-top: 44px;
  padding-top: 24px;
}

.footer-bottom a {
  color: #b6c1d7;
}

.floating-cta {
  display: none;
}

@media (max-width: 1080px) {
  nav {
    gap: 18px;
  }

  nav a:nth-child(3),
  nav a:nth-child(4) {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy {
    padding-right: 24px;
  }

  .hero-visual {
    margin-right: -28px;
  }

  .authority-grid,
  .contact-grid,
  .faq-wrap {
    gap: 48px;
  }
}

@media (max-width: 820px) {
  .container {
    padding-left: 21px;
    padding-right: 21px;
  }

  .header-inner {
    gap: 16px;
    min-height: 72px;
  }

  .brand-link {
    width: 178px;
  }

  nav {
    display: none;
  }

  .header-inner .button {
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 28px;
    padding-top: 56px;
  }

  .hero-copy {
    padding: 0;
  }

  h1 {
    max-width: 700px;
  }

  .hero-visual {
    height: 440px;
    margin: 43px -21px 0;
    border-radius: 0;
  }

  .hero-visual > img {
    object-position: 63% center;
  }

  .factory-stamp {
    left: 21px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-heading,
  .authority-grid,
  .contact-grid,
  .location-grid,
  .faq-wrap {
    grid-template-columns: 1fr;
  }

  .location-grid {
    gap: 42px;
  }

  .map-frame {
    height: 400px;
    min-height: 400px;
  }

  .map-frame iframe {
    height: 400px;
    min-height: 400px;
  }

  .split-heading {
    align-items: start;
    gap: 20px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article,
  .process-grid article + article {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    border-right: 0;
    padding: 28px 0;
  }

  .process-grid article:last-child {
    border-bottom: 0;
  }

  .process-grid article > span {
    margin-bottom: 18px;
  }

  .deadline-panel {
    grid-template-columns: 1fr;
  }

  .deadline-items > div:first-child {
    border-left: 0;
    padding-left: 0;
  }

  .authority-points {
    grid-template-columns: 1fr;
  }

  .brand-panel {
    min-height: 390px;
  }

  .contact-copy {
    padding-top: 0;
    position: static;
  }

  .faq-wrap {
    gap: 35px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 66px;
  }

  .header-inner {
    min-height: 66px;
  }

  .brand-link {
    width: 150px;
  }

  .header-inner .button {
    display: none;
  }

  h1 {
    font-size: 44px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-list {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero-visual {
    height: 360px;
  }

  .factory-stamp {
    bottom: 15px;
    left: 15px;
    max-width: calc(100% - 30px);
    padding: 10px 13px;
  }

  .factory-stamp img {
    width: 92px;
  }

  .band-grid {
    grid-template-columns: 1fr;
    padding: 12px 21px;
  }

  .band-grid > div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-right: 0;
    justify-content: flex-start;
    min-height: 76px;
  }

  .band-grid > div:last-child {
    border-bottom: 0;
  }

  .band-grid span {
    max-width: none;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 35px;
  }

  .section-heading h2,
  .authority-copy h2,
  .contact-copy h2 {
    font-size: 38px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 265px;
  }

  .audience-image {
    height: 250px;
  }

  .audience-content {
    padding: 29px 25px 31px;
  }

  .audience-content h3 {
    font-size: 28px;
  }

  .deadline-panel {
    padding: 25px 21px;
  }

  .deadline-items {
    grid-template-columns: 1fr;
  }

  .deadline-items > div,
  .deadline-items > div:first-child {
    border-bottom: 1px solid var(--line);
    border-left: 0;
    padding: 13px 0;
  }

  .deadline-items > div:last-child {
    border-bottom: 0;
  }

  .deadline-note {
    text-align: left;
  }

  .authority-grid {
    gap: 45px;
  }

  .brand-panel {
    min-height: 350px;
    padding: 32px;
  }

  .vidroglobo-mark img {
    width: 220px;
  }

  .temper-mark img {
    width: 200px;
  }

  .contact-grid {
    gap: 45px;
  }

  .quote-form {
    margin: 0 -7px;
    padding: 27px 20px;
  }

  .form-heading,
  .field-row {
    align-items: start;
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .faq-wrap {
    margin-top: 78px;
    padding-bottom: 78px;
    padding-top: 65px;
  }

  .faq-heading h2 {
    font-size: 34px;
  }

  .faq-list summary {
    font-size: 18px;
  }

  .location-section {
    padding: 76px 0;
  }

  .location-grid {
    gap: 30px;
  }

  .location-copy {
    display: block;
  }

  .location-copy h2 {
    font-size: 34px;
  }

  .location-address {
    margin-bottom: 22px;
    padding: 18px 0;
  }

  .map-directions-link {
    justify-content: center;
    width: 100%;
  }

  .map-frame,
  .map-frame iframe {
    height: 320px;
    min-height: 320px;
  }

  .footer-grid {
    gap: 34px;
    grid-template-columns: 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .floating-cta {
    align-items: center;
    background: var(--red);
    bottom: 0;
    color: var(--white);
    display: flex;
    font-size: 16px;
    font-weight: 800;
    height: 66px;
    justify-content: center;
    left: 0;
    position: fixed;
    right: 0;
    z-index: 60;
  }
}
