:root {
  --black: #0a0a09;
  --dark-brown: #211506;
  --gold: #cf8d09;
  --gold-light: #e4a51c;
  --warm-white: #fcfbf8;
  --white: #fff;
  --text: #111;
  --muted: #5e5a53;
  --line: #dedbd5;
  --container: 1200px;
  --shadow: 0 3px 12px rgba(0, 0, 0, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--warm-white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  color: var(--white);
  background: linear-gradient(110deg, #080808 0%, #0c0b09 55%, #241504 100%);
  border-bottom: 1px solid rgba(211, 147, 17, .35);
}

.header-inner {
  width: min(calc(100% - 40px), 1240px);
  min-height: 88px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 190px minmax(430px, 1fr) 230px;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  width: fit-content;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  color: var(--white);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 1px;
}

.brand-name span {
  color: var(--gold-light);
}

.brand-tagline {
  margin-top: 7px;
  color: #f4f1eb;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.1vw, 34px);
}

.main-nav a {
  position: relative;
  padding-block: 31px 27px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-light);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 2px;
  background: var(--gold-light);
}

.header-contact {
  align-self: stretch;
  padding: 9px 10px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--gold);
  border-top: 0;
  border-radius: 0 0 7px 7px;
  background: rgba(5, 5, 5, .78);
  box-shadow: 0 4px 9px rgba(0, 0, 0, .35);
}

