:root {
  --ink: #0b0c0c;
  --ink-soft: #000000;
  --paper: #ffffff;
  --paper-dim: #ffffff;
  --line: #d8d4c4;
  --amber: #204099;
  --amber-dark: #204099;
  --red: #204099;
  --teal: #2e8b74;
  --teal-dark: #22664f;
  --brand-blue: #204099;
  --brand-blue-dark: #204099;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--paper);
}

::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 6px;
}

h1,
h2,
h3,
h4,
.display {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.mono {
  font-family: "IBM Plex Mono", monospace;
}

a {
  text-decoration: none;
}

::selection {
  background: var(--amber);
  color: var(--ink);
}

.barcode-rule {
  height: 14px;
  width: 100%;
  background-image: repeating-linear-gradient(
    90deg,
    var(--ink) 0px,
    var(--ink) 2px,
    transparent 2px,
    transparent 5px,
    var(--ink) 5px,
    var(--ink) 6px,
    transparent 6px,
    transparent 11px,
    var(--ink) 11px,
    var(--ink) 14px,
    transparent 14px,
    transparent 17px,
    var(--ink) 17px,
    var(--ink) 18px,
    transparent 18px,
    transparent 23px
  );
  background-size: 130px 100%;
  opacity: 0.85;
}

.barcode-rule.on-dark {
  background-image: repeating-linear-gradient(
    90deg,
    var(--paper) 0px,
    var(--paper) 2px,
    transparent 2px,
    transparent 5px,
    var(--paper) 5px,
    var(--paper) 6px,
    transparent 6px,
    transparent 11px,
    var(--paper) 11px,
    var(--paper) 14px,
    transparent 14px,
    transparent 17px,
    var(--paper) 17px,
    var(--paper) 18px,
    transparent 18px,
    transparent 23px
  );
}

.ibadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.ibadge.x {
  background: rgba(198, 73, 63, 0.12);
  color: var(--red);
}

.ibadge.check {
  background: rgba(46, 139, 116, 0.14);
  color: var(--teal-dark);
}

.ibadge svg {
  width: 12px;
  height: 12px;
}

.top-bar {
  background: var(--brand-blue);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.82rem;
  padding: 0.55rem 0;
  position: relative;
}

.top-bar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--teal));
}

.top-bar .contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.top-bar .contact-item svg {
  width: 14px;
  height: 14px;
  color: #fff;
  flex: none;
}

.top-bar .contact-item:hover {
  color: #fff;
  text-decoration: underline;
}

.top-bar .divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.35);
  display: inline-block;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.social-icons a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.social-icons a:hover {
  background: var(--amber);
  color: var(--ink);
  transform: translateY(-2px);
}

.social-icons svg {
  width: 13px;
  height: 13px;
}

@media (max-width: 575px) {
  .top-bar .contact-item.email-item {
    display: none;
  }
}

