:root {
  --ink: #222429;
  --ink-deep: #14161a;
  --ink-soft: #2b2e34;
  --blue: #1f4fff;
  --cyan: #2bd8ff;
  --orange: #fd914f;
  --paper: #ffffff;
  --paper-soft: #f3f5f8;
  --paper-warm: #f8f5f1;
  --text: #202631;
  --muted: #69717f;
  --muted-dark: #a7abb4;
  --line: #dde3ec;
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 60px rgba(20, 22, 26, 0.14);
  --radius: 8px;
  --header-height: 116px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

a:hover {
  color: #1237bf;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  position: relative;
  scroll-margin-top: calc(var(--header-height) + 18px);
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 1.25rem;
  color: #fff;
  font-size: 4.8rem;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.55rem;
}

h3 {
  font-size: 1.18rem;
}

p {
  margin-bottom: 1rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 2000;
  padding: 0.65rem 0.9rem;
  color: #fff;
  background: var(--orange);
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  background: rgba(20, 22, 26, 0.86);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(16px);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(20, 22, 26, 0.97);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.topbar {
  color: var(--muted-dark);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--line-dark);
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #eef2f8;
}

.topbar a:hover {
  color: var(--orange);
}

.topbar .container {
  min-height: 38px;
}

.topbar-note {
  color: #ffd7bd;
}

.main-nav {
  min-height: 78px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  max-width: min(292px, 68vw);
}

.brand-mark img {
  display: block;
  width: 292px;
  max-width: 100%;
  height: auto;
}

.brand-symbol {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #101217;
  background: var(--orange);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  font-weight: 900;
  overflow: hidden;
}

.brand-symbol::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(20, 22, 26, 0.22);
  transform: rotate(45deg);
}

.brand-mark strong,
.footer-brand {
  display: block;
  color: #fff;
  font-size: 1.14rem;
  line-height: 1.1;
}

.brand-mark small {
  display: block;
  color: var(--muted-dark);
  font-size: 0.78rem;
}

.navbar-dark .navbar-nav .nav-link {
  position: relative;
  color: #eef1f7;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.6rem 0.7rem;
}

.navbar-dark .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.22rem;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.18s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 0.35rem;
  color: #111318 !important;
  background: var(--orange);
  border-radius: 6px;
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: #fff;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.25);
  border-radius: 6px;
}

.btn {
  border-radius: 6px;
  font-weight: 900;
  padding: 0.9rem 1.2rem;
  letter-spacing: 0;
}

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

.btn i {
  margin-right: 0.45rem;
}

.btn-accent {
  color: #111318;
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 12px 30px rgba(253, 145, 79, 0.24);
}

.btn-accent:hover,
.btn-accent:focus {
  color: #111318;
  background: #fff;
  border-color: #fff;
}

.btn-primary {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 12px 30px rgba(31, 79, 255, 0.18);
}

.btn-primary:hover,
.btn-primary:focus {
  background: #173ed0;
  border-color: #173ed0;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.42);
}

.btn-outline-primary {
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline-primary:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.section-dark,
.section-light,
.section-muted,
.cta-band {
  padding: 6.25rem 0;
}

.section-light {
  background: var(--paper);
}

.section-muted {
  background:
    linear-gradient(rgba(20, 22, 26, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 22, 26, 0.028) 1px, transparent 1px),
    var(--paper-soft);
  background-size: 34px 34px;
}

.section-dark {
  color: #e8ebf1;
  background:
    linear-gradient(135deg, rgba(20, 22, 26, 0.94), rgba(20, 22, 26, 0.9)),
    url("../img/binifox/pattern/pt1.png") center/cover no-repeat,
    var(--ink);
}

.section-dark h2,
.section-dark h3,
.section-dark .section-heading h2 {
  color: #fff;
}

.section-dark p,
.section-dark li {
  color: #c5c9d1;
}

.hero-section {
  min-height: 760px;
  display: flex;
  align-items: center;
  padding-top: 11.5rem;
  padding-bottom: 7rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(20, 22, 26, 0.98), rgba(20, 22, 26, 0.88)),
    url("../img/binifox/pattern/pt2.png") center/cover no-repeat,
    var(--ink);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 86%);
  pointer-events: none;
}