.header-phones {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.contact-symbol {
  width: 27px;
  color: var(--white);
  line-height: 0;
}

.contact-symbol svg,
.button-icon svg,
.benefit-icon svg,
.differential-icon svg,
.step-icon svg,
.trust-item svg,
.faq-main-icon svg,
.cta-trust svg,
.large-phones svg,
.footer-contact svg,
.application-visual svg {
  width: 100%;
  height: 100%;
}

.header-phones a {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.header-contact-button {
  min-height: 30px;
  margin-top: 6px;
  display: grid;
  place-items: center;
  border: 1px solid #e8b43a;
  border-radius: 4px;
  color: var(--white);
  background: linear-gradient(#e4a51c, #b87303);
  box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  transition: filter .2s ease, transform .2s ease;
}

.header-contact-button:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 36px;
  padding: 5px 2px;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(132deg, transparent 0 37px, rgba(205, 143, 12, .05) 38px, transparent 39px),
    var(--warm-white);
}

.hero-grid {
  min-height: 505px;
  padding: 48px 12px 26px;
  display: grid;
  grid-template-columns: minmax(0, 43%) minmax(0, 57%);
  align-items: center;
  gap: 12px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin: 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(38px, 3.25vw, 51px);
  font-stretch: condensed;
  line-height: 1.08;
  letter-spacing: -1.5px;
  text-transform: uppercase;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 span {
  color: #141414;
}

.hero h1 strong {
  color: var(--gold);
  font-weight: 800;
}

.hero-copy > p {
  max-width: 520px;
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: stretch;
  gap: 14px;
}

.button {
  min-height: 48px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border: 1px solid #d79a13;
  color: var(--white);
  background: linear-gradient(#e4a51c, #bc7804);
  box-shadow: 0 2px 5px rgba(107, 65, 0, .28);
}

.button-primary:hover {
  filter: brightness(1.06);
  box-shadow: 0 5px 12px rgba(107, 65, 0, .3);
}

.button-secondary {
  border: 1px solid #c68a18;
  color: #111;
  background: var(--white);
}

.button-dark {
  min-height: 40px;
  padding: 9px 28px;
  color: var(--white);
  background: linear-gradient(110deg, #090909, #2b1906);
  border: 1px solid #15100a;
}

.button-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  line-height: 0;
}

.hero-media {
  position: relative;
  min-width: 0;
  align-self: end;
}

.hero-products {
  width: 100%;
  max-height: 455px;
  margin-left: auto;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 13px 10px rgba(0, 0, 0, .1));
}

.quality-seal {
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 5px 5px rgba(57, 34, 0, .2));
}

.hero-seal {
  position: absolute;
  top: 3%;
  left: 0;
  width: clamp(150px, 25%, 215px);
}

.benefits-strip,
.trust-strip,
.final-cta {
  color: var(--white);
  background: linear-gradient(110deg, #080808 0%, #0b0b09 58%, #251706 100%);
}

.benefit-list {
  padding-block: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.benefit {
  min-height: 68px;
  padding: 4px 27px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.benefit:last-child {
  border-right: 0;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  padding: 10px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  line-height: 0;
}

.benefit p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.section {
  padding: 27px 0;
  background: var(--warm-white);
}

.section-title {
  margin: 0 0 25px;
  display: flex;
  align-items: center;
  gap: 17px;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 27px;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.section-title::before,
.section-title::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--gold);
}

.section-title span {
  flex: 0 1 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 19px;
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #dedede;
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover,
.application-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 19px rgba(0, 0, 0, .15);
}

.product-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-content {
  padding: 17px 17px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card h3,
.application-card h3,
.differential h3 {
  margin: 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.product-card p {
  margin: 16px 0 18px;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.small-button {
  min-height: 38px;
  margin-top: auto;
  padding: 7px 14px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #cecece;
  border-radius: 5px;
  background: var(--white);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  transition: border-color .2s ease, color .2s ease;
}

.small-button span {
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
}

.small-button:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.center-action {
  margin-top: 17px;
  display: flex;
  justify-content: center;
}

.differentials-section {
  padding-top: 4px;
}

.differential-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.differential {
  padding: 3px 10px;
  display: grid;
  grid-template-columns: 55px 1fr;
  align-items: start;
  gap: 14px;
}

.differential-icon {
  width: 51px;
  height: 51px;
  color: #111;
  line-height: 0;
}

.differential h3 {
  text-align: left;
}

.differential p {
  margin: 12px 0 0;
  color: #252525;
  font-size: 12px;
  line-height: 1.65;
}

.applications-section {
  padding-top: 13px;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
}

.application-card {
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}

.application-card img,
.application-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.application-card img {
  object-fit: cover;
}

.application-card h3 {
  min-height: 62px;
  padding: 13px 8px 11px;
  display: grid;
  place-items: center;
  font-size: 13px;
}

.application-visual {
  display: grid;
  place-items: center;
  color: var(--gold);
  background:
    linear-gradient(rgba(8, 8, 8, .7), rgba(27, 17, 4, .82)),
    repeating-linear-gradient(90deg, #49433b 0 15px, #2a2926 16px 29px);
}

.application-visual span {
  width: 68px;
  height: 68px;
  line-height: 0;
}

.process-section {
  padding-top: 9px;
}

.process-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.process-step {
  position: relative;
  min-width: 0;
  padding: 0 23px;
  display: grid;
  grid-template-columns: 38px 54px;
  grid-template-rows: 58px auto;
  justify-content: center;
  align-items: center;
}

.process-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 14px;
  right: -8px;
  font-size: 34px;
  font-weight: 300;
}

.step-number {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(#dfa017, #b87303);
  font-size: 12px;
  font-weight: 800;
}

.step-icon {
  width: 44px;
  height: 44px;
  color: #111;
  line-height: 0;
}

.process-step p {
  grid-column: 1 / -1;
  max-width: 155px;
  margin: 6px auto 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.trust-grid {
  padding-block: 21px;
  display: grid;
  grid-template-columns: 200px repeat(3, 1fr);
  align-items: center;
}

.trust-seal {
  width: 165px;
  margin-inline: auto;
}

.trust-item {
  min-height: 64px;
  padding: 5px 28px;
  display: flex;
  align-items: center;
  gap: 17px;
  border-left: 1px solid rgba(255, 255, 255, .22);
}

.trust-item span {
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  color: var(--gold-light);
  line-height: 0;
}

.trust-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.faq-section {
  padding-block: 32px 38px;
}

.faq-container {
  max-width: 1100px;
}

.faq-layout {
  padding: 0 18px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  align-items: start;
}

.faq-main-icon {
  width: 75px;
  height: 75px;
  color: #111;
  line-height: 0;
}

.accordion {
  overflow: hidden;
  border: 1px solid #dfdfdf;
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 3px 12px rgba(0, 0, 0, .07);
}

.faq-item + .faq-item {
  border-top: 1px solid #e2e2e2;
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  min-height: 53px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  color: #1b1b1b;
  background: var(--white);
  font-size: 13px;
  text-align: left;
  cursor: pointer;
}

.faq-item button:hover {
  background: #faf8f3;
}

.faq-chevron {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-right: 1.5px solid #111;
  border-bottom: 1.5px solid #111;
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.faq-item button[aria-expanded="true"] .faq-chevron {
  transform: rotate(225deg);
}

.faq-answer {
  padding: 0 44px 16px 18px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.final-cta {
  margin: 0 auto;
}

.final-cta-grid {
  min-height: 250px;
  padding: 28px 30px;
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(280px, .9fr) 190px;
  align-items: center;
  gap: 38px;
}

.final-cta h2 {
  margin: 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 31px;
  line-height: 1.15;
  text-transform: uppercase;
}

.final-cta-copy > p {
  max-width: 450px;
  margin: 14px 0 0;
  font-size: 14px;
}

.cta-trust {
  margin-top: 23px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
}

.cta-trust span {
  width: 27px;
  height: 27px;
  line-height: 0;
}

.cta-trust small {
  color: var(--white);
  font-size: 12px;
}

.final-cta-contact {
  display: grid;
  gap: 14px;
}

.large-phones {
  display: flex;
  align-items: center;
  gap: 14px;
}

.large-phones > span {
  width: 44px;
  height: 44px;
  color: var(--white);
  line-height: 0;
}

.large-phones a {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.final-seal {
  width: 170px;
  justify-self: end;
}

.site-footer {
  padding: 34px 0 16px;
  color: #f5f5f5;
  background: #090909;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr 1fr 1.35fr;
  gap: 44px;
}

.footer-brand .brand-name {
  font-size: 29px;
}

.footer-brand p {
  max-width: 270px;
  margin: 19px 0;
  color: #cacaca;
  font-size: 12px;
  line-height: 1.65;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  color: #c5c5c5;
  font-size: 10px;
  text-transform: uppercase;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-style: normal;
}

.footer-column h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
}

.footer-column a {
  margin: 2px 0;
  color: #d6d6d6;
  font-size: 11px;
  line-height: 1.55;
}

.footer-column a:hover {
  color: var(--gold-light);
}

.footer-contact a {
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 8px;
}

.footer-contact span {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  color: #e7e7e7;
  line-height: 0;
}

.copyright {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #353535;
  text-align: center;
}

.copyright p {
  margin: 0;
  color: #a9a9a9;
  font-size: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1020px) {
  .header-inner {
    grid-template-columns: 165px 1fr 215px;
    gap: 12px;
  }

  .brand-name {
    font-size: 29px;
  }

  .main-nav {
    gap: 14px;
  }

  .main-nav a {
    font-size: 10px;
  }

  .hero-grid {
    grid-template-columns: 45% 55%;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-copy > p {
    font-size: 14px;
  }

  .benefit {
    padding-inline: 15px;
  }

  .benefit-icon {
    width: 43px;
    height: 43px;
  }

  .differential {
    grid-template-columns: 45px 1fr;
    gap: 10px;
  }

  .differential-icon {
    width: 42px;
    height: 42px;
  }

  .trust-item {
    padding-inline: 16px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    width: 100%;
    min-height: auto;
    padding: 10px 14px 0;
    grid-template-columns: 1fr auto;
    gap: 9px 16px;
  }

  .site-header .brand {
    align-self: center;
  }

  .brand-name {
    font-size: 27px;
  }

  .brand-tagline {
    margin-top: 5px;
    font-size: 7px;
    letter-spacing: 2.3px;
  }

  .menu-toggle {
    display: block;
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

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

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    padding: 7px 0 13px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 10px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: 12px;
  }

  .main-nav a.active::after {
    display: none;
  }

  .header-contact {
    grid-column: 1 / -1;
    margin: 0 -14px;
    padding: 7px 14px 9px;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    display: grid;
    grid-template-columns: 1fr 145px;
    align-items: center;
    gap: 10px;
  }

  .header-phones {
    justify-content: flex-start;
  }

  .header-phones a {
    font-size: 12px;
  }

  .contact-symbol {
    width: 25px;
  }

  .header-contact-button {
    min-height: 35px;
    margin: 0;
    font-size: 10px;
  }

  .hero-grid {
    min-height: 0;
    padding: 27px 0 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .hero h1 {
    font-size: clamp(27px, 8.3vw, 34px);
    line-height: 1.1;
    letter-spacing: -.8px;
  }

  .hero h1 strong br {
    display: none;
  }

  .hero-copy > p {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.6;
  }

  .hero-media {
    width: 100%;
    order: 2;
    align-self: auto;
  }

  .hero-products {
    width: 100%;
    max-height: 310px;
    margin: 0 auto;
    object-position: center;
  }

  .hero-seal {
    top: 4%;
    left: auto;
    right: 1%;
    width: 31%;
    max-width: 125px;
  }

  .hero-actions {
    margin-top: 20px;
    display: grid;
    gap: 8px;
  }

  .button {
    width: 100%;
    min-height: 46px;
  }

  .benefit-list {
    padding-block: 5px;
    grid-template-columns: 1fr;
  }

  .benefit {
    min-height: 68px;
    padding: 10px 7px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .benefit:last-child {
    border-bottom: 0;
  }

  .benefit p br {
    display: none;
  }

  .section {
    padding: 24px 0;
  }

  .section-title {
    margin-bottom: 19px;
    gap: 9px;
    font-size: 21px;
  }

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

  .product-card {
    min-height: 112px;
    display: grid;
    grid-template-columns: 105px 1fr;
  }

  .product-card > img {
    width: 105px;
    height: 100%;
    min-height: 112px;
    aspect-ratio: auto;
  }

  .product-content {
    min-width: 0;
    padding: 10px 11px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-content: center;
    align-items: center;
    gap: 5px 8px;
  }

  .product-card h3 {
    grid-column: 1 / -1;
    font-size: 12px;
    text-align: left;
  }

  .product-card h3 br {
    display: none;
  }

  .product-card p {
    margin: 0;
    font-size: 10px;
    line-height: 1.45;
    text-align: left;
  }

  .small-button {
    min-height: 32px;
    margin: 0;
    padding: 5px 8px;
    gap: 5px;
    font-size: 8px;
    white-space: nowrap;
  }

  .small-button span {
    font-size: 17px;
  }

  .center-action {
    margin-top: 11px;
  }

  .center-action .button {
    width: auto;
    min-height: 38px;
    font-size: 10px;
  }

  .differential-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .differential {
    padding: 13px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #e3e0da;
    border-radius: 5px;
    background: #fff;
  }

  .differential-icon {
    width: 39px;
    height: 39px;
  }

  .differential h3 {
    font-size: 11px;
    text-align: center;
  }

  .differential p {
    display: none;
  }

  .application-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 5px;
  }

  .application-card {
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
  }

  .application-card h3 {
    min-height: 45px;
    padding: 6px 2px;
    font-size: 7px;
    line-height: 1.25;
  }

  .application-visual span {
    width: 31px;
    height: 31px;
  }

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

  .process-step {
    min-height: 57px;
    padding: 8px 0;
    display: grid;
    grid-template-columns: 34px 35px 1fr;
    grid-template-rows: auto;
    justify-content: stretch;
    gap: 8px;
    border-bottom: 1px solid #e2ded7;
  }

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

  .process-step:not(:last-child)::after {
    display: none;
  }

  .step-number {
    width: 29px;
    height: 29px;
    font-size: 10px;
  }

  .step-icon {
    width: 31px;
    height: 31px;
  }

  .process-step p {
    grid-column: auto;
    max-width: none;
    margin: 0;
    font-size: 11px;
    text-align: left;
  }

  .trust-grid {
    padding-block: 17px;
    grid-template-columns: 100px 1fr;
  }

  .trust-seal {
    width: 90px;
    grid-row: 1 / span 3;
  }

  .trust-item {
    min-height: 47px;
    padding: 7px 0 7px 13px;
    border-left: 1px solid rgba(255, 255, 255, .2);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .trust-item span {
    width: 25px;
    height: 25px;
  }

  .trust-item p {
    font-size: 10px;
  }

  .faq-layout {
    padding: 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .faq-main-icon {
    width: 43px;
    height: 43px;
  }

  .faq-item button {
    min-height: 51px;
    padding: 12px;
    font-size: 11px;
  }

  .faq-answer {
    padding: 0 30px 13px 12px;
  }

  .faq-answer p {
    font-size: 11px;
  }

  .final-cta-grid {
    min-height: 0;
    padding: 23px 2px;
    grid-template-columns: 1fr;
    gap: 19px;
  }

  .final-cta h2 {
    font-size: 24px;
  }

  .final-cta-copy > p {
    margin-top: 9px;
    font-size: 12px;
  }

  .cta-trust {
    margin-top: 14px;
  }

  .large-phones {
    align-items: flex-start;
  }

  .large-phones > span {
    width: 37px;
    height: 37px;
  }

  .large-phones a {
    font-size: 17px;
  }

  .final-seal {
    width: 118px;
    justify-self: center;
  }

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

  .footer-brand p {
    max-width: 100%;
  }

  .footer-column {
    padding-top: 17px;
    border-top: 1px solid #303030;
  }

  .footer-column h2 {
    margin-bottom: 9px;
  }
}

@media (max-width: 390px) {
  .header-contact {
    grid-template-columns: 1fr 128px;
  }

  .header-phones a {
    font-size: 11px;
  }

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

  .product-card > img {
    width: 92px;
  }

  .product-card p {
    font-size: 9px;
  }

  .small-button {
    padding-inline: 5px;
  }

  .application-card h3 {
    font-size: 6px;
  }

  .trust-grid {
    grid-template-columns: 85px 1fr;
  }

  .trust-seal {
    width: 78px;
  }
}

@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;
  }
}

/* SITE FACIL ICON LIBRARY — desenho determinístico */
.sf-lib-icon{display:inline-block;width:1em;height:1em;min-width:1em;min-height:1em;overflow:visible;color:inherit;vertical-align:-.125em;flex:0 0 auto}.sf-lib-icon path{fill:currentColor!important;stroke:none!important}.sf-lib-icon[aria-hidden="true"]{pointer-events:none}
/* SF_PREMIUM_POLISH_V5_11_15_START */
:root{--sf-brand-primary:#6F3AFF;--sf-brand-glow-fallback:rgba(111,58,255,.24)}
html{scroll-behavior:smooth}
/* IMPORTANTE: nunca sobrescrever background/color/border dos botões. A prévia é a fonte visual. */
.sf-premium-button{position:relative;isolation:isolate;transition:transform .22s cubic-bezier(.2,.75,.2,1),box-shadow .22s ease,filter .22s ease,border-color .22s ease!important;will-change:transform;transform:translateZ(0)}
.sf-premium-button:hover{transform:translateY(-2px);filter:brightness(1.045);box-shadow:0 11px 28px rgba(0,0,0,.20),0 0 20px var(--sf-btn-glow,var(--sf-brand-glow-fallback))}
.sf-premium-button:active{transform:translateY(0) scale(.985)}
.sf-premium-button:focus-visible{outline:3px solid var(--sf-btn-outline,var(--sf-brand-primary));outline-offset:3px}
.sf-premium-button svg,.sf-premium-button .icon,.sf-premium-button [class*="icon"]{transition:transform .22s ease,opacity .22s ease!important}
.sf-premium-button:hover svg,.sf-premium-button:hover .icon,.sf-premium-button:hover [class*="icon"]{transform:translateX(2px)}
.sf-premium-card{transition:transform .30s cubic-bezier(.2,.75,.2,1),box-shadow .30s ease,border-color .30s ease,filter .30s ease;will-change:transform}
.sf-premium-card:hover{transform:translateY(-4px);box-shadow:0 16px 34px rgba(0,0,0,.14);filter:brightness(1.012)}
.sf-premium-icon{transition:transform .28s cubic-bezier(.2,.75,.2,1),filter .28s ease,opacity .28s ease!important;transform-origin:center;will-change:transform}
.sf-premium-card:hover .sf-premium-icon{transform:translateY(-2px) scale(1.045)}
.sf-premium-card img{transition:transform .55s cubic-bezier(.2,.75,.2,1),filter .4s ease!important}
.sf-premium-card:hover img{transform:scale(1.018);filter:saturate(1.03) contrast(1.01)}
.sf-reveal:nth-of-type(2n){--sf-reveal-delay:.055s}.sf-reveal:nth-of-type(3n){--sf-reveal-delay:.105s}.sf-reveal:nth-of-type(4n){--sf-reveal-delay:.155s}
.sf-reveal.sf-animate-in{animation-delay:var(--sf-reveal-delay,0s)}
.sf-motion-active .sf-reveal:not(.sf-animate-in){opacity:0;transform:translateY(18px)}
.sf-motion-active .sf-reveal-left:not(.sf-animate-in){transform:translateX(-22px)}
.sf-motion-active .sf-reveal-right:not(.sf-animate-in){transform:translateX(22px)}
.sf-reveal.sf-animate-in{animation:sfRevealUp .68s cubic-bezier(.2,.75,.2,1) both}
.sf-reveal-left.sf-animate-in{animation-name:sfRevealLeft}
.sf-reveal-right.sf-animate-in{animation-name:sfRevealRight}
@keyframes sfRevealUp{from{opacity:.04;transform:translateY(20px)}to{opacity:1;transform:none}}
@keyframes sfRevealLeft{from{opacity:.04;transform:translateX(-24px)}to{opacity:1;transform:none}}
@keyframes sfRevealRight{from{opacity:.04;transform:translateX(24px)}to{opacity:1;transform:none}}
@media(max-width:768px){.sf-reveal-left.sf-animate-in,.sf-reveal-right.sf-animate-in{animation-name:sfRevealUp}.sf-premium-card:hover{transform:translateY(-2px)}}
body.sf-motion-profile-energy .sf-premium-button:hover{filter:brightness(1.06)}
body.sf-motion-profile-dynamic .sf-premium-button:hover{transform:translateY(-3px) scale(1.01)}
body.sf-motion-profile-fluid .sf-premium-card:hover{transform:translateY(-3px)}
body.sf-motion-profile-soft .sf-premium-button,body.sf-motion-profile-soft .sf-premium-card,body.sf-motion-profile-soft .sf-premium-icon{transition-duration:.34s!important}
/* MOBILE REAL = edge-to-edge. A moldura arredondada pertence somente à imagem/mockup da prévia. */
@media(max-width:768px){
  html,body{width:100%!important;max-width:100%!important;margin:0!important;padding:0!important;overflow-x:hidden!important;border-radius:0!important}
  body{min-width:0!important}
  .sf-mobile-header-whatsapp{display:none!important}
  .sf-mobile-page-shell{width:100%!important;max-width:none!important;margin-left:0!important;margin-right:0!important;padding-left:0!important;padding-right:0!important;border:0!important;border-radius:0!important;box-shadow:none!important;overflow:visible!important}
  .sf-mobile-page-shell>header:first-child,.sf-mobile-page-shell>main:first-child,.sf-mobile-page-shell>main,.sf-mobile-page-shell>footer:last-child{max-width:none!important;margin-left:0!important;margin-right:0!important;border-left:0!important;border-right:0!important}
  body>header,body>main,body>footer{width:100%!important;max-width:none!important;margin-left:0!important;margin-right:0!important;border-radius:0!important}
  body>.site-wrapper,body>.page-wrapper,body>.site-shell,body>.page-shell,body>.site-frame,body>.page-frame,body>.mockup,body>.preview,body>#app,body>#root{width:100%!important;max-width:none!important;margin:0!important;padding-left:0!important;padding-right:0!important;border:0!important;border-radius:0!important;box-shadow:none!important}
  header .sf-mobile-header-whatsapp{display:none!important}
}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}.sf-premium-button,.sf-premium-card,.sf-premium-icon,.sf-reveal{transition:none!important;animation:none!important;transform:none!important}.sf-reveal{opacity:1!important}}
/* SF_PREMIUM_POLISH_V5_11_15_END */


/* Site Fácil IA V5.7.7 — WhatsApp e ícones fiéis */
.sf-whatsapp-button{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:8px!important;
  min-height:44px!important;
  padding:11px 18px!important;
  border-radius:8px!important;
  background:#25D366!important;
  color:#fff!important;
  border:0!important;
  text-decoration:none!important;
  font-weight:800!important;
  line-height:1.1!important;
  box-shadow:none!important;
}
.sf-whatsapp-button:hover{filter:brightness(.96)}
.sf-whatsapp-floating{
  width:46px!important;
  height:46px!important;
  min-width:46px!important;
  min-height:46px!important;
  padding:0!important;
  border-radius:999px!important;
}
.sf-faithful-icon,.sf-wa-icon{
  display:inline-grid!important;
  place-items:center!important;
  flex:0 0 auto!important;
  width:20px!important;
  height:20px!important;
}
.sf-whatsapp-floating .sf-wa-icon{width:22px!important;height:22px!important}
.sf-faithful-icon svg,.sf-wa-icon svg,.sf-faithful-icon-host svg{
  width:100%!important;
  height:100%!important;
  display:block!important;
}
.sf-faithful-icon-host{
  display:grid!important;
  place-items:center!important;
  width:42px!important;
  height:42px!important;
  min-width:42px!important;
  min-height:42px!important;
  border-radius:999px!important;
  background:#0057c8!important;
  color:#fff!important;
}
.sf-faithful-icon-host svg{
  width:20px!important;
  height:20px!important;
  fill:none!important;
  stroke:currentColor!important;
  stroke-width:1.9!important;
  stroke-linecap:round!important;
  stroke-linejoin:round!important;
}
.sf-wa-icon svg{color:#fff!important}
@media(max-width:768px){
  .sf-whatsapp-button{min-height:42px!important;padding:10px 14px!important;font-size:13px!important}
  .sf-whatsapp-floating{width:44px!important;height:44px!important;padding:0!important}
}

/* Site Fácil IA: proteção de integridade visual */
html,body{max-width:100%;overflow-x:clip}main>section{position:relative;isolation:isolate;clear:both}img{max-width:100%;height:auto}img[src*="assets/"]{object-fit:contain}



/* Site Fácil IA V5.7.8 — transições suaves entre seções */
html{scroll-behavior:smooth}
.sf-motion-ready main>section,
.sf-motion-ready body>section,
.sf-motion-ready .sf-animate-section{
    opacity:0;
    transform:translate3d(0,28px,0);
    transition:opacity .72s cubic-bezier(.22,.61,.36,1),transform .72s cubic-bezier(.22,.61,.36,1);
    will-change:opacity,transform;
}
.sf-motion-ready main>section.sf-in-view,
.sf-motion-ready body>section.sf-in-view,
.sf-motion-ready .sf-animate-section.sf-in-view{
    opacity:1;
    transform:translate3d(0,0,0);
}
img{max-width:100%;height:auto}
@media(prefers-reduced-motion:reduce){
    html{scroll-behavior:auto}
    .sf-motion-ready main>section,
    .sf-motion-ready body>section,
    .sf-motion-ready .sf-animate-section{
        opacity:1!important;
        transform:none!important;
        transition:none!important;
    }
}