.site-nav {
  background: rgba(245, 245, 240, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow 0.25s ease;
}

.site-nav.scrolled {
  box-shadow: 0 8px 24px -18px rgba(23, 35, 61, 0.4);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
}

.brand-mark .logo-icon {
  width: 80px;
  height: 50px;
  border-radius: 8px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-mark .logo-icon svg {
  width: 22px;
  height: 22px;
  color: var(--amber);
}

.brand-mark .word {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-mark .word .l1 {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
}

.brand-mark .word .l1 span {
  color: var(--brand-blue);
}

.brand-mark .word .l2 {
  font-family: "IBM Plex Mono";
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-top: 0.15rem;
}

.nav-link-custom {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-soft) !important;
  padding: 0.4rem 0.9rem !important;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  position: relative;
}

.nav-link-custom::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--brand-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-link-custom:hover {
  color: var(--ink) !important;
}

.nav-link-custom:hover::after {
  transform: scaleX(1);
}

.btn-amber {
  background: linear-gradient(135deg, #204099, var(--amber) 60%);
  color: white;
  font-weight: 600;
  border: none;
  padding: 0.65rem 1.4rem;
  border-radius: 3px;
  font-size: 0.92rem;
  box-shadow: 3px 3px 0 var(--ink);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-amber:hover {
  color: var(--ink);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}

.btn-amber .arrow {
  transition: transform 0.2s ease;
}

.btn-amber:hover .arrow {
  transform: translateX(3px);
}

.btn-outline-ink {
  border: 1.5px solid var(--ink);
  color: var(--ink);
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  border-radius: 3px;
  font-size: 0.92rem;
  background: transparent;
}

.btn-outline-ink:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn-teal {
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 0.6rem 1.3rem;
  border-radius: 3px;
  font-size: 0.92rem;
}

.btn-teal:hover {
  background: var(--teal-dark);
  color: #fff;
}

/* ================= MOBILE HAMBURGER MENU ================= */
.hamburger-btn {
  width: 42px;
  height: 42px;
  flex: none;
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease;
}

.hamburger-btn:active {
  transform: scale(0.94);
}

.hamburger-btn span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition:
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.2s ease,
    background 0.2s ease;
}

.hamburger-btn.open {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

.hamburger-btn.open span {
  background: #fff;
}

.hamburger-btn.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

#mobileNavMenu {
  background: var(--paper);
  border-top: 1px solid var(--line);
  box-shadow: 0 18px 32px -18px rgba(23, 35, 61, 0.28);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 0.75rem clamp(1rem, 4vw, 1.6rem) 1.4rem;
  gap: 0.4rem;
  max-width: 100%;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: "IBM Plex Sans";
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink) !important;
  letter-spacing: 0.01em;
  padding: 0.8rem 0.85rem;
  border-radius: 10px;
  background: var(--paper-dim);
  border: 1px solid transparent;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.15s ease,
    padding-left 0.18s ease;
}

.mobile-nav-link:active {
  transform: scale(0.98);
}

.mobile-nav-link:hover {
  background: rgba(32, 64, 153, 0.07);
  border-color: rgba(32, 64, 153, 0.18);
  color: var(--brand-blue) !important;
}

.mnl-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(32, 64, 153, 0.1);
  color: var(--brand-blue);
}

.mnl-icon svg {
  width: 17px;
  height: 17px;
}

.mnl-txt {
  flex: 1;
  min-width: 0;
}

.mnl-arrow {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--line);
  transition:
    transform 0.18s ease,
    color 0.18s ease;
}

.mnl-arrow svg {
  width: 15px;
  height: 15px;
}

.mobile-nav-link:hover .mnl-arrow {
  transform: translateX(3px);
  color: var(--brand-blue);
}

.mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, #204099, var(--amber) 60%);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  box-shadow: 0 10px 20px -8px rgba(32, 64, 153, 0.5);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.mobile-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -8px rgba(32, 64, 153, 0.55);
  color: #fff !important;
}

.mobile-nav-cta:active {
  transform: translateY(0) scale(0.98);
}

/* Small phones */
@media (max-width: 380px) {
  .mobile-menu-inner {
    padding: 0.65rem 0.85rem 1.1rem;
    gap: 0.32rem;
  }

  .mobile-nav-link,
  .mobile-nav-cta {
    padding: 0.68rem 0.7rem;
    font-size: 0.88rem;
  }

  .mnl-icon {
    width: 30px;
    height: 30px;
  }

  .mnl-icon svg {
    width: 15px;
    height: 15px;
  }

  .hamburger-btn {
    width: 38px;
    height: 38px;
  }
}

/* Tablets: comfier spacing */
@media (min-width: 576px) and (max-width: 991px) {
  .mobile-menu-inner {
    max-width: 420px;
    margin: 0 auto;
  }
}
/* =================================================================== */

section {
  padding: 5rem 0;
}

.eyebrow {
  font-family: "IBM Plex Mono";
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-dark);
  font-weight: 600;
}

.eyebrow.on-dark {
  color: var(--amber);
}

.hero-carousel {
  position: relative;
}

.hero-carousel .carousel-item {
  transition:
    transform 0.7s ease-in-out,
    opacity 0.5s ease;
}

.hero {
  padding-top: 4.2rem;
  padding-bottom: 4.2rem;
  overflow: hidden;
  position: relative;
  background-image: radial-gradient(circle, var(--line) 1px, transparent 1px);
  background-size: 26px 26px;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -160px;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(232, 166, 59, 0.28),
    transparent 70%
  );
  filter: blur(10px);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(46, 139, 116, 0.16),
    transparent 70%
  );
  filter: blur(10px);
  pointer-events: none;
  z-index: 1;
}

.hero.tone-dark {
  background-color: var(--ink);
  background-image: radial-gradient(
    circle,
    rgba(245, 245, 240, 0.06) 1px,
    transparent 1px
  );
}

