:root {
  --ink: #201512;
  --muted: #6e625f;
  --soft: #8d7d77;
  --brand: #d61f2a;
  --brand-dark: #8f121a;
  --brand-deep: #451016;
  --charcoal: #393a3e;
  --gold: #d8a548;
  --gold-light: #ffe6a7;
  --cream: #fff8ed;
  --cream-2: #f7ead4;
  --paper: #ffffff;
  --green: #128c4b;
  --green-dark: #0b6f3a;
  --line: rgba(69, 16, 22, .12);
  --line-strong: rgba(69, 16, 22, .22);
  --shadow: 0 28px 80px rgba(69, 16, 22, .16);
  --shadow-soft: 0 16px 44px rgba(69, 16, 22, .10);
  --radius: 30px;
  --radius-sm: 18px;
  --max: 1180px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(216, 165, 72, .18), transparent 30rem),
    linear-gradient(180deg, #fffaf1 0%, #fff8ed 42%, #ffffff 100%);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.modal-lock {
  overflow: hidden
}

img {
  display: block;
  max-width: 100%;
  height: auto
}

a {
  color: inherit;
  text-decoration: none
}

button,
input,
textarea,
select {
  font: inherit
}

button {
  cursor: pointer
}

::selection {
  background: rgba(214, 31, 42, .16)
}

.container {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--paper);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 9999
}

.skip-link:focus {
  left: 10px
}

.top-strip {
  position: relative;
  z-index: 30;
  background: linear-gradient(90deg, var(--brand-deep), var(--brand-dark));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.top-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 38px
}

.top-strip__left,
.top-strip__right {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0
}

.top-strip i {
  color: var(--gold-light)
}

.top-strip__right {
  white-space: nowrap
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 237, .84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0
}

.brand__logo {
  width: 128px;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(69, 16, 22, .14));
}

.brand__text {
  display: grid;
  gap: 2px
}

.brand__name {
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1;
  color: var(--charcoal)
}

.brand__tag {
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 800;
  font-size: 14px;
  color: #44312d
}

.nav__links a {
  position: relative;
  white-space: nowrap
}

.nav__links a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  border-radius: 10px;
  background: var(--brand);
  transition: right .3s var(--ease)
}

.nav__links a:hover:after {
  right: 0
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 14px;
  color: var(--brand-dark)
}

.btn {
  --btn-bg: var(--brand);
  --btn-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-color);
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(214, 31, 42, .22);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(214, 31, 42, .30)
}

.btn:focus-visible,
.icon-btn:focus-visible,
.filter-btn:focus-visible,
.input:focus-visible,
.textarea:focus-visible {
  outline: 3px solid rgba(216, 165, 72, .42);
  outline-offset: 3px
}

.btn--dark {
  --btn-bg: var(--brand-deep);
  box-shadow: 0 14px 30px rgba(69, 16, 22, .22)
}

.btn--wa {
  --btn-bg: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 14px 30px rgba(18, 140, 75, .24)
}

.btn--ghost {
  --btn-bg: #fff;
  --btn-color: var(--brand-dark);
  border: 1px solid var(--line-strong);
  box-shadow: none
}

.btn--small {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 13px
}

.btn--full {
  width: 100%
}

.section {
  position: relative;
  padding: 86px 0
}

.section--white {
  background: #fff
}

.section--cream {
  background: linear-gradient(180deg, #fff8ed, #fff)
}

.section-title {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.eyebrow:before,
.eyebrow:after {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold))
}

.eyebrow:after {
  background: linear-gradient(90deg, var(--gold), transparent)
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink)
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: .96;
  letter-spacing: -.035em
}

h1 {
  font-size: clamp(48px, 7.2vw, 96px)
}

h2 {
  font-size: clamp(38px, 5vw, 68px)
}

h3 {
  font-size: 20px;
  line-height: 1.18
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75
}

.hero {
  position: relative;
  padding: 66px 0 82px;
  overflow: hidden;
  isolation: isolate;
}

.hero:before {
  content: "";
  position: absolute;
  inset: -260px -100px auto auto;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 31, 42, .13), transparent 68%);
  z-index: -1;
}

.hero:after {
  content: "";
  position: absolute;
  left: -260px;
  bottom: -340px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 165, 72, .22), transparent 68%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  gap: 54px;
  align-items: center
}

.hero-copy {
  position: relative;
  z-index: 3
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 22px;
}

.hero-badge span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(214, 31, 42, .10);
  color: var(--brand)
}