.hero-section::after {
  content: "3D";
  position: absolute;
  right: 4%;
  bottom: -5rem;
  color: transparent;
  font-size: 13rem;
  font-weight: 900;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

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

.brand-line,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-line::before,
.section-kicker::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--orange);
}

.hero-lead {
  max-width: 640px;
  color: #e4e8ef;
  font-size: 1.24rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.6rem;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 680px;
}

.hero-benefits span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 58px;
  padding: 0.75rem 0.85rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.hero-benefits i {
  color: var(--cyan);
  font-size: 1.15rem;
}

.scanner-visual {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(20, 22, 26, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.scanner-visual::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.visual-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(43, 216, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 216, 255, 0.11) 1px, transparent 1px);
  background-size: 30px 30px;
  transform: perspective(460px) rotateX(60deg) translateY(70px);
  transform-origin: center bottom;
}

.scan-beam {
  position: absolute;
  left: 14%;
  right: 14%;
  top: 42%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--orange), transparent);
  box-shadow: 0 0 26px rgba(43, 216, 255, 0.7);
  animation: scanBeam 4s ease-in-out infinite;
}

@keyframes scanBeam {
  0%,
  100% {
    transform: translateY(-84px);
    opacity: 0.45;
  }

  50% {
    transform: translateY(112px);
    opacity: 1;
  }
}

.point-cloud {
  position: absolute;
  left: 13%;
  top: 18%;
  width: 36%;
  height: 42%;
}

.point-cloud span {
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(43, 216, 255, 0.85);
}

.point-cloud span:nth-child(1) { left: 18%; top: 14%; }
.point-cloud span:nth-child(2) { left: 38%; top: 9%; }
.point-cloud span:nth-child(3) { left: 60%; top: 21%; }
.point-cloud span:nth-child(4) { left: 76%; top: 44%; }
.point-cloud span:nth-child(5) { left: 54%; top: 66%; }
.point-cloud span:nth-child(6) { left: 25%; top: 73%; }
.point-cloud span:nth-child(7) { left: 9%; top: 47%; }
.point-cloud span:nth-child(8) { left: 42%; top: 42%; }

.wire-cube {
  position: absolute;
  right: 18%;
  top: 18%;
  width: 150px;
  height: 150px;
  border: 2px solid rgba(253, 145, 79, 0.86);
  transform: rotate(12deg) skew(-10deg);
  box-shadow: inset 0 0 35px rgba(253, 145, 79, 0.1), 0 0 32px rgba(253, 145, 79, 0.2);
}

.wire-cube::before,
.wire-cube::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(43, 216, 255, 0.8);
}

.wire-cube::after {
  inset: 37px;
  border-color: rgba(255, 255, 255, 0.5);
}

.process-card,
.visual-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  color: #fff;
  background: rgba(20, 22, 26, 0.76);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.process-card {
  bottom: 80px;
  justify-content: center;
  font-weight: 900;
}

.process-card i {
  color: var(--orange);
}

.visual-caption {
  bottom: 24px;
  justify-content: space-between;
  color: #d5dae3;
  font-size: 0.9rem;
}

.visual-caption strong {
  color: #fff;
}