.hero.tone-dark h1,
.hero.tone-dark .lede {
  color: var(--paper);
}

.hero.tone-dark .lede {
  color: rgba(245, 245, 240, 0.72);
}

.hero.tone-paper2 {
  background-color: var(--paper-dim);
}

.hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.85);
}

.hero-photo-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    var(--paper) 0%,
    rgba(245, 245, 240, 0.93) 32%,
    rgba(245, 245, 240, 0.72) 52%,
    rgba(245, 245, 240, 0.35) 72%,
    rgba(245, 245, 240, 0.08) 100%
  );
}

.hero.tone-dark .hero-photo-bg img {
  filter: grayscale(0.3) saturate(0.7) brightness(0.7);
}

.hero.tone-dark .hero-photo-bg::after {
  background: linear-gradient(
    100deg,
    var(--ink) 0%,
    rgba(23, 35, 61, 0.94) 32%,
    rgba(23, 35, 61, 0.78) 52%,
    rgba(23, 35, 61, 0.45) 72%,
    rgba(23, 35, 61, 0.12) 100%
  );
}

.hero.tone-paper2 .hero-photo-bg::after {
  background: linear-gradient(
    100deg,
    var(--paper-dim) 0%,
    rgba(234, 232, 222, 0.94) 32%,
    rgba(234, 232, 222, 0.74) 52%,
    rgba(234, 232, 222, 0.36) 72%,
    rgba(234, 232, 222, 0.08) 100%
  );
}

.hero .row {
  z-index: 2;
}

@media (max-width: 767px) {
  .hero-photo-bg::after {
    background: linear-gradient(
      180deg,
      var(--paper) 0%,
      rgba(245, 245, 240, 0.94) 45%,
      rgba(245, 245, 240, 0.88) 100%
    ) !important;
  }

  .hero.tone-dark .hero-photo-bg::after {
    background: linear-gradient(
      180deg,
      var(--ink) 0%,
      rgba(23, 35, 61, 0.94) 45%,
      rgba(23, 35, 61, 0.88) 100%
    ) !important;
  }

  .hero.tone-paper2 .hero-photo-bg::after {
    background: linear-gradient(
      180deg,
      var(--paper-dim) 0%,
      rgba(234, 232, 222, 0.94) 45%,
      rgba(234, 232, 222, 0.88) 100%
    ) !important;
  }
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.12;
  position: relative;
}

.hero .lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 32rem;
  position: relative;
}

.hero .row {
  position: relative;
  z-index: 1;
  width: 100%;
}

.slide-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.1rem 1.3rem;
  text-align: center;
  min-width: 130px;
  box-shadow: 0 14px 26px -16px rgba(23, 35, 61, 0.2);
}

.slide-stat .v {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1;
}

.slide-stat .k {
  font-family: "IBM Plex Mono";
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-top: 0.4rem;
}

.slide-stat.old .v {
  color: var(--red);
}

.slide-stat.new .v {
  color: var(--teal-dark);
}

.stat-arrow {
  font-family: "Space Grotesk";
  font-size: 1.4rem;
  color: var(--ink-soft);
}

.hero-carousel .carousel-indicators {
  position: absolute;
  bottom: 1.1rem;
  margin: 0;
  gap: 0.4rem;
  z-index: 5;
}

.hero-carousel .carousel-indicators [data-bs-target] {
  width: 26px;
  height: 4px;
  border-radius: 2px;
  background: rgba(23, 35, 61, 0.25);
  border: none;
  opacity: 1;
  margin: 0;
  transition:
    background 0.2s ease,
    width 0.2s ease;
}

.hero-carousel .carousel-indicators .active {
  background: var(--amber);
  width: 38px;
}

.hero.tone-dark ~ .carousel-indicators [data-bs-target],
.tone-dark-indic [data-bs-target] {
  background: rgba(245, 245, 240, 0.3);
}

.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  box-shadow: 0 10px 24px -12px rgba(23, 35, 61, 0.3);
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.hero-nav-btn:hover {
  background: var(--ink);
  color: #fff;
}

.hero-nav-btn.prev {
  left: 1.2rem;
}

.hero-nav-btn.next {
  right: 1.2rem;
}

.hero-nav-btn svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 767px) {
  .hero-nav-btn {
    display: none;
  }
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0.4rem 0.85rem 0.4rem 0.55rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  box-shadow: 0 2px 8px -4px rgba(23, 35, 61, 0.15);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.feature-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -6px rgba(23, 35, 61, 0.25);
}