.hero h1 .accent {
  color: var(--brand);
  text-shadow: 0 12px 34px rgba(214, 31, 42, .12)
}

.hero-lead {
  font-size: 18px;
  max-width: 650px;
  margin-top: 22px;
  color: #5c504c
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
  max-width: 650px
}

.trust-card {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 12px 28px rgba(69, 16, 22, .06);
}

.trust-card strong {
  display: block;
  font-size: 25px;
  color: var(--brand-dark);
  letter-spacing: -.04em
}

.trust-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45
}

.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 22px;
  max-width: 650px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6
}

.hero-note i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: var(--gold);
  box-shadow: var(--shadow-soft);
  flex: 0 0 auto
}

.hero-visual {
  position: relative;
  min-height: 650px
}

.hero-frame {
  position: absolute;
  inset: 38px 0 0 44px;
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .84), rgba(255, 246, 229, .72)),
    repeating-linear-gradient(90deg, rgba(69, 16, 22, .04) 0 1px, transparent 1px 44px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.hero-product {
  position: absolute;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(69, 16, 22, .20);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.hero-product:hover {
  transform: translateY(-8px) rotate(0deg) scale(1.015);
  box-shadow: 0 34px 90px rgba(69, 16, 22, .28);
  z-index: 5
}

.hero-product img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-product--main {
  left: 72px;
  top: 0;
  width: min(72%, 420px);
  height: 520px;
  transform: rotate(-2deg)
}

.hero-product--side {
  right: 0;
  top: 86px;
  width: 250px;
  height: 330px;
  transform: rotate(3deg)
}

.hero-product--wide {
  left: 0;
  right: 34px;
  bottom: 4px;
  height: 205px;
  transform: rotate(1deg)
}

.hero-card {
  position: absolute;
  right: 20px;
  bottom: 146px;
  width: min(94%, 312px);
  border-radius: 26px;
  padding: 18px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  box-shadow: 0 22px 60px rgba(69, 16, 22, .18);
  z-index: 7;
}

.hero-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px
}

.hero-card__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff
}

.hero-card strong {
  display: block;
  color: var(--ink);
  font-size: 15px
}

.hero-card span {
  /* display: block;
  color: var(--muted); */
  font-size: 12px;
  font-weight: 800;
  margin-top: 3px
}

.hero-card p {
  font-size: 13px;
  line-height: 1.55
}

.marquee-strip {
  background: var(--brand-deep);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 26px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
  color: #fff
}

.marquee-track i {
  color: var(--gold-light)
}

@keyframes marquee {
  to {
    transform: translateX(-50%)
  }
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.feature-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden
}

.feature-card:before {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(214, 31, 42, .08)
}

.icon-box {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(214, 31, 42, .12), rgba(216, 165, 72, .18));
  color: var(--brand-dark);
  font-size: 20px;
  margin-bottom: 18px
}

.feature-card h3 {
  margin-bottom: 10px
}

.feature-card p {
  font-size: 14px;
  line-height: 1.65
}

.split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 48px;
  align-items: center
}

.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  border: 1px solid var(--line);
  min-height: 560px
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover
}

.split-media__label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .14)
}

.split-media__label strong {
  display: block;
  font-size: 18px;
  color: var(--brand-dark)
}

.split-media__label span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800
}

.process-list {
  display: grid;
  gap: 14px;
  margin-top: 26px
}

.process-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(69, 16, 22, .06)
}

.process-item__num {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 19px;
  background: var(--brand-deep);
  color: #fff;
  font-weight: 900
}

.process-item h3 {
  margin-bottom: 4px
}

.process-item p {
  font-size: 14px;
  line-height: 1.62
}

.products-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px
}

.products-head .section-title {
  text-align: left;
  margin: 0;
  max-width: 680px
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end
}

.filter-btn {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-weight: 900;
  padding: 10px 14px;
  transition: .25s var(--ease)
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
  transform: translateY(-2px)
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  grid-auto-flow: dense
}

.product-card {
  position: relative;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex;
  flex-direction: column;
  min-width: 0
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow)
}

.product-card__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #f4e5cc
}

.product-card.wide .product-card__media {
  aspect-ratio: 16/10
}

@media (min-width: 761px) {
  .product-card.wide {
    grid-column: span 2
  }
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease)
}

.product-card:hover .product-card__media img {
  transform: scale(1.055)
}

.product-card__badge {
  position: absolute;
  left: 14px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .10)
}

.product-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1
}

