:root {
  --bg: #eef1ea;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.72);
  --text: #142014;
  --muted: #586353;
  --accent: #0d6b2d;
  --accent-dark: #0a4d21;
  --accent-soft: #e8f3ea;
  --line: rgba(14, 28, 18, 0.09);
  --line-strong: rgba(14, 28, 18, 0.16);
  --shadow: 0 20px 44px rgba(22, 28, 22, 0.08);
  --shadow-strong: 0 30px 80px rgba(22, 28, 22, 0.13);
  --shadow-soft: 0 10px 24px rgba(22, 28, 22, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Assistant", "Heebo", sans-serif;
  color: var(--text);
  background: var(--bg);
  position: relative;
  overflow-x: hidden;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: 4px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.scroll-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #86cb6c, var(--accent), var(--accent-dark));
  box-shadow: 0 4px 18px rgba(13, 107, 45, 0.35);
  transform: scaleX(0);
  transform-origin: center right;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at top right, rgba(10, 77, 33, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(12, 38, 18, 0.28), rgba(238, 241, 234, 0.38)),
    url("./52f8b5aa-f52e-4f9c-8841-0a3f604f571b.jpeg") center center / cover no-repeat;
  transform: scale(1.02);
}

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

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

.site-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.site-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.22;
  filter: blur(1px) saturate(1.04);
}

.site-backdrop-top::before {
  background-image:
    linear-gradient(180deg, rgba(244, 242, 237, 0.14), rgba(244, 242, 237, 0.8)),
    url("./52f8b5aa-f52e-4f9c-8841-0a3f604f571b.jpeg");
  background-position: center top;
}

.site-backdrop-bottom::before {
  background-image:
    linear-gradient(0deg, rgba(244, 242, 237, 0.16), rgba(244, 242, 237, 0.88)),
    url("./bf5d4e0b-1eea-4f8c-b48b-c0177d71c18d.jpeg");
  background-position: center bottom;
  transform: scale(1.04);
}

.site-frame {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 24px));
  margin: 18px auto;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.94)),
    rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.site-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.88) 55%),
    url("./bf5d4e0b-1eea-4f8c-b48b-c0177d71c18d.jpeg") center center / cover no-repeat;
  opacity: 0.16;
}

.site-frame > * {
  position: relative;
  z-index: 1;
}

.page-shell {
  width: min(100% - 48px, 1020px);
  margin: 0 auto;
}

.hero {
  padding: 30px 0 18px;
  position: relative;
}

.hero::before {
  content: none;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--accent-dark), #78bc63);
  position: relative;
  box-shadow: 0 10px 24px rgba(13, 107, 45, 0.18);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  bottom: 9px;
  width: 8px;
  border-radius: 999px;
  background: #eef8ef;
}

.brand-mark::before {
  right: 12px;
  height: 18px;
  transform: rotate(18deg);
}

.brand-mark::after {
  right: 22px;
  height: 24px;
  transform: rotate(-12deg);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1.14rem;
  font-weight: 800;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.96rem;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(22, 28, 22, 0.12);
}

.hero-video {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  padding: 10px;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.hero-video::after {
  content: "";
  position: absolute;
  inset: auto -12% -45% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(134, 203, 108, 0.22), transparent 66%);
  pointer-events: none;
}

.hero-video-player {
  display: block;
  width: 100%;
  min-height: 300px;
  max-height: 72vh;
  border-radius: 20px;
  background: #102114;
  object-fit: cover;
}

.image-button {
  cursor: pointer;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  background: transparent;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  grid-template-areas: "copy media";
  gap: 24px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-copy,
.hero-media,
.feature-card,
.card,
.service-item {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero-copy,
.hero-media,
.feature-card,
.card {
  border-radius: 28px;
}

.hero-copy::after,
.hero-media::after,
.feature-card::after,
.card::after,
.trust-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hero-copy:hover::after,
.hero-media:hover::after,
.feature-card:hover::after,
.card:hover::after,
.trust-pill:hover::after {
  opacity: 1;
}

.hero-copy::before,
.feature-card::before,
.card::before,
.trust-pill::before,
.hero-proof::before,
.hero-spec::before,
.detail-item::before,
.contact-point::before,
.process-step::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: inherit;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    var(--panel-image, url("./52f8b5aa-f52e-4f9c-8841-0a3f604f571b.jpeg"));
  background-size: cover;
  background-position: center;
  opacity: 0.34;
  filter: saturate(1.08) contrast(1);
}

.hero-copy {
  grid-area: copy;
  padding: 34px;
  --panel-image: url("./52f8b5aa-f52e-4f9c-8841-0a3f604f571b.jpeg");
}

.hero-copy::before,
.feature-card::before,
.card::before {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.74)),
    var(--panel-image, url("./52f8b5aa-f52e-4f9c-8841-0a3f604f571b.jpeg"));
}