.feature-tag .ibadge {
  width: 20px;
  height: 20px;
  background: var(--paper-dim);
}

.feature-tag svg {
  width: 11px;
  height: 11px;
  flex: none;
  color: var(--teal-dark);
}

.receipt-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}

.receipt {
  background: #fff;
  width: 270px;
  padding: 1.6rem 1.4rem 2rem;
  box-shadow: 0 24px 48px -18px rgba(23, 35, 61, 0.35);
  font-family: "IBM Plex Mono";
  font-size: 0.78rem;
  color: var(--ink);
  position: relative;
  transform: rotate(-1.5deg);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.receipt:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 32px 56px -18px rgba(23, 35, 61, 0.42);
}

.price-sticker {
  position: absolute;
  left: -22px;
  bottom: 32px;
  z-index: 2;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-family: "Space Grotesk";
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-10deg);
  box-shadow: 0 12px 24px -10px rgba(34, 102, 79, 0.6);
  border: 3px dashed rgba(255, 255, 255, 0.55);
}

.price-sticker .t1 {
  font-size: 0.55rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}

.price-sticker .t2 {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.receipt::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 18px;
  background:
    linear-gradient(-45deg, #fff 8px, transparent 0),
    linear-gradient(45deg, #fff 8px, transparent 0);
  background-size: 16px 16px;
  background-repeat: repeat-x;
}

.receipt-store {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
}

.receipt-sub {
  text-align: center;
  font-size: 0.68rem;
  color: var(--ink-soft);
  margin-bottom: 0.9rem;
}

.receipt hr {
  border-top: 1px dashed var(--line);
  margin: 0.6rem 0;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  margin: 0.2rem 0;
}

.receipt-row.bad {
  color: var(--red);
}

.wait-counter {
  margin-top: 1rem;
  padding: 0.7rem 0.6rem;
  background: var(--paper);
  border: 1px dashed var(--red);
  text-align: center;
  border-radius: 2px;
}

.wait-counter .label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.wait-counter .time {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--red);
}

.receipt-flag {
  position: absolute;
  top: -14px;
  right: -14px;
  background: var(--ink);
  color: var(--paper);
  font-family: "Space Grotesk";
  font-weight: 600;
  font-size: 0.7rem;
  padding: 0.4rem 0.6rem;
  border-radius: 2px;
  transform: rotate(4deg);
}

.about-section {
  background: var(--paper);
  position: relative;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand-blue);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.55rem 1.2rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 20px -10px rgba(21, 94, 168, 0.5);
}

.about-badge svg {
  width: 15px;
  height: 15px;
  flex: none;
}

.about-section h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
}

.about-section .lede-p {
  color: var(--ink-soft);
  font-size: 1rem;
  margin-top: 1.1rem;
  max-width: 34rem;
}

.about-section .lede-p strong {
  color: var(--ink);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-top: 2.2rem;
  max-width: 34rem;
}

.about-stat-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.4rem 1rem;
  text-align: center;
  box-shadow: 0 14px 26px -20px rgba(23, 35, 61, 0.25);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.about-stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px -16px rgba(23, 35, 61, 0.3);
}

.about-stat-box .v {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--red);
  line-height: 1;
}

.about-stat-box .k {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
  font-weight: 500;
}

.about-cta {
  margin-top: 2.2rem;
}

.about-img-wrap {
  position: relative;
}

.about-img-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 70px -30px rgba(23, 35, 61, 0.4);
  aspect-ratio: 4/3.1;
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(23, 35, 61, 0.55) 100%
  );
}

.about-float-card {
  position: absolute;
  left: 1.6rem;
  bottom: 1.6rem;
  z-index: 3;
  background: #fff;
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: 0 20px 40px -18px rgba(23, 35, 61, 0.4);
  max-width: 230px;
}

.about-float-card .icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex: none;
  background: rgba(198, 73, 63, 0.12);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-float-card .icon svg {
  width: 18px;
  height: 18px;
}

.about-float-card .txt-1 {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--ink);
  line-height: 1.2;
}

.about-float-card .txt-2 {
  font-size: 0.7rem;
  color: var(--ink-soft);
  margin-top: 0.1rem;
}