.product-card__body p {
  font-size: 14px;
  line-height: 1.62
}

.product-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 7px 10px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #5b403a;
  font-size: 12px;
  font-weight: 900
}

.product-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 20px 20px
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.usecase-card {
  position: relative;
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #111;
  isolation: isolate
}

.usecase-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
  opacity: .88
}

.usecase-card:hover img {
  transform: scale(1.06)
}

.usecase-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, .78) 100%);
  z-index: 1
}

.usecase-card__content {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: #fff
}

.usecase-card h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 8px
}

.usecase-card p {
  color: rgba(255, 255, 255, .84);
  font-size: 14px;
  line-height: 1.65
}

.quote-panel {
  position: relative;
  border-radius: 38px;
  padding: 38px;
  background: linear-gradient(135deg, var(--brand-deep), var(--brand-dark) 54%, #bd1a24);
  color: #fff;
  box-shadow: var(--shadow);
  overflow: hidden
}

.quote-panel:before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12)
}

.quote-grid {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: start
}

.quote-panel h2,
.quote-panel p {
  color: #fff
}

.quote-panel p {
  color: rgba(255, 255, 255, .78)
}

.quote-highlights {
  display: grid;
  gap: 12px;
  margin-top: 24px
}

.quote-highlight {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #fff;
  font-weight: 800
}

.quote-highlight i {
  color: var(--gold-light);
  margin-top: 4px
}

.form-card {
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .18)
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.field {
  display: grid;
  gap: 7px
}

.field--full {
  grid-column: 1/-1
}

.field label {
  font-size: 12px;
  font-weight: 900;
  color: var(--brand-deep);
  text-transform: uppercase;
  letter-spacing: .08em
}

.input,
.textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: #fff;
  padding: 13px 14px;
  color: var(--ink);
  outline: none;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease)
}

.textarea {
  min-height: 104px;
  resize: vertical
}

.input:focus,
.textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(214, 31, 42, .08)
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.testimonial-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-soft)
}

.testimonial-card:before {
  content: "\f10d";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  right: 22px;
  top: 18px;
  color: rgba(214, 31, 42, .12);
  font-size: 34px
}

.stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 13px
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.75;
  color: #504642
}

.author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px
}

.avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-weight: 900
}

.author strong {
  display: block;
  color: var(--ink)
}

.author span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  margin-top: 2px
}

.faq-wrap {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 12px
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(69, 16, 22, .05)
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 18px 20px;
  font-weight: 900;
  color: var(--ink)
}

.faq-q i {
  color: var(--brand);
  transition: transform .25s var(--ease)
}

.faq-a {
  display: none;
  padding: 0 20px 20px
}

.faq-item.open .faq-a {
  display: block
}

.faq-item.open .faq-q i {
  transform: rotate(45deg)
}

.final-cta {
  position: relative;
  text-align: center;
  border-radius: 38px;
  overflow: hidden;
  padding: 54px 26px;
  background: linear-gradient(135deg, #fff, #fff5e4);
  border: 1px solid var(--line);
  box-shadow: var(--shadow)
}

.final-cta:before,
.final-cta:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(214, 31, 42, .08)
}

.final-cta:before {
  width: 220px;
  height: 220px;
  left: -80px;
  top: -90px
}

.final-cta:after {
  width: 280px;
  height: 280px;
  right: -130px;
  bottom: -150px
}

.final-cta>* {
  position: relative;
  z-index: 2
}

.final-cta p {
  max-width: 650px;
  margin: 16px auto 26px
}

.site-footer {
  padding: 36px 0;
  background: var(--brand-deep);
  color: #fff
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.footer-logo {
  width: 120px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .2))
}

.footer-text {
  display: grid;
  gap: 5px;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  font-weight: 700
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: #fff;
  font-weight: 800;
  font-size: 13px
}

.footer-links a:hover {
  color: var(--gold-light)
}

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 17px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(18, 140, 75, .34);
  transition: .25s var(--ease)
}

.floating-wa:hover {
  transform: translateY(-3px)
}

.floating-wa i {
  font-size: 21px
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(32, 21, 18, .62);
  backdrop-filter: blur(12px)
}

.modal-overlay.active {
  display: flex
}

.modal {
  width: min(960px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .34);
  position: relative;
  border: 1px solid rgba(255, 255, 255, .36)
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .94);
  color: var(--brand-dark);
  font-size: 20px;
  font-weight: 900;
  display: grid;
  place-items: center
}

.modal-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  min-height: 520px
}