.intro-strip {
  color: #fff;
  background: var(--ink-deep);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.intro-strip .container {
  position: relative;
  margin-top: -2.7rem;
  padding: 1.35rem;
  background: var(--ink);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.intro-strip strong {
  display: block;
  color: var(--orange);
  font-size: 2.2rem;
  line-height: 1;
}

.intro-strip span {
  color: #cfd3da;
  font-size: 0.92rem;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading .section-kicker {
  justify-content: center;
}

.section-heading .section-kicker::before {
  display: none;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading.light p {
  color: #c5c9d1;
}

.technical-image {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.highlight-line {
  position: relative;
  margin-top: 1.4rem;
  padding: 1rem 1.1rem 1rem 1.25rem;
  color: #111318;
  background: #fff2e9;
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  font-weight: 900;
}

.cta-inline {
  margin-top: 1.5rem;
}

.check-card,
.service-card,
.equipment-card,
.material-card,
.contact-panel,
.inquiry-form,
.comparison-panel,
.price-note,
.result-card {
  border-radius: 8px;
}

.check-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  height: 100%;
  padding: 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(20, 22, 26, 0.06);
}

.check-card i {
  flex: 0 0 auto;
  color: var(--orange);
  font-size: 1.25rem;
}

.use-list {
  display: grid;
  gap: 0.85rem;
}

.use-list div {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
}

.use-list i {
  color: var(--cyan);
  font-size: 1.2rem;
}

.services-section,
.pricing-section {
  background:
    linear-gradient(rgba(20, 22, 26, 0.94), rgba(20, 22, 26, 0.94)),
    url("../img/binifox/pattern/pt2.png") center/cover no-repeat,
    var(--ink);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  padding: 2rem 1.45rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line-dark);
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--orange);
  transform: scaleY(0.22);
  transform-origin: top;
  transition: transform 0.18s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(253, 145, 79, 0.65);
  background: rgba(255, 255, 255, 0.075);
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1.35rem;
  color: #111318;
  background: var(--orange);
  border-radius: 8px;
  font-size: 1.45rem;
}

.service-card h3 {
  color: #fff;
}

.service-card p {
  margin-bottom: 0;
  color: #c5c9d1;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.audience-grid div {
  min-height: 96px;
  padding: 1.2rem;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(34, 36, 41, 0.94), rgba(34, 36, 41, 0.84)),
    url("../img/binifox/pattern/dot.png") center/cover no-repeat;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  font-weight: 900;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.project-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  min-height: 92px;
  padding: 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(20, 22, 26, 0.06);
}

.project-item i {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: #111318;
  background: var(--orange);
  border-radius: 50%;
  font-size: 0.95rem;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 29px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
}

.timeline-step {
  position: relative;
  z-index: 1;
  padding: 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(20, 22, 26, 0.08);
}

.timeline-step strong {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  color: #111318;
  background: var(--orange);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(253, 145, 79, 0.4);
}

.timeline-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.compact-section {
  padding: 4.5rem 0;
}

.format-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.format-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0.7rem 1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  font-weight: 900;
}

.format-badges span:first-child,
.format-badges span:nth-child(5) {
  color: #111318;
  background: var(--orange);
  border-color: var(--orange);
}

.comparison-panel {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--ink);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}

.comparison-panel div {
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.comparison-panel strong {
  display: block;
  color: var(--orange);
  margin-bottom: 0.35rem;
}

.comparison-panel p {
  margin-bottom: 0;
  color: #d8dce4;
}

.equipment-card {
  padding: 1.8rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(20, 22, 26, 0.08);
}

.equipment-card.featured {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(34, 36, 41, 0.96), rgba(34, 36, 41, 0.84)),
    url("../img/binifox/trust/trust-bg.jpg") center/cover no-repeat;
  border-color: rgba(253, 145, 79, 0.38);
}

.equipment-card > i {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.1rem;
  color: #111318;
  background: var(--orange);
  border-radius: 8px;
  font-size: 1.5rem;
}

.equipment-card.featured h3,
.equipment-card.featured li {
  color: #fff;
}

.equipment-card ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
}

.small-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.equipment-card.featured .small-note {
  color: #cfd3da;
}

.two-column-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.two-column-list strong {
  display: block;
  margin-bottom: 0.35rem;
}

.two-column-list ul {
  margin-bottom: 0;
}

.material-card {
  height: 100%;
  padding: 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(20, 22, 26, 0.06);
}