.about-tag-pill {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  z-index: 3;
  background: var(--ink);
  color: var(--paper);
  font-family: "IBM Plex Mono";
  font-size: 0.72rem;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

.about-side-icons {
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  z-index: 4;
}

.about-side-icons .dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 20px -8px rgba(23, 35, 61, 0.4);
}

.about-side-icons .dot.g {
  background: var(--teal);
}

.about-side-icons .dot.r {
  background: var(--red);
}

.about-side-icons svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 991px) {
  .about-side-icons {
    display: none;
  }
}

.pain-close {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--paper);
  margin-top: 2rem;
  border-left: 3px solid var(--amber);
  padding-left: 1rem;
  font-family: "IBM Plex Mono";
  font-size: 0.95rem;
  max-width: 34rem;
}

.pain-close .cmt {
  color: var(--teal);
  opacity: 0.8;
}

.loss-quote {
  font-family: "Space Grotesk";
  font-weight: 600;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  line-height: 1.25;
  max-width: 40rem;
}

.loss-quote .accent {
  color: var(--red);
}

.loss-footer {
  margin-top: 2.5rem;
  font-family: "IBM Plex Mono";
  font-size: 1.2rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.loss-grid {
  list-style: none;
  padding: 0;
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

@media (max-width: 991px) {
  .loss-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .loss-grid {
    grid-template-columns: 1fr;
  }
}

.loss-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3.1;
  box-shadow: 0 20px 36px -22px rgba(23, 35, 61, 0.4);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.loss-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 44px -20px rgba(23, 35, 61, 0.45);
}

.loss-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.loss-item:hover img {
  transform: scale(1.06);
}

.loss-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(23, 35, 61, 0) 30%,
    rgba(23, 35, 61, 0.88) 100%
  );
}

.loss-item .loss-x {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px -6px rgba(198, 73, 63, 0.6);
}

.loss-item .loss-x svg {
  width: 14px;
  height: 14px;
}

.loss-item .loss-label {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.85rem;
  z-index: 2;
  color: #fff;
  font-family: "Space Grotesk";
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.25;
}

.trust-section {
  background: var(--paper-dim);
}

.stamp {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  border: 3px solid var(--teal);
  color: var(--teal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-8deg);
  flex: none;
  font-family: "Space Grotesk";
}

.stamp .yr {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.stamp .txt {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}

.industry-chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0.4rem 0.95rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.18s ease;
  display: inline-block;
}

.industry-chip:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.2rem;
  max-width: 40rem;
}

@media (max-width: 767px) {
  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trust-stat-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.2rem 1rem;
  text-align: center;
  box-shadow: 0 14px 26px -20px rgba(23, 35, 61, 0.2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.trust-stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px -16px rgba(23, 35, 61, 0.28);
}

.trust-stat-box .v {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--teal-dark);
  line-height: 1;
}

.trust-stat-box .k {
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-top: 0.4rem;
  font-weight: 500;
  line-height: 1.3;
}

.trust-visual {
  position: relative;
}

.trust-visual-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3.3;
  box-shadow: 0 34px 60px -26px rgba(23, 35, 61, 0.35);
}

.trust-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trust-visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(23, 35, 61, 0.6) 100%
  );
}

.trust-badge-card {
  position: absolute;
  left: -1.2rem;
  bottom: -1.2rem;
  z-index: 3;
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 24px 44px -20px rgba(23, 35, 61, 0.4);
  max-width: 230px;
}

@media (max-width: 991px) {
  .trust-badge-card {
    left: 1rem;
  }
}

.trust-badge-card .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex: none;
  background: rgba(46, 139, 116, 0.14);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge-card .icon svg {
  width: 20px;
  height: 20px;
}

.trust-badge-card .txt-1 {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.2;
}

.trust-badge-card .txt-2 {
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-top: 0.1rem;
}