.modal-media {
  background: #f4e3c7;
  min-height: 420px;
  position: relative;
  overflow: hidden
}

.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0
}

.modal-content {
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.modal-badge {
  align-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--brand-dark);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 900
}

.spec-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px
}

.spec-cell {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--cream)
}

.spec-cell small {
  display: block;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  margin-bottom: 4px
}

.spec-cell strong {
  font-size: 13px;
  color: var(--ink)
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto
}

.popup {
  width: min(500px, 100%);
  background: #fff;
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .35);
  position: relative;
  text-align: center;
  border: 1px solid var(--line)
}

.popup .modal-close {
  right: 12px;
  top: 12px
}

.popup-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(214, 31, 42, .12), rgba(216, 165, 72, .22));
  color: var(--brand);
  font-size: 28px
}

.popup p {
  margin: 12px 0 20px
}

.popup-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap
}

.mobile-panel {
  display: none
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease)
}

.reveal.in-view {
  opacity: 1;
  transform: none
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important
  }

  .reveal {
    opacity: 1;
    transform: none
  }
}

@media (max-width:1080px) {
  .nav__links {
    display: none
  }

  .menu-btn {
    display: grid;
    place-items: center
  }

  .mobile-panel {
    display: none;
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 10px);
    padding: 16px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    z-index: 55
  }

  .mobile-panel.active {
    display: grid;
    gap: 8px
  }

  .mobile-panel a {
    padding: 13px 14px;
    border-radius: 14px;
    font-weight: 900;
    color: var(--brand-deep)
  }

  .mobile-panel a:hover {
    background: var(--cream)
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .hero-visual {
    min-height: 560px;
    max-width: 700px;
    margin: auto;
    width: 100%
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .split,
  .quote-grid {
    grid-template-columns: 1fr
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:760px) {
  .container {
    width: min(100% - 28px, var(--max))
  }

  .top-strip__inner {
    justify-content: center;
    text-align: center;
    min-height: 44px
  }

  .top-strip__right {
    display: none
  }

  .nav {
    min-height: 74px
  }

  .brand__logo {
    width: 104px
  }

  .brand__text {
    display: none
  }

  .nav__actions .btn {
    display: none
  }

  .hero {
    padding: 42px 0 60px
  }

  .hero-grid {
    gap: 22px
  }

  .hero-lead {
    font-size: 16px
  }

  .hero-actions .btn {
    width: 100%
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 10px
  }

  .trust-card {
    min-height: auto
  }

  .hero-visual {
    min-height: 490px
  }

  .hero-frame {
    inset: 30px 8px 0 8px;
    border-radius: 30px
  }

  .hero-product {
    border-width: 6px;
    border-radius: 22px
  }

  .hero-product--main {
    left: 18px;
    top: 0;
    width: 64%;
    height: 380px
  }

  .hero-product--side {
    right: 4px;
    top: 70px;
    width: 40%;
    height: 250px
  }

  .hero-product--wide {
    left: 0;
    right: 0;
    bottom: 0;
    height: 165px
  }

  .hero-card {
    right: 10px;
    bottom: 118px;
    width: 250px;
    padding: 14px;
    border-radius: 22px
  }

  .section {
    padding: 62px 0
  }

  .feature-grid,
  .product-grid,
  .usecase-grid,
  .testimonial-grid {
    grid-template-columns: 1fr
  }

  .products-head {
    display: grid;
    gap: 18px
  }

  .filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px
  }

  .filter-btn {
    flex: 0 0 auto
  }

  .split-media,
  .split-media img {
    min-height: 420px
  }

  .quote-panel {
    padding: 26px 18px;
    border-radius: 28px
  }

  .form-grid {
    grid-template-columns: 1fr
  }

  .modal {
    border-radius: 24px
  }

  .modal-grid {
    grid-template-columns: 1fr
  }

  .modal-media {
    min-height: 340px
  }

  .modal-content {
    padding: 24px 18px
  }

  .spec-table {
    grid-template-columns: 1fr
  }

  .footer-grid {
    display: grid;
    text-align: center;
    justify-items: center
  }

  .floating-wa {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: center
  }

  .site-footer {
    padding-bottom: 86px
  }
}

@media (max-width:420px) {
  h1 {
    font-size: 44px
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 310px 10px 0
  }

  .hero-product--wide {
    height: 142px
  }

  .hero-visual {
    min-height: 540px
  }

  .product-card__actions {
    grid-template-columns: 1fr
  }
}