.material-card h3 {
  color: var(--ink);
  font-size: 1.1rem;
}

.material-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.limitations-list {
  display: grid;
  gap: 0.9rem;
}

.limitations-list div {
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.limitations-list div::before {
  content: "!";
  position: absolute;
  left: 1rem;
  top: 1rem;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: #111318;
  background: var(--orange);
  border-radius: 50%;
  font-weight: 900;
}

.pricing-table {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.pricing-table div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin: 0;
  color: #fff;
  border-bottom: 1px solid var(--line-dark);
}

.pricing-table div:last-child {
  border-bottom: 0;
}

.pricing-table span,
.pricing-table strong {
  padding: 1rem;
}

.pricing-table div:hover {
  background: rgba(255, 255, 255, 0.05);
}

.pricing-table strong {
  color: var(--orange);
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.price-note {
  height: 100%;
  padding: 1.5rem;
  color: #111318;
  background: var(--orange);
}

.price-note h3 {
  color: #111318;
}

.price-note ul {
  padding-left: 1.2rem;
}

.price-note li {
  color: #111318;
}

.cta-band {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(31, 79, 255, 0.9), rgba(253, 145, 79, 0.9)),
    url("../img/binifox/bg/04.png") center/cover no-repeat;
}

.cta-band h2 {
  color: #fff;
  font-size: 2.35rem;
}

.cta-band p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

.faq-accordion .accordion-item {
  margin-bottom: 0.85rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(20, 22, 26, 0.05);
}

.faq-accordion .accordion-button {
  color: var(--ink);
  background: #fff;
  font-weight: 900;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #111318;
  background: #fff2e9;
}

.faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(253, 145, 79, 0.2);
}

.faq-accordion .accordion-body {
  color: var(--muted);
  background: #fff;
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(243, 245, 248, 0.96), rgba(243, 245, 248, 0.96)),
    url("../img/binifox/pattern/map.png") center/cover no-repeat;
}

.contact-panel {
  padding: 1.5rem;
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}

.contact-panel h3 {
  color: #fff;
}

.contact-panel p {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.8rem;
  color: #d5dae3;
}

.contact-panel a {
  color: #fff;
}

.contact-panel a:hover {
  color: var(--orange);
}

.contact-panel i {
  color: var(--orange);
}

.contact-panel .small-note {
  color: #ffd7bd;
}

.inquiry-form {
  padding: 1.6rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-label {
  color: var(--ink);
  font-weight: 800;
}

.form-control,
.form-select {
  min-height: 48px;
  color: var(--text);
  background-color: #fff;
  border-color: #cfd7e4;
  border-radius: 6px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 0.2rem rgba(253, 145, 79, 0.18);
}

textarea.form-control {
  min-height: 150px;
}

.form-text {
  color: var(--muted);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding: 4.5rem 0 2rem;
  color: #c8ccd4;
  background:
    linear-gradient(rgba(20, 22, 26, 0.96), rgba(20, 22, 26, 0.96)),
    url("../img/binifox/bg/footer-bg.jpg") center/cover no-repeat,
    var(--ink-deep);
}

.site-footer h2 {
  color: #fff;
  font-size: 1.1rem;
}

.site-footer p {
  max-width: 560px;
  color: #c8ccd4;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 0.45rem;
}

.site-footer a {
  color: #eef1f7;
}

.site-footer a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  color: #9da3ae;
  border-top: 1px solid var(--line-dark);
  font-size: 0.9rem;
}

.mobile-sticky-cta {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1040;
  display: none;
  padding: 0.9rem 1rem;
  color: #111318;
  background: var(--orange);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  font-weight: 900;
  text-align: center;
}

.mobile-sticky-cta:hover {
  color: #111318;
  background: #fff;
}