.trust-visual-pill {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 3;
  background: var(--ink);
  color: var(--paper);
  font-family: "IBM Plex Mono";
  font-size: 0.7rem;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

.industry-card {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px -16px rgba(23, 35, 61, 0.25);
  background: var(--ink);
}

.industry-card:hover span,
.industry-card:hover .txt {
  color: #fff !important;
}

.industry-card .icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex: none;
  background: rgba(46, 139, 116, 0.14);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-card .icon svg {
  width: 16px;
  height: 16px;
}

.industry-card .txt {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.solution-panel {
  background: var(--ink);
  color: var(--paper);
  border-radius: 4px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.solution-panel h3 {
  color: var(--paper);
  font-size: 1.5rem;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin-top: 1.4rem;
  column-count: 2;
  column-gap: 1.5rem;
}

.spec-list li {
  font-family: "IBM Plex Mono";
  font-size: 0.83rem;
  padding: 0.35rem 0;
  break-inside: avoid;
  display: flex;
  gap: 0.5rem;
}

.spec-list li::before {
  content: "›";
  color: var(--amber);
  font-weight: 700;
}

.solution-cta {
  margin-top: auto;
  padding-top: 1.8rem;
  border-top: 1px dashed rgba(245, 245, 240, 0.18);
}

.solution-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  background: rgba(245, 245, 240, 0.05);
  border: 1px solid rgba(245, 245, 240, 0.1);
  border-radius: 8px;
  padding: 1.1rem 1.3rem;
}

.solution-cta-inner .txt-1 {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--paper);
}

.solution-cta-inner .txt-2 {
  font-size: 0.8rem;
  color: rgba(245, 245, 240, 0.6);
  margin-top: 0.2rem;
}

.solution-cta-inner .btn-amber {
  white-space: nowrap;
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

.solution-img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-bottom: 1.6rem;
  box-shadow: 0 24px 44px -20px rgba(0, 0, 0, 0.55);
}

.solution-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.solution-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 24, 48, 0) 40%,
    rgba(15, 24, 48, 0.85) 100%
  );
}

.solution-img .chip {
  position: absolute;
  left: 0.9rem;
  bottom: 0.8rem;
  z-index: 2;
  background: var(--amber);
  color: var(--ink);
  font-family: "IBM Plex Mono";
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

.why-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 38px -20px rgba(23, 35, 61, 0.3);
  border-color: transparent;
}

.why-card .thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  flex: none;
  overflow: hidden;
}

.why-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.why-card:hover .thumb img {
  transform: scale(1.06);
}

.why-card .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(23, 35, 61, 0) 55%,
    rgba(23, 35, 61, 0.5) 100%
  );
}

.why-card .thumb .num {
  position: absolute;
  left: 1rem;
  bottom: -18px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "IBM Plex Mono";
  font-size: 0.78rem;
  font-weight: 600;
  border: 3px solid #fff;
  box-shadow: 0 8px 16px -6px rgba(34, 102, 79, 0.5);
}

.why-card .body-txt {
  padding: 1.75rem 1.3rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.why-card .body-txt h4 {
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
}

.why-card .body-txt p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 0;
}

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  position: relative;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 40px -20px rgba(23, 35, 61, 0.3);
}

.logo {
  width: 182px;
  height: auto;
}

.product-card .tag {
  background: var(--ink);
  color: var(--paper);
  font-family: "IBM Plex Mono";
  font-size: 0.72rem;
  padding: 0.5rem 1.2rem;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-card .tag .ribbon {
  background: var(--amber);
  color: white;
  font-weight: 600; 
  padding: 0.1rem 0.5rem;
  border-radius: 2px;
  font-size: 0.65rem;
}

.product-card .body {
  padding: 1.5rem 1.4rem 1.8rem;
}

.product-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.9rem;
}

.product-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-card ul li {
  font-family: "IBM Plex Mono";
  font-size: 0.85rem;
  padding: 0.3rem 0;
  border-bottom: 1px dotted var(--line);
  display: flex;
  justify-content: space-between;
}

.product-card ul li:last-child {
  border-bottom: none;
}

.proof-strip {
  background: #204098;
  color: #fff;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 500;
  font-size: 0.92rem;
}

.tips-section {
  background: var(--paper);
}

.tip-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 34px -22px rgba(23, 35, 61, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 44px -20px rgba(23, 35, 61, 0.4);
}

.tip-card-media {
  position: relative;
  aspect-ratio: 4/3.1;
  overflow: hidden;
}

.tip-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tip-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(23, 35, 61, 0.55) 0%,
    rgba(23, 35, 61, 0.15) 42%,
    rgba(23, 35, 61, 0.55) 100%
  );
}