.trust-pill::before,
.hero-proof::before,
.hero-spec::before,
.detail-item::before,
.contact-point::before,
.process-step::before {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.7)),
    var(--panel-image, url("./52f8b5aa-f52e-4f9c-8841-0a3f604f571b.jpeg"));
}

.eyebrow,
.section-heading span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.94rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  font-family: "Heebo", "Assistant", sans-serif;
}

h1 {
  margin-top: 16px;
  font-size: clamp(2.2rem, 4.6vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 11.5ch;
}

.lead,
.card-text,
.feature-card p,
.roll-item span,
.service-item span,
.delivery-list div {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.section-intro,
.search-support-copy {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.lead {
  margin: 18px 0 0;
  max-width: 58ch;
}

.hero-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.meta-chip {
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 0.95rem;
}

.hero-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.hero-proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.hero-proof {
  padding: 14px 15px;
  border-radius: 20px;
  background: rgba(245, 248, 244, 0.88);
  border: 1px solid rgba(14, 28, 18, 0.05);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero-proof:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(22, 28, 22, 0.08);
}

.hero-proof:nth-child(3n + 1),
.trust-pill:nth-child(3n + 1),
.feature-card:nth-child(3n + 1),
.detail-item:nth-child(3n + 1),
.contact-point:nth-child(3n + 1),
.process-step:nth-child(3n + 1) {
  --panel-image: url("./52f8b5aa-f52e-4f9c-8841-0a3f604f571b.jpeg");
}

.hero-proof:nth-child(3n + 2),
.trust-pill:nth-child(3n + 2),
.feature-card:nth-child(3n + 2),
.detail-item:nth-child(3n + 2),
.contact-point:nth-child(3n + 2),
.process-step:nth-child(3n + 2),
.hero-spec:nth-child(odd),
.card {
  --panel-image: url("./bf5d4e0b-1eea-4f8c-b48b-c0177d71c18d.jpeg");
}

.hero-proof:nth-child(3n),
.trust-pill:nth-child(3n),
.feature-card:nth-child(3n),
.detail-item:nth-child(3n),
.contact-point:nth-child(3n),
.process-step:nth-child(3n),
.hero-spec:nth-child(even) {
  --panel-image: url("./WhatsApp Image 2026-05-25 at 22.45.59 (1).jpeg");
}

.hero-proof strong,
.detail-item strong,
.contact-point strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.98rem;
}

.hero-proof span,
.detail-item span,
.process-step span,
.contact-point span {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.94rem;
}

.hero-spec {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(14, 28, 18, 0.06);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero-spec span,
.spec span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-spec strong,
.spec strong,
.roll-item strong,
.service-item strong {
  font-size: 1rem;
  line-height: 1.45;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.cta-row.compact {
  margin-top: 20px;
}

.hero-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.search-support-copy {
  margin: 10px 0 0;
  max-width: 58ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 1.02rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  box-shadow: 0 12px 26px rgba(13, 107, 45, 0.22);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.24) 50%, transparent 75%);
  transform: translateX(-120%);
  transition: transform 0.5s ease;
}

.btn-primary:hover::after {
  transform: translateX(120%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  box-shadow: 0 16px 28px rgba(22, 28, 22, 0.1);
}

.hero-media {
  grid-area: media;
  padding: 14px;
}

.product-stage {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #f7f7f5;
  min-height: 430px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.38);
}

.product-stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(14, 20, 15, 0), rgba(14, 20, 15, 0.38));
}

.stage-button {
  display: block;
  width: 100%;
  height: 100%;
}

.product-stage img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: opacity 0.22s ease, transform 0.4s ease;
}

.product-stage:hover img {
  transform: scale(1.02);
}

.product-stage img.is-swapping {
  opacity: 0.55;
}

.media-badge,
.floating-offer {
  position: absolute;
  z-index: 1;
}

.media-badge {
  right: 16px;
  bottom: 16px;
  max-width: 260px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(17, 21, 17, 0.72);
  color: #fff;
}

.media-badge strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.06rem;
}

.floating-offer {
  top: 16px;
  left: 16px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.84);
  animation: badgeFloat 3.8s ease-in-out infinite;
}

.floating-offer span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.84rem;
}

.floating-offer strong {
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
}

.media-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.thumb-card {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  aspect-ratio: 1 / 0.8;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.thumb-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(22, 28, 22, 0.12);
}

.thumb-card.is-active {
  border-color: rgba(13, 107, 45, 0.42);
  box-shadow: 0 12px 28px rgba(13, 107, 45, 0.18);
  transform: translateY(-2px);
}

.thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 18px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(11, 17, 12, 0.8);
  cursor: pointer;
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  max-height: 88vh;
  padding: 10px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.lightbox-close {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 26, 17, 0.82);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.lightbox-image {
  display: block;
  width: 100%;
  max-height: calc(88vh - 20px);
  border-radius: 18px;
  object-fit: contain;
  background: #fff;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 10px 0 0;
}

.service-item {
  padding: 18px;
  border-radius: 22px;
}

.service-item strong {
  display: block;
  margin-bottom: 6px;
}

.section {
  padding: 28px 0 10px;
}

.section-tight {
  padding-top: 16px;
  padding-bottom: 4px;
}

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

.left-align {
  text-align: right;
}

.section-heading h2 {
  margin-top: 12px;
  font-size: clamp(1.7rem, 3vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-intro {
  margin: -2px 0 18px;
  max-width: 72ch;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-pill {
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(250, 252, 248, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.trust-pill:hover,
.feature-card:hover,
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 42px rgba(22, 28, 22, 0.1);
}

.trust-pill span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-pill strong {
  font-size: 1.06rem;
  line-height: 1.4;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  padding: 24px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.feature-card-wide {
  grid-column: span 2;
}

.use-case-grid .feature-card-wide {
  grid-column: span 3;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.section-grid,
.bottom-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  position: relative;
  padding: 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  isolation: isolate;
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: inherit;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.68)),
    var(--panel-image, url("./52f8b5aa-f52e-4f9c-8841-0a3f604f571b.jpeg"));
  background-size: cover;
  background-position: center;
  opacity: 0.38;
}

.faq-item:nth-child(odd) {
  --panel-image: url("./bf5d4e0b-1eea-4f8c-b48b-c0177d71c18d.jpeg");
}

.faq-item:nth-child(even) {
  --panel-image: url("./WhatsApp Image 2026-05-25 at 22.45.59 (1).jpeg");
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 22px 56px 22px 22px;
  cursor: pointer;
  list-style: none;
  font-size: 1.08rem;
  font-weight: 800;
}

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

.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 24px;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-dark);
  transform: translateY(-50%);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.faq-item summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] summary::after {
  opacity: 0;
  transform: translateY(-50%) rotate(90deg) scaleX(0.3);
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.card {
  padding: 24px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.accent-card {
  background:
    linear-gradient(180deg, rgba(238, 247, 239, 0.96), rgba(255, 255, 255, 0.88)),
    var(--surface);
}

.details-grid {
  align-items: start;
}

.detail-list,
.contact-points {
  display: grid;
  gap: 12px;
}

.detail-item,
.contact-point {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.process-card {
  background:
    linear-gradient(180deg, rgba(249, 251, 248, 0.94), rgba(255, 255, 255, 0.88)),
    var(--surface);
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.process-step:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 107, 45, 0.18);
  box-shadow: var(--shadow-soft);
}

.process-step b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: #fff;
  font-family: "Heebo", "Assistant", sans-serif;
  font-size: 1rem;
}

.process-step strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.offer-notes,
.roll-list,
.delivery-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.offer-notes div,
.roll-item,
.delivery-list div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
}

.offer-notes div {
  font-weight: 700;
}

.roll-item strong {
  display: block;
  margin-bottom: 4px;
}

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

.spec {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
}

.calculator {
  display: grid;
  gap: 14px;
}

.calculator-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
}

input {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(14, 28, 18, 0.12);
  background: rgba(255, 255, 255, 0.98);
  font: inherit;
}

.calc-result {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: #fff;
}

.calc-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.calc-row span {
  font-size: 0.95rem;
  opacity: 0.88;
}

.calc-row strong {
  font-size: 1.9rem;
  line-height: 1;
}

.contact-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 248, 241, 0.9)),
    rgba(255, 255, 255, 0.82);
}

.delivery-panel {
  background:
    linear-gradient(180deg, rgba(255, 251, 242, 0.92), rgba(255, 255, 255, 0.9)),
    rgba(255, 255, 255, 0.82);
}

.phone {
  display: inline-block;
  margin-top: 14px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--accent-dark);
}

.footer {
  padding: 26px 0 34px;
  color: var(--muted);
  font-size: 0.95rem;
}

.sticky-contact {
  position: fixed;
  right: 50%;
  bottom: 18px;
  z-index: 20;
  display: none;
  gap: 10px;
  width: min(420px, calc(100% - 24px));
  padding: 10px;
  border-radius: 24px;
  background: rgba(14, 20, 15, 0.78);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  transform: translateX(50%);
}

.sticky-contact-link {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 16px;
  font-weight: 800;
}

.sticky-contact-primary {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: #fff;
}

.sticky-contact-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.65s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

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