.scroll-top {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 1030;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #111318;
  background: var(--orange);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.result-section {
  min-height: 76vh;
  display: flex;
  align-items: center;
  padding-top: 12rem;
}

.result-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.result-card > i {
  color: var(--blue);
  font-size: 3rem;
}

.result-card h1 {
  color: var(--ink);
  font-size: 2.25rem;
  text-transform: none;
}

.result-card.success > i {
  color: #16a34a;
}

.result-card.error > i {
  color: #dc2626;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.delay-1 {
  transition-delay: 0.12s;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1199.98px) {
  :root {
    --header-height: 106px;
  }

  h1 {
    font-size: 3.7rem;
  }

  .navbar-collapse {
    margin-top: 0.8rem;
    padding: 1rem;
    background: rgba(20, 22, 26, 0.98);
    border: 1px solid var(--line-dark);
    border-radius: 8px;
  }

  .navbar-dark .navbar-nav .nav-link {
    padding: 0.7rem 0;
  }

  .navbar-dark .navbar-nav .nav-link::after {
    left: 0;
    right: 0;
  }

  .nav-cta {
    display: inline-flex;
    margin-top: 0.5rem;
    margin-left: 0;
    padding: 0.8rem 1rem !important;
  }

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

  .timeline::before {
    display: none;
  }

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

@media (max-width: 991.98px) {
  .section-dark,
  .section-light,
  .section-muted,
  .cta-band {
    padding: 4.5rem 0;
  }

  .hero-section {
    min-height: auto;
    padding-top: 10rem;
    padding-bottom: 5.5rem;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.1rem;
  }

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

  .scanner-visual {
    min-height: 400px;
  }

  .project-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  :root {
    --header-height: 102px;
  }

  body {
    padding-bottom: 72px;
  }

  .topbar {
    font-size: 0.84rem;
  }

  .topbar .container {
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
  }

  .topbar-note {
    display: none;
  }

  .main-nav {
    min-height: 64px;
  }

  .brand-mark {
    max-width: min(190px, 52vw);
  }

  .brand-mark img {
    width: 190px;
  }

  .navbar-toggler {
    margin-left: auto;
  }

  .hero-section {
    padding-top: 9rem;
    text-align: left;
  }

  .hero-section .container,
  .hero-section .row,
  .hero-section [class*="col-"] {
    width: 100%;
    max-width: 100%;
  }

  .hero-section p,
  .hero-lead {
    width: 100%;
    max-width: 360px;
    overflow-wrap: anywhere;
  }

  h1 {
    font-size: 2.22rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-actions .btn,
  .cta-inline .btn {
    width: 100%;
  }

  .scanner-visual {
    min-height: 330px;
    max-width: 100%;
  }

  .wire-cube {
    right: 14%;
    width: 116px;
    height: 116px;
  }

  .process-card,
  .visual-caption {
    left: 16px;
    right: 16px;
    flex-wrap: wrap;
  }

  .process-card {
    bottom: 92px;
  }

  .intro-strip .container {
    margin-top: 0;
    border-radius: 0;
  }

  .timeline,
  .audience-grid,
  .two-column-list {
    grid-template-columns: 1fr;
  }

  .format-badges span {
    flex: 1 1 calc(50% - 0.85rem);
    justify-content: center;
  }

  .pricing-table {
    overflow-x: auto;
  }

  .pricing-table div {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pricing-table strong {
    padding-top: 0;
    text-align: left;
  }

  .cta-band .text-lg-end {
    text-align: left !important;
  }

  .mobile-sticky-cta {
    display: block;
  }

  .scroll-top {
    right: 1rem;
    bottom: 5.2rem;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-bottom: 0.6rem;
  }
}

@media (max-width: 575.98px) {
  .section-heading {
    margin-bottom: 2rem;
    text-align: left;
  }

  .section-heading .section-kicker {
    justify-content: flex-start;
  }

  h1 {
    font-size: 1.92rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .hero-section::after {
    display: none;
  }

  .brand-line,
  .section-kicker {
    font-size: 0.8rem;
  }

  .brand-line::before,
  .section-kicker::before {
    width: 24px;
  }

  .format-badges span {
    flex-basis: 100%;
  }
}