.tip-card-logo {
  position: absolute;
  top: 0.9rem;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.tip-card-logo .mark {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.tip-card-logo .mark svg {
  width: 12px;
  height: 12px;
  color: white;
}

.tip-card-logo span {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 0.72rem;
  color: #fff;
  letter-spacing: 0.03em;
}

.tip-card-heading {
  position: absolute;
  top: 2.6rem;
  left: 1rem;
  right: 1rem;
  z-index: 2;
  text-align: center;
}

.tip-card-heading .h {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.tip-card-heading .s {
  font-size: 0.66rem;
  color: rgba(245, 245, 240, 0.85);
  margin-top: 0.4rem;
  line-height: 1.4;
  font-family: "IBM Plex Mono";
}

.tip-card-date {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: var(--red);
  color: #fff;
  font-family: "Space Grotesk";
  font-weight: 600;
  font-size: 0.74rem;
  padding: 0.4rem 0.9rem;
}

.tip-card-url {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: rgba(23, 35, 61, 0.75);
  color: #fff;
  font-family: "IBM Plex Mono";
  font-size: 0.62rem;
  padding: 0.45rem 0.8rem;
}

.tip-card-body {
  padding: 1.4rem 1.5rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tip-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.tip-card-body p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}

.tip-card-dashed {
  border: none;
  border-top: 1.5px dashed var(--teal);
  margin-top: 1.2rem;
  opacity: 0.6;
}

.accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
}

.accordion-button {
  background: transparent;
  font-family: "Space Grotesk";
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  padding: 1.1rem 0;
  box-shadow: none !important;
}

.accordion-button::after {
  display: none;
}

.accordion-button::before {
  content: "+";
  font-family: "IBM Plex Mono";
  font-size: 1.2rem;
  color: var(--teal-dark);
  margin-right: 0.9rem;
  transition: transform 0.25s ease;
  flex: none;
}

.accordion-button:not(.collapsed)::before {
  content: "–";
}

.accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--teal-dark);
}

.accordion-body {
  padding: 0 0 1.2rem 2.1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.stab-section {
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(232, 166, 59, 0.1),
      transparent 45%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(46, 139, 116, 0.12),
      transparent 45%
    ),
    var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 6rem 0;
}

.stab-section .line {
  font-family: "IBM Plex Mono";
  font-size: 0.95rem;
  color: rgba(245, 245, 240, 0.65);
  margin: 0.3rem 0;
}

.stab-section h2 {
  color: var(--paper);
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-top: 1.3rem;
}

.stab2 {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.stab2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  height: 220px;
  z-index: 1;
  pointer-events: none;
  background-image: radial-gradient(
    rgba(245, 245, 240, 0.14) 1.5px,
    transparent 1.5px
  );
  background-size: 16px 16px;
  -webkit-mask-image: linear-gradient(135deg, #000 30%, transparent 75%);
  mask-image: linear-gradient(135deg, #000 30%, transparent 75%);
}

.stab2-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 560px;
}

@media (max-width: 991px) {
  .stab2-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.stab2-content {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  padding: 4.5rem 2.5rem 4.5rem 3.5rem;
}

@media (max-width: 767px) {
  .stab2-content {
    padding: 3rem 1.3rem;
  }
}

.stab2-card {
  background: rgba(23, 35, 61, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 245, 240, 0.1);
  border-radius: 14px;
  padding: 2.3rem 2.1rem;
  max-width: 440px;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
}

.stab2-card .line {
  font-family: "IBM Plex Mono";
  font-size: 0.9rem;
  color: rgba(245, 245, 240, 0.6);
  margin: 0.28rem 0;
}

.stab2-card h2 {
  color: var(--paper);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.32;
  margin-top: 1.1rem;
  font-weight: 700;
}

.stab2-media {
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .stab2-media {
    height: 340px;
  }
}

.stab2-blob {
  position: absolute;
  top: -25%;
  left: -15%;
  width: 150%;
  height: 150%;
  z-index: 1;
  background: radial-gradient(
    circle at 60% 40%,
    var(--amber) 0%,
    var(--amber) 55%,
    transparent 72%
  );
  border-radius: 50%;
}

.stab2-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(1) contrast(1.08);
  display: block;
  z-index: 2;
}

.stab2-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(23, 35, 61, 0) 22%);
}

.stab2-lines {
  position: absolute;
  left: 2.2rem;
  bottom: 1.8rem;
  z-index: 4;
  display: flex;
  gap: 0.5rem;
}

.stab2-lines span {
  display: block;
  width: 2.5px;
  height: 34px;
  border-radius: 2px;
  transform: rotate(-20deg);
}

.stab2-lines span:nth-child(1) {
  background: var(--amber);
}

.stab2-lines span:nth-child(2) {
  background: var(--amber);
  opacity: 0.6;
  height: 26px;
  align-self: flex-end;
}