@media (max-width: 980px) {
  .site-frame {
    width: min(100% - 16px, 1120px);
    border-radius: 28px;
  }

  .page-shell {
    width: min(100% - 28px, 1020px);
  }

  .hero-grid,
  .section-grid,
  .bottom-cta,
  .feature-grid,
  .service-strip,
  .trust-band {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-areas:
      "media"
      "copy";
  }

  .feature-card-wide {
    grid-column: auto;
  }

  .hero-specs,
  .spec-grid,
  .calculator-fields,
  .hero-proof-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .faq-item::before {
    opacity: 0.46;
  }

  .faq-item summary {
    padding: 18px 50px 18px 18px;
    font-size: 1rem;
  }

  .faq-item p {
    padding: 0 18px 18px;
  }

  .hero-copy::before,
  .feature-card::before,
  .card::before,
  .trust-pill::before,
  .hero-proof::before,
  .hero-spec::before,
  .detail-item::before,
  .contact-point::before,
  .process-step::before {
    opacity: 0.42;
    background-position: center;
    filter: saturate(1.12) contrast(1.02);
  }

  .hero-copy::before,
  .feature-card::before,
  .card::before {
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.64)),
      var(--panel-image, url("./52f8b5aa-f52e-4f9c-8841-0a3f604f571b.jpeg"));
  }

  .trust-pill::before,
  .hero-proof::before,
  .hero-spec::before,
  .detail-item::before,
  .contact-point::before,
  .process-step::before {
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.6)),
      var(--panel-image, url("./52f8b5aa-f52e-4f9c-8841-0a3f604f571b.jpeg"));
  }

  .topbar {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .contact-chip,
  .btn {
    width: 100%;
  }

  .contact-chip {
    width: auto;
    min-height: 42px;
    padding: 8px 14px;
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .hero-copy,
  .hero-media,
  .hero-video,
  .feature-card,
  .card,
  .service-item {
    border-radius: 24px;
  }

  h1 {
    max-width: none;
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .hero {
    padding-top: 18px;
  }

  .hero::before {
    content: none;
  }

  .hero-grid {
    gap: 14px;
  }

  .hero-video {
    margin-bottom: 14px;
    padding: 8px;
  }

  .hero-video-player {
    min-height: 240px;
    border-radius: 18px;
  }

  .hero-copy {
    padding: 24px;
  }

  .product-stage,
  .product-stage img {
    min-height: 360px;
  }

  .media-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sticky-contact {
    display: flex;
    bottom: 12px;
  }

  .footer {
    padding-bottom: 90px;
  }
}

@media (max-width: 480px) {
  .faq-item {
    border-radius: 20px;
  }

  .faq-item::before {
    opacity: 0.52;
  }

  .faq-item summary {
    padding: 17px 46px 17px 16px;
  }

  .faq-item summary::before,
  .faq-item summary::after {
    left: 18px;
  }

  .faq-item p {
    padding: 0 16px 16px;
  }

  .hero-copy::before,
  .feature-card::before,
  .card::before,
  .trust-pill::before,
  .hero-proof::before,
  .hero-spec::before,
  .detail-item::before,
  .contact-point::before,
  .process-step::before {
    opacity: 0.5;
    filter: saturate(1.16) contrast(1.04);
  }

  .site-frame {
    margin: 8px auto;
    border-radius: 22px;
  }

  .page-shell {
    width: min(100% - 20px, 1020px);
  }

  .hero {
    padding-top: 16px;
  }

  .topbar {
    align-items: flex-start;
  }

  .brand {
    gap: 10px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy span {
    font-size: 0.84rem;
  }

  .hero-copy,
  .hero-video,
  .card,
  .feature-card,
  .service-item {
    padding: 20px;
  }

  .hero-media {
    padding: 10px;
  }

  .hero-video {
    padding: 8px;
    margin-bottom: 12px;
  }

  .hero-copy {
    padding-top: 18px;
  }

  .hero-proof,
  .detail-item,
  .contact-point,
  .process-step,
  .trust-pill {
    padding: 14px;
  }

  .hero-meta-bar {
    gap: 8px;
    margin-top: 16px;
  }

  .meta-chip {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .media-badge {
    right: 12px;
    left: 12px;
    bottom: 12px;
    max-width: none;
  }

  .floating-offer {
    top: 12px;
    left: 12px;
  }

  .product-stage,
  .product-stage img {
    min-height: 300px;
  }

  .hero-video-player {
    min-height: 210px;
  }

  .media-thumbs {
    gap: 8px;
  }

  .lightbox {
    padding: 10px;
  }

  .lightbox-dialog {
    padding: 8px;
    border-radius: 18px;
  }

  .lightbox-close {
    top: 10px;
    left: 10px;
    width: 38px;
    height: 38px;
  }

  .sticky-contact {
    width: min(100% - 16px, 420px);
    padding: 8px;
    border-radius: 18px;
  }

  .sticky-contact-link {
    min-height: 48px;
    font-size: 0.96rem;
  }
}