.stab2-lines span:nth-child(3) {
  background: var(--teal);
  height: 40px;
}

.stab2-lines span:nth-child(4) {
  background: var(--teal);
  opacity: 0.5;
  height: 22px;
  align-self: flex-end;
}

.stab2-lines span:nth-child(5) {
  background: rgba(245, 245, 240, 0.4);
  height: 30px;
}

.stab2-top-btn {
  position: absolute;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 14px 26px -10px rgba(34, 102, 79, 0.6);
  transition:
    transform 0.18s ease,
    background 0.18s ease;
}

.stab2-top-btn:hover {
  background: var(--teal-dark);
  transform: translateY(-3px);
}

.stab2-top-btn svg {
  width: 20px;
  height: 20px;
}

.cta-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 34px 64px -30px rgba(23, 35, 61, 0.3);
}

.cta-card .row {
  margin: 0;
}

.cta-left {
  background: var(--ink);
  color: var(--paper);
  padding: 3rem 2.6rem;
  position: relative;
  overflow: hidden;
}

.cta-left::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(232, 166, 59, 0.22),
    transparent 70%
  );
}

.cta-left .eyebrow {
  position: relative;
}

.cta-left h2 {
  color: var(--paper);
  position: relative;
}

.cta-right {
  padding: 3rem 2.6rem;
}

.cta-check {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  position: relative;
}

.cta-check li {
  padding: 0.35rem 0;
  font-size: 0.92rem;
  display: flex;
  gap: 0.6rem;
  color: rgba(245, 245, 240, 0.85);
}

.cta-check .tick {
  color: var(--amber);
  font-weight: 700;
}

.form-control-custom {
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0.65rem 0.8rem;
  font-size: 0.92rem;
  width: 100%;
  margin-bottom: 0.8rem;
  font-family: "IBM Plex Sans";
}

.form-control-custom:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
  border-color: var(--teal);
}

.thankyou {
  display: none;
  background: var(--paper-dim);
  border: 1px dashed var(--teal);
  border-radius: 4px;
  padding: 1rem 1.2rem;
  font-size: 0.92rem;
  margin-top: 1rem;
}

footer {
  background: var(--ink);
  color: rgba(245, 245, 240, 0.55);
  padding: 4rem 0 0;
  font-size: 0.85rem;
}

footer a {
  color: rgba(245, 245, 240, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.8rem;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 2.4rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}

.footer-logo .logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  flex: none;
  background: linear-gradient(135deg, #fff, var(--brand-blue));
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo .logo-icon svg {
  width: 20px;
  height: 20px;
  color: var(--ink);
}

.footer-logo .word {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer-logo .word .l1 {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--paper);
}

.footer-logo .word .l1 span {
  color: #5fa8e8;
}

.footer-logo .word .l2 {
  font-family: "IBM Plex Mono";
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: rgba(245, 245, 240, 0.5);
  text-transform: uppercase;
  margin-top: 0.1rem;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: white;
  max-width: 26rem;
  margin-bottom: 1.4rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(245, 245, 240, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.18s ease;
}

.footer-social a:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--ink);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 15px;
  height: 15px;
}

.footer-col h4 {
  color: var(--paper);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
  color: white;
}

.footer-col ul li a {
  font-size: 0.88rem;
  transition:
    color 0.15s ease,
    padding-left 0.15s ease;
  color: white;
}

.footer-col ul li a:hover {
  color: var(--amber);
  padding-left: 0.3rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: white;
  line-height: 1.5;
}

.footer-contact li svg {
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 0.15rem;
  color: var(--amber);
}

.footer-contact li a {
  color: rgba(245, 245, 240, 0.75);
}

.footer-contact li a:hover {
  color: var(--amber);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  padding: 1.5rem 0 2rem;
  font-size: 0.82rem;
  color: white;
}

.footer-bottom a {
  color: white;
  font-weight: 500;
}

.footer-bottom a:hover {
  color: var(--amber);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

a:focus-visible,
button:focus-visible,
.accordion-button:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

@media (max-width: 767px) {
  section {
    padding: 3.2rem 0;
  }

  .receipt {
    width: 230px;
  }

  .spec-list {
    column-count: 1;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
  }

  .about-stat-box {
    padding: 1rem 0.6rem;
  }

  .about-stat-box .v {
    font-size: 1.25rem;
  }
}