:root {
  --ink: #0b1e2d;
  --ink-soft: #16293a;
  --paper: #f7f5f0;
  --paper-dim: #efebe2;
  --signal: #ff5a3c;
  --signal-dark: #e1492f;
  --register: rgb(27, 122, 90);
  --slate: #5c6b73;
  --slate-light: #8c9aa1;
  --white: #ffffff;

  --font-display: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --shadow-soft: 0 20px 50px -20px rgba(11, 30, 45, 0.25);
  --shadow-card: 0 10px 30px -12px rgba(11, 30, 45, 0.15);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
  color: var(--slate);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.mono {
  font-family: var(--font-mono);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

::selection {
  background: var(--signal);
  color: var(--white);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   PAGE LOADER
   ========================================================= */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s var(--ease),
    visibility 0.6s var(--ease);
}
#page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-receipt {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 160px;
}
.loader-line {
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--signal), var(--register));
  transform: scaleX(0);
  transform-origin: left;
  animation: loaderGrow 1.2s var(--ease) infinite;
}
.loader-line:nth-child(1) {
  width: 100%;
  animation-delay: 0s;
}
.loader-line:nth-child(2) {
  width: 75%;
  animation-delay: 0.15s;
}
.loader-line:nth-child(3) {
  width: 50%;
  animation-delay: 0.3s;
}
@keyframes loaderGrow {
  0% {
    transform: scaleX(0);
    opacity: 0.3;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 0.3;
  }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s var(--ease),
    color 0.35s var(--ease);
  white-space: nowrap;
}
.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

.btn-signal {
  background: var(--signal);
  color: var(--white);
  box-shadow: 0 12px 24px -10px rgba(255, 90, 60, 0.55);
  transition: all 0.5s ease;
}
.btn-signal:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px -10px rgba(255, 90, 60, 0.65);
  background: var(--signal-dark);
  color: var(--paper-dim);
}

.btn-signal-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
}
.btn-signal-outline:hover {
  background: var(--signal);
  border-color: var(--signal);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(11, 30, 45, 0.15);
  color: var(--ink);
  transition: all 0.5s ease;
}
.btn-ghost:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
}

.btn-link {
  padding: 0.6rem 1rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}
.btn-link:hover {
  color: var(--signal);
}

.play-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--signal);
  display: inline-block;
  animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 90, 60, 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 90, 60, 0);
  }
}

/* =========================================================
   NAVBAR
   ========================================================= */
.site-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  padding: 6px 0;
  transition:
    background 0.4s var(--ease),
    padding 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.site-navbar.scrolled {
  background: rgba(247, 245, 240, 0.85);
  backdrop-filter: blur(14px);
  padding: 6px 0;
  box-shadow: 0 8px 30px -15px rgba(11, 30, 45, 0.2);
}
.navbar-inner {
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  width: 230px;
  font-size: 1.1rem;
}
.logo-tagline {
  font-size: 8px;
  font-weight: 100;
  letter-spacing: 1.5px;
}
.nav-link {
  padding: 0.5rem 1rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.2rem;
  height: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-link:hover {
  color: var(--signal);
}
.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  gap: 8px;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1010;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  max-height: 480px;
}
.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(11, 30, 45, 0.08);
  font-weight: 500;
  color: var(--ink);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.navbar-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--signal), var(--register));
  transition: width 0.1s linear;
}

.nav-item-dropdown {
  position: relative;
}

.nav-link-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-caret {
  transition: transform 0.3s var(--ease);
}

.nav-item-dropdown:hover .dropdown-caret {
  transform: rotate(180deg);
}

.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 280px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 45px -18px rgba(11, 30, 45, 0.28);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s var(--ease),
    transform 0.25s var(--ease),
    visibility 0.25s var(--ease);
  z-index: 1001;
}

.nav-item-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-item-dropdown:hover .dropdown-panel,
.nav-item-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink);
  transition: background 0.2s var(--ease);
}

.dropdown-item:hover {
  background: rgba(11, 30, 45, 0.05);
}

.dropdown-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(11, 30, 45, 0.06);
  color: var(--signal);
}

.dropdown-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.dropdown-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}

.dropdown-sub {
  font-size: 0.78rem;
  color: rgba(11, 30, 45, 0.6);
}

/* =========================================================
   MOBILE OFFCANVAS SIDEBAR
   ========================================================= */
.mobile-offcanvas {
  width: 320px;
  max-width: 86vw;
}

.mobile-offcanvas .offcanvas-header {
  border-bottom: 1px solid rgba(11, 30, 45, 0.08);
  padding: 16px 20px;
}

.brand-mark-sm {
  display: inline-flex;
  align-items: center;
  width: 150px;
}

.mobile-offcanvas .offcanvas-body {
  overflow: hidden;
}

.mobile-menu-track {
  display: flex;
  width: 200%;
  height: 100%;
  transition: transform 0.4s var(--ease);
}

.mobile-menu-track.show-products {
  transform: translateX(-50%);
}

.mobile-menu-view {
  width: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  padding: 12px 20px 24px;
  overflow-y: auto;
}

.mobile-link-expand {
  font: inherit;
}

.mobile-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 10px 4px 18px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--signal);
  cursor: pointer;
}

.mobile-link-product {
  gap: 12px;
  justify-content: flex-start;
}

.mobile-link-product .dropdown-icon {
  width: 38px;
  height: 38px;
}

.mobile-link-product .dropdown-text {
  flex: 1;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 155px 0 100px;
  background: linear-gradient(180deg, var(--paper) 0%, #f1ede3 100%);
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 90, 60, 0.18), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--register);
  background: rgba(27, 122, 90, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.eyebrow-light {
  color: #b7e4d2;
  background: rgba(255, 255, 255, 0.08);
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
}
.text-signal {
  color: var(--signal);
  position: relative;
}

.hero-sub {
  font-size: 1rem;
  max-width: 90%;
  margin-bottom: 1.4rem;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}
.hero-trust span {
  font-size: 0.85rem;
  color: var(--slate-light);
  font-weight: 500;
}

.hero-perforation {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 24px;
  background-image: radial-gradient(
    circle at 12px 0,
    transparent 11px,
    var(--white) 12px
  );
  background-size: 24px 24px;
  background-repeat: repeat-x;
}

.hero-image-wrap {
  position: relative;
  max-width: 460px;
  width: 100%;
}
.hero-image-wrap img {
  width: 100%;
  display: block;
}

.float-box {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 9px 13px;
  box-shadow: var(--shadow-card);
  animation: floatY 5s ease-in-out infinite;
  white-space: nowrap;
}

.float-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(255, 90, 60, 0.12);
  color: var(--signal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.float-icon-alt {
  background: rgba(27, 122, 90, 0.12);
  color: var(--register);
}

.float-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.float-text strong {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
}
.float-text small {
  font-size: 0.7rem;
  color: var(--slate-light);
}

.fb-1 {
  left: -18%;
  top: 4%;
  animation-delay: 0s;
}
.fb-3 {
  left: -22%;
  top: 42%;
  animation-delay: 0.6s;
}
.fb-5 {
  left: -16%;
  bottom: 4%;
  animation-delay: 1.2s;
}

.fb-2 {
  right: -16%;
  top: 10%;
  animation-delay: 0.3s;
}
.fb-4 {
  right: -25%;
  top: 46%;
  animation-delay: 0.9s;
}
.fb-6 {
  right: -14%;
  bottom: 6%;
  animation-delay: 1.5s;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* =========================================================
   TAPE MARQUEE
   ========================================================= */

.tape-marquee {
  position: relative;
  background: var(--white);
  padding: 30px 0 0px;
  overflow: hidden;
  isolation: isolate;
}

.tape-marquee_label {
  position: relative;
  z-index: 3;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin: 0 0 46px;
}

.tape-marquee_field {
  position: relative;
  height: 300px;
}

.tape {
  --duration: 40s;
  position: absolute;
  left: -10%;
  width: 120%;
  overflow: hidden;
  padding: 20px 0;
}

.tape--industries {
  top: 20%;
  background: var(--paper);
  transform: rotate(-6deg);
  box-shadow: var(--shadow-soft);
  z-index: 2;
}

.tape--hardware {
  top: 30%;
  background: linear-gradient(90deg, var(--signal-dark), var(--signal));
  transform: rotate(6deg);
  box-shadow: 0 20px 50px -18px rgba(225, 73, 47, 0.45);
  z-index: 1;
}

.tape_track {
  display: flex;
  width: 100%;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}

.tape_group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  min-width: 100%;
  justify-content: space-around;
  animation: tape-scroll var(--duration) linear infinite;
}

.tape--hardware .tape_group {
  animation-direction: reverse;
}

.tape-marquee_field:hover .tape_group {
  animation-play-state: paused;
}

@keyframes tape-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.tape_item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 1.6rem;
}

.tape--industries .tape_item {
  color: var(--ink);
}
.tape--hardware .tape_item {
  color: var(--paper);
}

.tape_icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tape--industries .tape_icon {
  stroke: var(--signal-dark);
}
.tape--hardware .tape_icon {
  stroke: var(--paper);
}

.tape_dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tape--industries .tape_dot {
  background: var(--signal);
}
.tape--hardware .tape_dot {
  background: var(--paper);
  opacity: 0.85;
}

@media (max-width: 767px) {
  .tape-marquee_field {
    height: 230px;
  }
  .tape {
    transform: rotate(-8deg);
    padding: 13px 0;
  }
  .tape--hardware {
    transform: rotate(8deg);
  }
  .tape_item {
    font-size: 0.65rem;
    padding: 0 1rem;
    gap: 0.2rem;
  }
  .tape_icon {
    width: 17px;
    height: 17px;
  }
  .tape-marquee_label {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0px 20px 0px;
  }
}

/* =========================================================
   OUR STORY
   ========================================================= */
.our-story-section {
  background: var(--paper);
  padding: 70px 0;
  overflow: hidden;
}
.our-story-section .eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--register);
  background: rgba(27, 122, 90, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}
.our-story-section h2 {
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.our-story-section p.lead-copy {
  color: var(--slate);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 10px;
}
.our-story-section p.lead-copy:last-of-type {
  margin-bottom: 0;
}

.story-points {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 15px;
}
.story-point {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid rgba(11, 30, 45, 0.07);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.story-point:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(255, 90, 60, 0.25);
}
.story-point .sp-icon {
  flex: 0 0 auto;
  width: 100%;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  background: rgba(255, 90, 60, 0.1);
  color: var(--signal-dark);
  transition:
    transform 0.35s var(--ease),
    background 0.35s var(--ease),
    color 0.35s var(--ease);
}
.story-point:nth-child(2) .sp-icon {
  background: rgba(27, 122, 90, 0.1);
  color: var(--register);
}
.story-point:nth-child(3) .sp-icon {
  background: rgba(92, 107, 115, 0.12);
  color: var(--ink-soft);
}
.story-point:nth-child(4) .sp-icon {
  background: rgba(255, 90, 60, 0.1);
  color: var(--signal-dark);
}
.story-point:hover .sp-icon {
  transform: scale(1.1) rotate(-4deg);
}
.story-point h3 {
  font-size: 0.98rem;
  font-weight: 700;
  margin: 0 0 4px;
}
.story-point p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.5;
  margin: 0;
}

.story-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-visual-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 40px;
}
.story-visual-inner img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  border: 5px solid var(--white);
  filter: drop-shadow(0 25px 45px rgba(11, 30, 45, 0.22));
  border-radius: 30px;
}

/* =========================================================
   STATS
   ========================================================= */
.stats-section {
  background: var(--ink);
  padding: clamp(50px, 8vw, 90px) 0;
  overflow: hidden;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card {
  position: relative;
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    background 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-4px);
}

.stat-dot {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

.dot-signal {
  background: var(--signal);
}
.dot-register {
  background: var(--register);
  animation: pulse-dot-2 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 90, 60, 0.5);
  }
  50% {
    opacity: 0.4;
    box-shadow: 0 0 0 8px rgba(255, 90, 60, 0);
  }
}
@keyframes pulse-dot-2 {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(27, 122, 90, 0.5);
  }
  50% {
    opacity: 0.4;
    box-shadow: 0 0 0 8px rgba(255, 90, 60, 0);
  }
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.stat-number::after {
  content: attr(data-suffix);
  color: var(--signal);
  margin-left: 2px;
}

.stat-card:nth-child(2) .stat-number::after,
.stat-card:nth-child(4) .stat-number::after {
  color: var(--register);
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-light);
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-card {
    padding: 32px 16px;
  }
  .stat-label {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .stat-card {
    padding: 28px 16px;
  }
}

/* =========================================================
   SECTION HEAD (shared)
   ========================================================= */
.section-head {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}
.section-sub {
  font-size: 1.05rem;
}

section {
  padding: 90px 0;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services-section {
  background: var(--paper);
  padding: clamp(60px, 8vw, 100px) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 28px 30px;
  border: 1px solid rgba(11, 30, 45, 0.06);
  overflow: hidden;
  will-change: transform, box-shadow, border-color;
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -35%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 90, 60, 0.13), transparent 70%);
  opacity: 0;
  transform: scale(0.75);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card:hover::before {
  opacity: 1;
  transform: scale(1.2);
}

.service-index {
  position: absolute;
  top: 26px;
  right: 28px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-light);
  letter-spacing: 0.05em;
  transition: color 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-index {
  color: var(--signal);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: var(--icon-bg);
  color: var(--icon-fg);
  margin-bottom: 20px;
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  transform: translateY(-3px) scale(1.12) rotate(-6deg);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.service-card p {
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition:
    color 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-link span {
  display: inline-block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-link {
  color: var(--signal);
}

.service-card:hover .service-link span {
  transform: translateX(4px);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 28px 22px 24px;
  }
}

/* =========================================================
   INDUSTRIES / TABBED SHOWCASE
   ========================================================= */

.industries-tab-section {
  position: relative;
  background: var(--white);
  padding: 30px 0 30px;
}

.industries-tab-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.industries-tab-head h2 {
  color: var(--ink);
  margin: 14px 0 12px;
}
.industries-tab-sub {
  color: var(--slate);
  margin: 0;
}

/* ---- shell: rail + stage ---- */
.industries-tab-panel {
  display: grid;
  grid-template-columns: 100% 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid rgba(11, 30, 45, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

/* ---- stage / panes ---- */
.industry-stage {
  position: relative;
  padding: 40px;
}
.industry-pane {
  display: none;
  gap: 40px;
  align-items: center;
  animation: industryFade 0.4s var(--ease);
}
.industry-pane.is-active {
  display: flex;
}
@keyframes industryFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.industry-pane-media,
.industry-pane-copy {
  width: 50%;
}
.industry-pane-copy h3 {
  color: var(--signal-dark);
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 14px;
}
.industry-pane-copy p {
  color: var(--slate);
  line-height: 1.7;
  margin: 0 0 22px;
}
.industry-feature-grid {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
.industry-feature-grid li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
}
.industry-feature-grid i {
  font-size: 18px;
  color: var(--register);
  flex-shrink: 0;
}
.industry-pane-media {
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.industry-pane-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- bottom icon strip ---- */
.industry-strip-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.industry-strip-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(11, 30, 45, 0.12);
  background: var(--white);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.industry-strip-arrow i {
  font-size: 20px;
}
.industry-strip-arrow:hover {
  background: var(--signal);
  color: var(--white);
  transform: translateY(-2px);
}
.industry-strip {
  flex: 1;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 2px;
}
.industry-strip::-webkit-scrollbar {
  display: none;
}
.industry-strip-item {
  flex-shrink: 0;
  width: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 12px;
  border: 1px solid rgba(11, 30, 45, 0.1);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--slate);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  text-align: center;
  line-height: 1.3;
  cursor: pointer;
  transition:
    border-color 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.industry-strip-item i {
  font-size: 26px;
  color: var(--slate-light);
  transition: color 0.25s var(--ease);
  padding: 10px;
  border-radius: 50px;
}
.industry-strip-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 90, 60, 0.35);
}
.industry-strip-item.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-card);
}
.industry-strip-item.is-active i {
  color: var(--signal);
  background-color: rgb(255 90 60 / 23%);
}

/* ---- responsive ---- */
@media (max-width: 991px) {
  .industries-tab-panel {
    grid-template-columns: 1fr;
  }
  .industry-pane {
    flex-direction: column;
    gap: 28px;
  }
  .industry-pane-media,
  .industry-pane-copy {
    width: 100%;
  }
  .industry-pane-media {
    order: -1;
  }
}
@media (max-width: 767px) {
  .industry-stage {
    padding: 28px 24px;
  }
  .industry-pane-copy h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  .industries-tab-section {
    padding: 64px 0 48px;
  }
  .industry-stage {
    padding: 24px 20px;
  }
  .industry-pane {
    gap: 20px;
  }
  .industry-feature-grid {
    grid-template-columns: 1fr;
  }
  .industry-strip-item {
    width: 104px;
    padding: 14px 8px;
  }
}
/* =========================================================
   FAQ SHOWCASE SECTION
   ========================================================= */
.faq-showcase-section {
  background: var(--paper);
  padding: 50px 0 50px;
  overflow: hidden;
}

.faq-showcase-title {
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

.faq-showcase-sub {
  font-size: 1rem;
  max-width: 480px;
  margin-bottom: 2rem;
}

/* accordion */
.faq-accordion-modern {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 1.6rem;
}

.faq-accordion-item {
  background: var(--white);
  border: 1px solid rgba(11, 30, 45, 0.07);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition:
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.faq-accordion-item.is-active {
  border-color: rgba(255, 90, 60, 0.35);
  box-shadow: var(--shadow-card);
}

.faq-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink);
  cursor: pointer;
}

.faq-accordion-item.is-active .faq-accordion-trigger {
  color: var(--signal-dark);
}

.faq-accordion-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  background: rgba(11, 30, 45, 0.06);
  color: var(--ink);
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.faq-accordion-item.is-active .faq-accordion-icon {
  background: var(--signal);
  color: var(--white);
  transform: rotate(135deg);
}

.faq-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-accordion-item.is-active .faq-accordion-panel {
  max-height: 600px; /* fallback; JS sets the precise pixel height */
}

.faq-accordion-panel p {
  margin: 0;
  padding: 0 22px 20px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--slate);
}

.faq-showcase-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}
.faq-showcase-link strong {
  color: var(--signal);
  font-weight: 700;
}
.faq-showcase-link i {
  font-size: 1rem;
  color: var(--signal);
  transition: transform 0.3s var(--ease);
}
.faq-showcase-link:hover i {
  transform: translate(3px, -3px);
}

/* visual */
.faq-visual {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
  padding: 30px;
}

.faq-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.faq-blob-1 {
  width: 340px;
  height: 340px;
  top: -10%;
  right: -8%;
  background: radial-gradient(circle, rgba(255, 90, 60, 0.16), transparent 72%);
}
.faq-blob-2 {
  width: 220px;
  height: 220px;
  bottom: -6%;
  left: -10%;
  background: radial-gradient(circle, rgba(27, 122, 90, 0.14), transparent 72%);
}

.faq-dots-pattern {
  position: absolute;
  top: 4%;
  right: 2%;
  width: 110px;
  height: 110px;
  background-image: radial-gradient(
    rgba(11, 30, 45, 0.18) 1.6px,
    transparent 1.6px
  );
  background-size: 14px 14px;
  z-index: 0;
}

.faq-help-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 34px 30px;
}

.faq-help-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--register);
  background: rgba(27, 122, 90, 0.1);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.faq-help-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--signal), var(--signal-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  box-shadow: 0 14px 26px -12px rgba(255, 90, 60, 0.5);
}

.faq-help-card h4 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.faq-help-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-help-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--paper);
  transition:
    background 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.faq-help-item:hover {
  background: rgba(255, 90, 60, 0.07);
  transform: translateX(3px);
}
.faq-help-item-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--white);
  color: var(--signal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.faq-help-item-text {
  flex: 1;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.faq-help-item > i {
  color: var(--slate-light);
  font-size: 1rem;
}

.faq-fb-1 {
  left: -8%;
  top: 6%;
  z-index: 2;
}
.faq-fb-2 {
  right: -10%;
  bottom: 10%;
  z-index: 2;
  animation-delay: 0.6s;
}

@media (max-width: 991px) {
  .faq-visual {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .faq-fb-1,
  .faq-fb-2 {
    display: none !important;
  }
  .faq-showcase-link {
    gap: 8px;
    font-size: 0.85rem;
  }
  .faq-help-card {
    padding: 26px 22px;
  }
}

/* =========================================================
   CONTACT SHOWCASE SECTION
   ========================================================= */
.contact-showcase-section {
  background: var(--paper);
  padding: 20px 0 20px;
}

.contact-showcase-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(11, 30, 45, 0.06);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  overflow: hidden;
}

.contact-info-col {
  position: relative;
  padding: 56px 48px;
  overflow: hidden;
}

.contact-info-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(11, 30, 45, 0.06) 1.4px,
    transparent 1.4px
  );
  background-size: 16px 16px;
  -webkit-mask-image: radial-gradient(
    circle at 30% 70%,
    #000 0%,
    transparent 65%
  );
  mask-image: radial-gradient(circle at 30% 70%, #000 0%, transparent 65%);
  pointer-events: none;
}

.contact-info-col > * {
  position: relative;
  z-index: 1;
}

.contact-info-col h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin-bottom: 12px;
}

.contact-info-col > p {
  font-size: 0.98rem;
  max-width: 380px;
  margin-bottom: 2.2rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 90, 60, 0.1);
  color: var(--signal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-info-item div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 2px;
}

.contact-info-item div span {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.5;
}

/* form column */
.contact-form-col {
  padding: 56px 48px;
  border-left: 1px solid rgba(11, 30, 45, 0.07);
}

.contact-form-modern {
  position: relative;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-field {
  position: relative;
}

.contact-input {
  width: 100%;
  padding: 13px 16px;
  font-size: 0.92rem;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid rgba(11, 30, 45, 0.1);
  border-radius: 12px;
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.contact-input::placeholder {
  color: var(--slate-light);
}
.contact-textarea {
  resize: none;
  min-height: 110px;
}
.contact-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c6b73' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  cursor: pointer;
}

.contact-input:focus {
  outline: none;
  border-color: var(--register);
  box-shadow: 0 0 0 3px rgba(27, 122, 90, 0.14);
}

.contact-field.is-invalid .contact-input {
  border-color: var(--signal-dark);
  box-shadow: 0 0 0 3px rgba(255, 90, 60, 0.12);
}
.contact-field.is-valid .contact-input {
  border-color: var(--register);
}

.contact-error {
  display: none;
  margin-top: 6px;
  font-size: 0.76rem;
  color: var(--signal-dark);
  padding-left: 2px;
}
.contact-field.is-invalid .contact-error {
  display: block;
}

.contact-submit-btn {
  width: 100%;
}

.contact-form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 16px 0 0;
  font-size: 0.8rem;
  color: var(--slate-light);
}

/* success alert overlay - absolutely positioned over the form inputs */
.contact-success-alert {
  position: absolute;
  inset: 0;
  z-index: 5;
  height: 50%;
  top: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  padding: 30px;
  background: rgba(62, 170, 19, 0.64);
  border: 1px solid rgba(27, 122, 90, 0.25);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease),
    visibility 0.4s;
  pointer-events: none;
}
.contact-success-alert.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.contact-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgb(0 0 0 / 24%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem !important;
  margin-bottom: 6px;
  animation: contactSuccessPop 0.5s var(--ease);
}

@keyframes contactSuccessPop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  60% {
    transform: scale(1.08);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

.contact-success-alert strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
}
.contact-success-alert span {
  font-size: 0.88rem;
  color: var(--white);
  max-width: 280px;
}

/* responsive */
@media (max-width: 991px) {
  .contact-showcase-card {
    grid-template-columns: 1fr;
  }
  .contact-form-col {
    border-left: none;
    border-top: 1px solid rgba(11, 30, 45, 0.07);
  }
}
@media (max-width: 576px) {
  .contact-info-col,
  .contact-form-col {
    padding: 36px 24px;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   CTA
   ========================================================= */
.cta-section {
  background: var(--paper);
}
.cta-card {
  background: linear-gradient(135deg, var(--ink) 0%, #122436 100%);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 90, 60, 0.35), transparent 70%);
  border-radius: 50%;
}
.cta-card h2 {
  color: var(--white);
  max-width: 620px;
  margin: 0 auto 0.6rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.cta-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}
.cta-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cta-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 0.95rem;
}
.cta-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.cta-form input:focus {
  outline: 2px solid var(--signal);
}
.cta-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 1.2rem;
  margin-bottom: 0;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 70px;
  position: relative;
}
.footer-perforation {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 24px;
  background-image: radial-gradient(
    circle at 12px 24px,
    transparent 11px,
    var(--paper) 12px
  );
  background-size: 24px 24px;
  background-repeat: repeat-x;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-tagline {
  color: rgba(255, 255, 255, 0.55);
  max-width: 320px;
  margin: 16px 0 22px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 360px;
}
.newsletter-form input {
  flex: 1;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 0.9rem;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.newsletter-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 10px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer-col h6 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  padding: 7px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  transition:
    color 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.footer-col a:hover {
  color: var(--signal);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-socials {
  display: flex;
  gap: 14px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition:
    background 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.footer-socials a:hover {
  background: var(--signal);
  transform: translateY(-3px);
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease),
    background 0.35s var(--ease),
    visibility 0.35s;
  box-shadow: 0 10px 25px -10px rgba(11, 30, 45, 0.4);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--signal);
}
/* =========================================================
   PRODUCTS PAGE — CUSTOM ADDITIONS
   ========================================================= */
.prod-strip-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 44px;
}

.prod-strip-arrow {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(11, 30, 45, 0.12);
  background: var(--white);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.prod-strip-arrow i {
  font-size: 20px;
}
.prod-strip-arrow:hover {
  background: var(--signal);
  color: var(--white);
  transform: translateY(-2px);
}
.prod-strip-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  background: var(--white);
  color: var(--ink);
}

.prod-strip {
  flex: 1;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 2px;
  list-style: none;
  margin: 0;
}
.prod-strip::-webkit-scrollbar {
  display: none;
}

/* ---------- Product cards ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  background: var(--white);
  border: 1px solid rgba(11, 30, 45, 0.07);
  border-radius: var(--radius-md);
  padding: 20px;
  cursor: pointer;
  font-family: var(--font-body);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(255, 90, 60, 0.25);
}
.product-card.is-hidden {
  display: none;
}

.product-card-media {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper);
  aspect-ratio: 4/4;
  margin-bottom: 16px;
}
.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.product-card:hover .product-card-media img {
  transform: scale(1.06);
}

.product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.product-card-desc {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
}
.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--signal-dark);
}
.product-card-link i {
  font-size: 15px;
  transition: transform 0.3s var(--ease);
}
.product-card:hover .product-card-link i {
  transform: translateX(4px);
}

/* ---------- Detail panel shell ---------- */
.product-detail-panel {
  display: none;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 30, 45, 0.08);
  box-shadow: var(--shadow-soft);
  padding: 40px;
  animation: productFadeIn 0.5s var(--ease);
}
.product-detail-panel.is-open {
  display: block;
}

.product-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 0 0 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--slate);
  cursor: pointer;
  transition:
    color 0.25s var(--ease),
    gap 0.25s var(--ease);
}
.product-detail-back:hover {
  color: var(--signal-dark);
  gap: 12px;
}

.product-detail-gallery {
  display: flex;
  flex-direction: column;
}

/* ===== Clover Go Reader — Product Detail Section ===== */

.product-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  position: relative;
}

/* ---------- Gallery ---------- */
.product-detail-gallery {
  position: relative;
  z-index: 1;
}

.product-gallery-main {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #dcdddd;
  backdrop-filter: blur(10px);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.product-gallery-main:hover {
  transform: translateY(-6px) scale(1.01);
}

.product-gallery-main img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.product-gallery-main:hover img {
  transform: scale(1.08);
}

.product-gallery-thumbs {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.product-gallery-thumb {
  width: 70px !important;
  height: 70px;
  padding: 0;
  border: 1px solid #dcdddd;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-thumb:hover {
  opacity: 1;
  transform: translateY(-4px);
}

.product-gallery-thumb.active {
  opacity: 1;
  border-color: var(--signal);
}

/* ---------- Info Panel ---------- */
.product-detail-info {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-detail-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--register);
  background: rgba(27, 122, 90, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

.product-detail-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 0.8rem;
  color: var(--ink);
}

.product-detail-tagline {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-spec-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.product-spec-list li {
  position: relative;
  padding-left: 1.8rem;
  font-size: 0.98rem;
  color: var(--slate);
}

.product-spec-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.2rem;
  height: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--white);
  background: var(--signal);
  border-radius: 50%;
}

.product-detail-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid transparent;
}

.product-best-for {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .product-gallery-thumb {
    height: 50px;
    width: 50px !important;
  }
  .pd-spec-row {
    font-size: 0.7rem;
  }

  .product-detail-title {
    font-size: 2rem;
  }
}

/* ---------- Generic detail section (2, 3, 4, 5) ---------- */
.product-detail-section {
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(11, 30, 45, 0.08);
}

.pd-section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.pd-section-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 90, 60, 0.1);
  color: var(--signal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}
.pd-section-head h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0;
  color: var(--ink);
}

#pdOverview p {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 850px;
  color: var(--slate);
}

/* Section 3: in-the-box image grid */
.pd-box-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pd-box-item {
  background: var(--paper);
  border: 1px solid rgba(11, 30, 45, 0.06);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}
.pd-box-item-img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--white);
  margin-bottom: 12px;
}
.pd-box-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pd-box-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* Section 4: spec table */
.pd-spec-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(11, 30, 45, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.pd-spec-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(11, 30, 45, 0.06);
  font-size: 0.9rem;
}
.pd-spec-row:nth-child(odd) {
  background: var(--paper);
}
.pd-spec-row-label {
  color: var(--slate-light);
  font-weight: 600;
}
.pd-spec-row-value {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}

/* Section 5: lifestyle showcase gallery */
.pd-showcase-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 8px;
}
.pd-showcase-grid .pd-showcase-main {
  grid-row: span 2;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 5/5;
}
.pd-showcase-grid .pd-showcase-sub {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 14/9;
}
.pd-showcase-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.pd-showcase-grid a:hover img,
.pd-showcase-grid > div:hover img {
  transform: scale(1.04);
}

/* ---------- Related products strip ---------- */
.pd-related-section {
  border-top: 1px solid rgba(11, 30, 45, 0.08);
}
.pd-related-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 20px;
  color: var(--ink);
}
.pd-related-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pd-related-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(11, 30, 45, 0.12);
  background: var(--white);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease);
}
.pd-related-arrow:hover {
  background: var(--signal);
  color: var(--white);
}
.pd-related-strip {
  flex: 1;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.pd-related-strip::-webkit-scrollbar {
  display: none;
}
.pd-related-card {
  flex-shrink: 0;
  width: 200px;
  background: var(--paper);
  border: 1px solid rgba(11, 30, 45, 0.06);
  border-radius: var(--radius-md);
  padding: 14px;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.pd-related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.pd-related-card-media {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/4;
  background: var(--white);
  margin-bottom: 10px;
}
.pd-related-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pd-related-card-title {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.pd-related-card-price {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--signal-dark);
  margin-bottom: 8px;
}
.pd-related-card-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pd-box-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pd-showcase-grid {
    grid-template-columns: 1fr;
  }
  .pd-showcase-grid .pd-showcase-main {
    grid-row: auto;
    aspect-ratio: 16/9;
  }
  .pd-spec-table {
    grid-template-columns: 1fr;
  }
  .product-detail-panel {
    padding: 28px 22px;
  }
}

@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .pd-box-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .product-detail-section {
    margin-top: 38px;
    padding-top: 30px;
  }
  .pd-related-card {
    width: 160px;
  }
}

/* =========================================================
   SOLUTIONS PAGE (industries + sub-categories)
   ========================================================= */
.industry-detail {
  padding: 44px 48px;
}
.industry-intro {
  max-width: 680px;
  margin: 0 auto 2.6rem;
  text-align: center;
}
.industry-intro h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}
.industry-intro p {
  font-size: 1.02rem;
  margin: 0;
}

.subcategory-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 24px;
  height: 100%;
  border: 1px solid rgba(11, 30, 45, 0.06);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}
.subcategory-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(255, 90, 60, 0.25);
}
.subcategory-image {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 4 / 3;
  background: var(--white);
  border: 1px solid rgba(11, 30, 45, 0.06);
}
.subcategory-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.subcategory-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.subcategory-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* =========================================================
   LAZY LOAD IMAGES
   ========================================================= */
img.lazy-fade {
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}
img.lazy-fade.loaded {
  opacity: 1;
}
/* =========================================================
   MERCHANT APPLICATION FORM
   ========================================================= */

.mf-section {
  background: var(--paper);
  padding: 56px 0 80px;
}

.mf-shell {
  max-width: 95%;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items: start;
}

/* ---------- Sticky left panel ---------- */
.mf-side {
  position: sticky;
  top: 100px;
  align-self: start;
  max-height: calc(100vh - 130px);
}

.mf-side-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--white);
  border: 1px solid rgba(11, 30, 45, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 26px 20px;
}

.mf-side-eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 0 4px;
}

.mf-steps {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mf-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease);
}
.mf-step:hover {
  background: var(--paper-dim);
}
.mf-step-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--slate-light);
  background: var(--paper-dim);
}
.mf-step-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.mf-step-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-body);
}
.mf-step-sub {
  font-size: 11.5px;
  color: var(--slate-light);
  line-height: 1.3;
}

.mf-step.is-active {
  background: rgba(255, 90, 60, 0.08);
}
.mf-step.is-active .mf-step-num {
  color: var(--white);
  background: linear-gradient(135deg, var(--signal), var(--signal-dark));
}
.mf-step.is-active .mf-step-title {
  color: var(--signal-dark);
}

.mf-help-card {
  border-top: 1px solid rgba(11, 30, 45, 0.08);
  padding-top: 18px;
  margin: 0 4px;
}
.mf-help-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 6px;
}
.mf-help-sub {
  font-size: 12.5px;
  color: var(--slate-light);
  line-height: 1.5;
  margin: 0 0 14px;
}
.mf-help-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mf-help-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--slate);
}
.mf-help-list i {
  width: 16px;
  color: var(--register);
  text-align: center;
}

/* ---------- Right scrolling column ---------- */
.mf-main {
  min-width: 0;
}

.mf-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 30, 45, 0.08);
  box-shadow: var(--shadow-soft);
  padding: 44px 44px 50px;
}

.mf-form-head {
  margin-bottom: 34px;
}
.mf-form-head .eyebrow {
  color: var(--register);
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.mf-form-head h1 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--ink);
  margin: 0 0 10px;
}
.mf-form-head .section-sub {
  font-size: 14.5px;
  color: var(--slate);
  margin: 0;
}
.mf-form-head strong {
  color: var(--ink);
}

.mf-fieldset {
  margin-bottom: 46px;
  scroll-margin-top: 100px;
}
.mf-fieldset:last-of-type {
  margin-bottom: 0;
}

.mf-section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(11, 30, 45, 0.08);
}
.mf-icon-circle {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  background: var(--signal);
}
.mf-section-title h4 {
  font-family: var(--font-display);
  font-size: 19px;
  margin: 0 0 3px;
  color: var(--ink);
}
.mf-section-title span {
  font-size: 13px;
  color: var(--slate-light);
}

.mf-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  font-family: var(--font-body);
}
.mf-req {
  color: var(--signal);
  margin-left: 2px;
}

.mf-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 14.5px;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid rgba(11, 30, 45, 0.12);
  border-radius: 10px;
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
textarea.mf-control {
  resize: none;
  min-height: 64px;
}
.mf-control:focus {
  outline: none;
  border-color: var(--register);
  box-shadow: 0 0 0 3px rgba(27, 122, 90, 0.15);
}
.mf-control::placeholder {
  color: var(--slate-light);
}
.mf-control[readonly] {
  background: var(--paper-dim);
  color: var(--slate-light);
}

/* ---------- Split address fields ---------- */
.mf-address-block {
  margin-top: 26px;
}
.mf-address-label {
  margin-bottom: 10px;
  display: inline-block;
}
.mf-address-grid {
  display: grid;
  grid-template-columns: 2fr 1.3fr 0.7fr 1fr;
  gap: 14px;
}
.mf-addr-street,
.mf-addr-city,
.mf-addr-state,
.mf-addr-zip {
  min-width: 0;
}

@media (max-width: 768px) {
  .mf-address-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mf-addr-street {
    grid-column: 1 / -1;
  }
}

.mf-password-wrap {
  position: relative;
}
.mf-password-wrap .mf-control {
  padding-right: 46px;
}
.mf-password-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--slate-light);
  cursor: pointer;
  font-size: 15px;
  transition: color 0.25s var(--ease);
}
.mf-password-toggle:hover {
  color: var(--signal);
}

.mf-checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  font-size: 13.5px;
  color: var(--slate-light);
  cursor: pointer;
}
.mf-checkbox-row-top {
  margin: 0 0 10px;
  justify-content: flex-end;
}
.mf-checkbox-row input {
  width: 16px;
  height: 16px;
  accent-color: var(--register);
}

.mf-invalid-feedback {
  display: none;
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--signal-dark);
}
.was-validated .mf-control:invalid {
  border-color: var(--signal-dark);
  box-shadow: 0 0 0 3px rgba(255, 90, 60, 0.12);
}
.was-validated .mf-control:valid {
  border-color: var(--register);
}
.was-validated .mf-control:invalid ~ .mf-invalid-feedback {
  display: block;
}

.mf-upload-note {
  font-size: 13.5px;
  margin: -10px 0 22px;
  color: var(--slate-light);
}

.mf-upload-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.mf-upload-box {
  position: relative;
}
.mf-upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.mf-upload-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 24px 16px 20px;
  border: 1.5px dashed rgba(11, 30, 45, 0.16);
  border-radius: var(--radius-md);
  background: var(--paper);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.mf-upload-box:hover .mf-upload-dropzone,
.mf-upload-box.mf-dragover .mf-upload-dropzone {
  border-color: var(--register);
  background: rgba(27, 122, 90, 0.05);
}
.mf-upload-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--signal-dark);
  background: rgba(255, 90, 60, 0.1);
  margin-bottom: 2px;
}
.mf-upload-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  font-family: var(--font-body);
}
.mf-upload-hint {
  font-size: 12px;
  color: var(--slate-light);
  line-height: 1.5;
}
.mf-upload-btn {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(11, 30, 45, 0.14);
  border-radius: 999px;
  transition:
    border-color 0.2s var(--ease),
    color 0.2s var(--ease);
}
.mf-upload-box:hover .mf-upload-btn {
  border-color: var(--register);
  color: var(--register);
}
.mf-upload-preview {
  margin-top: 12px;
}
.mf-upload-preview img {
  width: 100%;
  max-height: 130px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow-card);
}
.mf-upload-preview .mf-upload-file-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 10px;
  background: var(--paper-dim);
  font-size: 13px;
  color: var(--slate);
}
.mf-upload-filename {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--slate-light);
  word-break: break-all;
}
.mf-upload-filename i {
  flex-shrink: 0;
}
.mf-upload-box.mf-upload-filled .mf-upload-dropzone {
  border-style: solid;
  border-color: var(--register);
  background: rgba(27, 122, 90, 0.06);
}
.mf-upload-box.mf-upload-filled .mf-upload-filename {
  color: var(--register);
  font-weight: 600;
}
.mf-upload-box.mf-upload-error .mf-upload-dropzone {
  border-color: var(--signal-dark);
  background: rgba(255, 90, 60, 0.05);
}
.mf-upload-box.mf-upload-error .mf-upload-filename {
  color: var(--signal-dark);
  font-weight: 600;
}

.mf-upload-total {
  margin-top: 16px;
  font-size: 13px;
  color: var(--slate-light);
  text-align: right;
}
.mf-upload-total.mf-upload-total-warn {
  color: var(--signal-dark);
  font-weight: 600;
}

.mf-alert {
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 14.5px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mf-alert-success {
  background: rgba(27, 122, 90, 0.1);
  color: var(--register);
  border: 1px solid rgba(27, 122, 90, 0.3);
}
.mf-alert-error {
  background: rgba(255, 90, 60, 0.08);
  color: var(--signal-dark);
  border: 1px solid rgba(255, 90, 60, 0.25);
}

/* ---------- Submit banner ---------- */
.mf-submit-wrap {
  margin-top: 50px;
  scroll-margin-top: 100px;
}
.mf-submit-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  border-radius: var(--radius-md);
  background: rgba(255, 90, 60, 0.06);
  border: 1px solid rgba(255, 90, 60, 0.18);
}
.mf-submit-banner-text {
  display: flex;
  align-items: center;
  gap: 14px;
}
.mf-submit-shield {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--signal), var(--signal-dark));
  font-size: 15px;
}
.mf-submit-banner-text strong {
  display: block;
  font-size: 14.5px;
  color: var(--ink);
  font-family: var(--font-body);
}
.mf-submit-banner-text em {
  display: block;
  font-style: normal;
  font-size: 12.5px;
  color: var(--slate-light);
  margin-top: 2px;
}
.mf-submit-banner-action {
  text-align: right;
  width: 100%;
}
.mf-submit-banner-action p {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--slate-light);
}
.btn-signal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--signal);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  transition:
    background 0.2s var(--ease),
    transform 0.2s var(--ease);
}
.btn-signal:hover {
  background: var(--signal-dark);
  transform: translateY(-1px);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .mf-shell {
    grid-template-columns: 260px 1fr;
    gap: 20px;
  }
  .mf-card {
    padding: 36px 28px 42px;
  }
}

@media (max-width: 860px) {
  .mf-shell {
    grid-template-columns: 1fr;
  }
  .mf-side {
    position: static;
    max-height: none;
  }
  .mf-side-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .mf-steps {
    flex-direction: row;
    flex-wrap: wrap;
    flex: 1 1 100%;
  }
  .mf-step {
    flex: 1 1 auto;
  }
  .mf-step-sub {
    display: none;
  }
  .mf-help-card {
    display: none;
  }
}

@media (max-width: 600px) {
  .mf-shell {
    padding: 0 16px;
    max-width: 100%;
  }
  .mf-card {
    padding: 26px 18px 34px;
    border-radius: var(--radius-md);
  }
  .mf-submit-shield {
    display: none;
  }
  .mf-form-head h1 {
    font-size: 25px;
  }
  .mf-section-title {
    gap: 10px;
  }
  .mf-submit-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .mf-submit-banner-text {
    justify-content: center;
  }
  .mf-submit-banner-action {
    text-align: center;
  }
  .btn-signal {
    width: 100%;
  }
  .mf-side-inner {
    padding: 18px 14px;
  }
}

/* Large Laptop (<=1400px) */
@media (max-width: 1400px) {
  .hero {
    padding: 140px 0 90px;
  }

  .hero-image-wrap {
    max-width: 420px;
  }

  .our-story-section {
    padding: 90px 0;
  }

  .story-visual-inner {
    padding: 30px;
  }
}

/* Laptop (<=1199px) */
@media (max-width: 1199px) {
  .hero {
    padding: 130px 0 80px;
  }

  .hero-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-image-wrap {
    max-width: 380px;
    margin: auto;
  }
  .float-box {
    display: none;
  }
  .our-story-section h2 {
    font-size: 2rem;
  }

  .story-points {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .story-visual-inner {
    padding: 20px;
  }
}

/* Tablet (<=991px) */
@media (max-width: 991px) {
  section {
    padding: 70px 0;
  }

  .hero {
    padding: 120px 0 70px;
    text-align: center;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-sub {
    max-width: 100%;
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-image-wrap {
    margin: 50px auto 0;
    max-width: 380px;
  }

  .how-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }

  .how-steps::before {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card-featured {
    transform: none;
  }
  .our-story-section {
    padding: 70px 0;
    text-align: center;
  }

  .our-story-section h2 {
    font-size: 1.9rem;
  }

  .our-story-section .lead-copy {
    max-width: 100%;
    margin-inline: auto;
  }

  .story-points {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .story-point {
    align-items: center;
    text-align: center;
  }

  .story-visual {
    margin-top: 50px;
  }

  .story-visual-inner {
    max-width: 600px;
    margin: auto;
    padding: 0;
  }

  .story-visual-inner img {
    border-radius: 24px;
  }
}

/* Mobile (<=767px) */
@media (max-width: 767px) {
  .hero {
    padding: 100px 0 60px;
  }

  .solutions_page_card-icon {
    display: none !important;
  }

  .solutions_page_strip-item {
    font-size: 0.65rem !important;
  }

  .service-card p,
  .industry-strip-item span,
  .industry-pane-copy p,
  .faq-accordion-panel p {
    font-size: 0.7rem;
  }

  .hero-title {
    font-size: clamp(1.9rem, 6vw, 2.6rem);
    line-height: 1.25;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-image-wrap {
    max-width: 320px;
    margin-top: 40px;
  }

  .hero-image-wrap img {
    width: 100%;
  }

  .receipt-card {
    transform: none;
  }

  .logo-strip-row {
    gap: 1.4rem;
  }

  .how-steps {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-card {
    padding: 40px 22px;
  }

  .cta-form {
    flex-direction: column;
  }

  .testimonial-card {
    padding: 30px 24px;
  }

  .product-detail {
    padding: 26px 20px;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    margin: 0 0 2rem;
    -webkit-overflow-scrolling: touch;
  }

  .product-tab {
    flex-shrink: 0;
  }

  .industry-detail {
    padding: 26px 20px;
  }

  .mf-hero {
    padding: 130px 20px 55px;
  }

  .mf-card {
    padding: 30px 20px;
  }

  .our-story-section {
    padding: 60px 0px 0px;
  }

  .our-story-section h2 {
    font-size: 1.7rem;
    line-height: 1.3;
  }

  .our-story-section p.lead-copy,
  .section-sub,
  .industries-tab-sub,
  .faq-showcase-sub,
  .contact-info-col > p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .story-content {
    position: relative;
    isolation: isolate;
  }

  .story-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/web-banners/about.webp") center/cover no-repeat;
    z-index: -2;
  }

  .story-content::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: -1;
  }

  .story-visual {
    display: none;
  }

  .story-points {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
  }

  .story-point {
    padding: 18px;
  }

  .story-point .sp-icon {
    height: 46px;
  }
}

/* Small Mobile (<=480px) */
@media (max-width: 480px) {
  .site-navbar {
    padding: 18px 0;
  }
  .brand-mark {
    width: 190px;
  }
  .hero {
    padding: 130px 0 40px;
  }

  .eyebrow {
    font-size: 0.65rem;
    padding: 6px 12px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-sub {
    font-size: 0.85rem;
  }

  .hero-trust span {
    font-size: 0.75rem;
  }

  .hero-image-wrap {
    max-width: 260px;
    margin: 10px;
  }

  .float-box {
    display: flex;
    padding: 6px 8px;
    gap: 6px;
  }

  .float-icon {
    width: 22px;
    height: 22px;
  }

  .float-text strong {
    font-size: 0.55rem;
  }

  .float-text small {
    font-size: 0.42rem;
  }

  .fb-1 {
    left: -14%;
    top: -2%;
  }

  .fb-2 {
    right: -22%;
    top: -4%;
  }

  .fb-3 {
    left: -23%;
    top: 41%;
  }

  .fb-4 {
    right: -15%;
    top: 38%;
  }

  .fb-5 {
    left: -20%;
    bottom: 0%;
  }

  .fb-6 {
    right: -10%;
    bottom: 0%;
  }
  .our-story-section {
    padding: 50px 0px 0px;
  }

  .our-story-section .eyebrow {
    font-size: 0.7rem;
    padding: 6px 12px;
  }

  .our-story-section h2 {
    font-size: 1.5rem;
  }

  .our-story-section p.lead-copy,
  .section-sub,
  .industries-tab-sub,
  .faq-showcase-sub,
  .contact-info-col > p {
    font-size: 0.88rem;
  }

  .story-point {
    padding: 16px;
  }

  .story-point h3 {
    font-size: 0.72rem;
  }

  .story-point p {
    font-size: 0.65rem;
  }

  .story-visual-inner img {
    border-radius: 18px;
  }
}

/* Extra Small Mobile (<=360px) */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.55rem;
  }

  .hero-sub {
    font-size: 0.8rem;
  }

  .hero-image-wrap {
    max-width: 220px;
  }

  .float-box {
    transform: scale(0.9);
  }

  .our-story-section h2 {
    font-size: 1.35rem;
  }

  .our-story-section p.lead-copy,
  .section-sub,
  .industries-tab-sub,
  .faq-showcase-sub,
  .contact-info-col > p {
    font-size: 0.82rem;
  }

  .story-point {
    padding: 14px;
  }

  .story-point .sp-icon {
    height: 42px;
    font-size: 0.95rem;
  }

  .story-point h3 {
    font-size: 0.88rem;
  }

  .story-point p {
    font-size: 0.78rem;
  }
}

/* =========================================================
   ABOUT PAGE — ADDITIONAL STYLES
   ========================================================= */

/* ---------- ABOUT HERO ---------- */
.about-hero {
  position: relative;
  padding: 155px 0 90px;
  background: linear-gradient(180deg, var(--paper) 0%, #f1ede3 100%);
  overflow: hidden;
}
.about-hero::before {
  content: "";
  position: absolute;
  top: -220px;
  left: -160px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(27, 122, 90, 0.14), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-hero-title {
  font-size: clamp(2.1rem, 4.2vw, 2.9rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

.about-hero-sub {
  font-size: 1rem;
  max-width: 92%;
  margin-bottom: 1.8rem;
}

.about-hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.about-hero-avatars {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-stack {
  display: flex;
}
.avatar-chip {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--paper-dim);
  border: 2px solid var(--paper);
  color: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-left: -10px;
  overflow: hidden;
}
.avatar-chip:first-child {
  margin-left: 0;
}

.about-hero-avatars-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-light);
}

.about-hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

.about-hero-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-card);
}
.about-hero-badge-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 90, 60, 0.12);
  color: var(--signal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.about-hero-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.about-hero-badge-text strong {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.about-hero-badge-count {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--signal);
}
.about-hero-badge-text small {
  font-size: 0.72rem;
  color: var(--slate-light);
}

/* ---------- WHY CHOOSE US ---------- */
.about-why-section {
  background: var(--white);
  padding: clamp(40px, 8vw, 0px) 0;
}

.about-why-grid {
  margin-top: 46px;
}

.about-why-card {
  height: 100%;
  align-items: flex-start;
  text-align: left;
}
.about-why-card .sp-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 90, 60, 0.1);
  color: var(--signal-dark);
  font-size: 1.15rem;
}
.about-why-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.about-why-card p {
  font-size: 0.86rem;
  margin: 0;
}

/* inline stat band */
.about-inline-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  background: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-inline-stat {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.about-inline-stat:last-child {
  border-right: none;
}
.about-inline-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 90, 60, 0.15);
  color: var(--signal);
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.about-inline-stat .stat-number {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
}
.about-inline-stat .stat-label {
  margin-top: 6px;
}

/* ---------- MISSION / VISION GOAL CARD ---------- */
.about-goal-visual {
  position: relative;
}
.about-goal-card {
  position: absolute;
  right: -6px;
  bottom: 6px;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 20px 22px;
  max-width: 240px;
}
.about-goal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(27, 122, 90, 0.12);
  color: var(--register);
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.about-goal-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.about-goal-card p {
  font-size: 0.82rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.5;
}

/* ---------- CORE VALUES LIST (Mission & Vision) ---------- */
.about-values-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 8px 0 28px;
}
.about-value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.about-value-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 90, 60, 0.1);
  color: var(--signal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}
.about-value-item:nth-child(2) .about-value-icon {
  background: rgba(27, 122, 90, 0.1);
  color: var(--register);
}
.about-value-item:nth-child(3) .about-value-icon {
  background: rgba(92, 107, 115, 0.12);
  color: var(--ink-soft);
}
.about-value-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--ink);
  margin-bottom: 3px;
}
.about-value-item p {
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.6;
}

/* ---------- TIMELINE / JOURNEY ---------- */
.about-timeline-section {
  background: var(--paper);
  padding: clamp(30px, 8vw, 0px) 0;
}

.about-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.about-timeline-line {
  position: absolute;
  top: 7px;
  left: 4%;
  right: 4%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 90, 60, 0.35) 0,
    rgba(255, 90, 60, 0.35) 6px,
    transparent 6px,
    transparent 12px
  );
  z-index: 0;
}

.about-timeline-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-timeline-dot {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--signal);
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 3px rgba(255, 90, 60, 0.25);
  margin-bottom: 18px;
}

.about-timeline-card {
  background: var(--white);
  border: 1px solid rgba(11, 30, 45, 0.07);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  width: 100%;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.about-timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(255, 90, 60, 0.25);
}

.about-timeline-year {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--register);
  background: rgba(27, 122, 90, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.about-timeline-card h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.about-timeline-card p {
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.55;
}

/* =========================================================
   ABOUT PAGE — RESPONSIVE
   ========================================================= */

/* ---------- Laptop (<=1199px) ---------- */
@media (max-width: 1199px) {
  .about-hero {
    padding: 130px 0 80px;
  }
  .about-hero-title {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
  }
  .about-inline-stat {
    padding: 28px 16px;
  }
  .about-timeline-card {
    padding: 18px 14px;
  }
  .about-testimonial-card {
    padding: 26px 22px;
  }
}

/* ---------- Tablet (<=991px) ---------- */
@media (max-width: 991px) {
  .about-hero {
    padding: 130px 0 70px;
    text-align: center;
  }
  .about-hero-sub {
    max-width: 100%;
    margin-inline: auto;
  }
  .about-hero-actions {
    justify-content: center;
  }
  .about-hero-media {
    margin-top: 10px;
    max-width: 520px;
    margin-inline: auto;
  }

  .about-why-grid {
    margin-top: 38px;
  }
  .about-inline-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-inline-stat {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .about-inline-stat:nth-child(2n) {
    border-right: none;
  }

  .about-values-list {
    text-align: left;
  }
  .about-goal-card {
    position: static;
    max-width: 100%;
    margin-top: 18px;
  }

  .about-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 16px;
  }
  .about-timeline-line {
    display: none;
  }

  .about-faq-accordion {
    max-width: 100%;
  }
}

/* ---------- Mobile (<=767px) ---------- */
@media (max-width: 767px) {
  .about-hero-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }
  .about-hero-sub {
    font-size: 0.92rem;
  }
  .about-hero-badge {
    left: 14px;
    bottom: 14px;
    padding: 10px 14px;
  }
  .about-hero-badge-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .about-hero-avatars {
    justify-content: center;
    flex-wrap: wrap;
  }

  .about-why-card {
    text-align: center;
    align-items: center;
  }

  .about-value-item {
    text-align: left;
  }

  .about-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-timeline-card p {
    font-size: 0.76rem;
  }

  .about-team-photo {
    margin-bottom: 12px;
  }

  .about-testimonial-card p {
    font-size: 0.88rem;
  }

  .about-faq-section {
    padding: 60px 0;
  }

  .about-trusted-logos {
    gap: 22px 28px;
  }
  .about-trusted-logo {
    font-size: 0.9rem;
  }
  .about-trusted-sub {
    margin-top: -12px;
    font-size: 0.85rem;
  }
}

/* ---------- Small Mobile (<=480px) ---------- */
@media (max-width: 480px) {
  .about-hero {
    padding: 130px 0 40px;
  }
  .about-hero-title {
    font-size: 1.65rem;
  }
  .about-hero-sub {
    font-size: 0.85rem;
  }
  .about-hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .about-hero-actions .btn {
    width: 100%;
  }
  .about-hero-avatars {
    justify-content: center;
  }
  .about-hero-avatars-label {
    font-size: 0.78rem;
  }

  .about-inline-stats {
    grid-template-columns: 1fr 1fr;
  }
  .about-inline-stat {
    padding: 22px 12px;
  }
  .about-inline-stat .stat-number {
    font-size: 1.6rem;
  }

  .about-goal-card {
    padding: 16px 18px;
  }

  .about-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
  }
  .about-timeline-card {
    padding: 14px 10px;
  }
  .about-timeline-year {
    font-size: 0.68rem;
  }
  .about-timeline-card h3 {
    font-size: 0.82rem;
  }
  .about-timeline-card p {
    font-size: 0.7rem;
  }

  .about-team-card {
    padding: 16px 12px 20px;
  }
  .about-team-card h3 {
    font-size: 0.88rem;
  }

  .about-testimonial-card {
    padding: 22px 18px;
  }
  .about-testimonial-quote-icon {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }

  .about-trusted-logos {
    gap: 16px 20px;
  }
  .about-trusted-logo {
    font-size: 0.8rem;
  }
  .about-trusted-logo i {
    font-size: 1.05rem;
  }
}

/* ---------- Extra Small Mobile (<=360px) ---------- */
@media (max-width: 360px) {
  .about-hero-title {
    font-size: 1.5rem;
  }
  .about-inline-stats {
    grid-template-columns: 1fr;
  }
  .about-inline-stat {
    border-right: none !important;
  }
  .about-timeline {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   SOLUTIONS PAGE — INDUSTRIES SHOWCASE
   ========================================================= */

.solutions_page_industries-section {
  position: relative;
  background: var(--paper);
  padding: 60px 0;
}

.solutions_page_container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- top icon strip ---- */
.solutions_page_strip-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.solutions_page_strip-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(11, 30, 45, 0.12);
  background: var(--white);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.solutions_page_strip-arrow i {
  font-size: 20px;
}
.solutions_page_strip-arrow:hover {
  background: var(--signal);
  color: var(--white);
  transform: translateY(-2px);
}

.solutions_page_strip {
  flex: 1;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 2px;
}
.solutions_page_strip::-webkit-scrollbar {
  display: none;
}

.solutions_page_strip-item {
  flex-shrink: 0;
  width: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 12px;
  border: 1px solid rgba(11, 30, 45, 0.1);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--slate);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  text-align: center;
  line-height: 1.3;
  cursor: pointer;
  transition:
    border-color 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.solutions_page_strip-item i {
  font-size: 26px;
  color: var(--slate-light);
  transition:
    color 0.25s var(--ease),
    background-color 0.25s var(--ease);
  padding: 10px;
  border-radius: 50px;
}
.solutions_page_strip-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 90, 60, 0.35);
}
.solutions_page_strip-item.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-card);
}
.solutions_page_strip-item.is-active i {
  color: var(--signal);
  background-color: rgb(255 90 60 / 23%);
}

/* ---- stage / panes ---- */
.solutions_page_stage {
  position: relative;
}

.solutions_page_pane {
  display: none;
  animation: solutions_page_fadeIn 0.4s var(--ease);
}
.solutions_page_pane.is-active {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
@keyframes solutions_page_fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -----------------------------------------------------------
   Card
----------------------------------------------------------- */
.solutions_page_card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(90deg, rgba(235, 77, 37, 0.07), #fff 55%);
  border: 1px solid rgba(11, 30, 45, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  padding: 24px;
  height: 100%;
  width: calc(33.333% - 20px);
  transition: all 0.3s ease;
}

.solutions_page_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Hide Icon */
.solutions_page_card-icon {
  display: none;
}

/* -----------------------------------------------------------
   Image
----------------------------------------------------------- */
.solutions_page_card-media {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  order: -1;
}

.solutions_page_card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.solutions_page_card:hover .solutions_page_card-media img {
  transform: scale(1.05);
}

/* -----------------------------------------------------------
   Content
----------------------------------------------------------- */
.solutions_page_card-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.solutions_page_card-copy h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ink);
  margin: 0 0 12px;
}

.solutions_page_card-copy p {
  font-family: var(--font-body);
  color: var(--slate);
  line-height: 1.8;
  font-size: 1rem;
  margin: 0 0 22px;
  flex: 1;
}

/* -----------------------------------------------------------
   Button
----------------------------------------------------------- */
.solutions_page_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: max-content;
  padding: 12px 24px;
  border-radius: 50px;
  background: var(--signal);
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.solutions_page_btn i {
  transition: transform 0.3s ease;
}

.solutions_page_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.solutions_page_btn:hover i {
  transform: translateX(4px);
}

/* ===========================================================
   Responsive
=========================================================== */

/* Large Tablets */
@media (max-width: 991px) {
  .solutions_page_card {
    width: calc(50% - 15px);
  }

  .solutions_page_card-media {
    height: 210px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .solutions_page_card {
    width: 100%;
  }

  .solutions_page_card-copy h3 {
    font-size: 1.35rem;
  }

  .solutions_page_card-copy p {
    font-size: 0.95rem;
  }

  .solutions_page_card-media {
    height: 190px;
    margin-bottom: 18px;
  }

  .solutions_page_btn {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   FAQ PAGE — HERO
   ========================================================= */
.faq-hero {
  position: relative;
  padding: 155px 0 80px;
  background: linear-gradient(180deg, var(--paper) 0%, #f1ede3 100%);
  overflow: hidden;
  text-align: center;
}
.faq-hero::before {
  content: "";
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(255, 90, 60, 0.16), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.faq-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.faq-hero-inner .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.faq-hero-title {
  font-size: clamp(2.1rem, 4.4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.7rem;
}
.faq-hero-sub {
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.faq-hero-perforation {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 24px;
  background-image: radial-gradient(
    circle at 12px 0,
    transparent 11px,
    var(--white) 12px
  );
  background-size: 24px 24px;
  background-repeat: repeat-x;
}

/* =========================================================
   FAQ PAGE — SEARCH BAR
   ========================================================= */
.faq-search-section {
  background: var(--white);
  padding: 0 0 10px;
}
.faq-search-wrap {
  max-width: 640px;
  margin: -46px auto 0;
  position: relative;
  z-index: 3;
}
.faq-search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1.5px solid rgba(11, 30, 45, 0.1);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  padding: 6px 8px 6px 22px;
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.faq-search-box:focus-within {
  border-color: var(--register);
  box-shadow:
    var(--shadow-soft),
    0 0 0 4px rgba(27, 122, 90, 0.14);
}
.faq-search-icon {
  flex-shrink: 0;
  color: var(--slate-light);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
}
.faq-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  padding: 12px 14px;
  min-width: 0;
}
.faq-search-input::placeholder {
  color: var(--slate-light);
}
.faq-search-clear {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--paper-dim);
  color: var(--slate);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease);
}
.faq-search-clear.show {
  display: flex;
}
.faq-search-clear:hover {
  background: var(--signal);
  color: var(--white);
}
.faq-search-meta {
  text-align: center;
  font-size: 0.82rem;
  color: var(--slate-light);
  margin: 14px 0 0;
  min-height: 1.2em;
}
.faq-search-meta strong {
  color: var(--ink);
  font-weight: 700;
}

/* =========================================================
   FAQ PAGE — CATEGORY FILTER PILLS
   ========================================================= */
.faq-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 780px;
  margin: 26px auto 0;
}
.faq-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(11, 30, 45, 0.1);
  background: var(--white);
  color: var(--slate);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.faq-cat-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 90, 60, 0.35);
}
.faq-cat-pill.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.faq-cat-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(11, 30, 45, 0.08);
  color: var(--slate);
  font-size: 0.72rem;
  font-weight: 700;
}
.faq-cat-pill.is-active .faq-cat-count {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

/* =========================================================
   FAQ PAGE — LIST / ACCORDION
   ========================================================= */
.faq-list-section {
  background: var(--white);
  padding: 50px 0 20px;
}
.faq-list-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.faq-group {
  margin-bottom: 34px;
  display: flex;
  flex-direction: column;
}
.faq-group:last-child {
  margin-bottom: 0;
}
.faq-group-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--register);
  margin: 0 0 14px 4px;
}
.faq-group-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(11, 30, 45, 0.08);
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(11, 30, 45, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition:
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.faq-item:last-child {
  margin-bottom: 0;
}
.faq-item.is-open {
  border-color: rgba(255, 90, 60, 0.3);
  box-shadow: var(--shadow-card);
}
.faq-item.is-hidden {
  display: none;
}

.faq-item-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}
.faq-item.is-open .faq-item-trigger {
  color: var(--signal-dark);
}

.faq-item-q {
  flex: 1;
}
.faq-item-q mark {
  background: rgba(255, 90, 60, 0.18);
  color: inherit;
  border-radius: 3px;
  padding: 0 1px;
}

.faq-item-toggle {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 30, 45, 0.06);
  color: var(--ink);
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    transform 0.35s var(--ease);
}
.faq-item-toggle svg {
  width: 14px;
  height: 14px;
}
.faq-item-toggle .icon-minus {
  display: none;
}
.faq-item.is-open .faq-item-toggle {
  background: var(--signal);
  color: var(--white);
  transform: rotate(180deg);
}
.faq-item.is-open .faq-item-toggle .icon-plus {
  display: none;
}
.faq-item.is-open .faq-item-toggle .icon-minus {
  display: block;
}

.faq-item-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item-body {
  padding: 0 24px 22px;
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--slate);
}
.faq-item-body mark {
  background: rgba(27, 122, 90, 0.16);
  color: inherit;
  border-radius: 3px;
  padding: 0 1px;
}

/* ---------- No results ---------- */
.faq-empty {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 70px 20px;
}
.faq-empty.show {
  display: flex;
}
.faq-empty-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(255, 90, 60, 0.1);
  color: var(--signal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.faq-empty h3 {
  font-size: 1.15rem;
  margin: 0;
}
.faq-empty p {
  max-width: 340px;
  margin: 0;
  font-size: 0.9rem;
}
.faq-empty-reset {
  margin-top: 4px;
}

/* ---------- Load more ---------- */
.faq-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.faq-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.faq-load-more-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}
.faq-load-more-btn.is-collapsed svg {
  transform: rotate(180deg);
}

/* =========================================================
   FAQ PAGE — STILL HAVE QUESTIONS / CTA
   ========================================================= */
.faq-cta-section {
  background: var(--paper);
  padding: 60px 0 90px;
}
.faq-still-card {
  max-width: 780px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--ink) 0%, #122436 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.faq-still-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 90, 60, 0.35), transparent 70%);
  border-radius: 50%;
}
.faq-still-icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--signal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 18px;
}
.faq-still-card h2 {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 480px;
  margin: 0 auto 0.6rem;
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
}
.faq-still-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.8rem;
}
.faq-still-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================================================
   FAQ PAGE — RESPONSIVE
   ========================================================= */
@media (max-width: 767px) {
  .faq-hero {
    padding: 120px 0 60px;
  }
  .faq-hero-sub {
    font-size: 0.92rem;
  }
  .faq-search-wrap {
    margin-top: -34px;
    padding: 0 16px;
  }
  .faq-categories {
    padding: 0 16px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    margin-top: 22px;
  }
  .faq-categories::-webkit-scrollbar {
    display: none;
  }
  .faq-cat-pill {
    flex-shrink: 0;
  }
  .faq-list-section {
    padding: 40px 0 10px;
  }
  .faq-item-trigger {
    padding: 16px 18px;
    font-size: 0.92rem;
    gap: 12px;
  }
  .faq-item-body {
    padding: 0 18px 18px;
    font-size: 0.87rem;
  }
  .faq-still-card {
    padding: 36px 22px;
  }
  .faq-still-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .faq-hero-title {
    font-size: 1.7rem;
  }
  .faq-search-input {
    font-size: 0.9rem;
    padding: 10px 10px;
  }
  .faq-group-label {
    font-size: 0.68rem;
  }
}

@media (max-width: 767px) {
  .legal-page-section .container {
    padding: 120px 18px 50px !important;
  }
  .legal-page-section h1 {
    font-size: 1.6rem !important;
  }
  .legal-content h3 {
    font-size: 1.05rem;
  }
  .legal-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .legal-page-section .container {
    padding: 110px 14px 40px !important;
  }
  .legal-page-section h1 {
    font-size: 1.4rem !important;
  }
}

/* =========================================================
   404 ERROR PAGE
   ========================================================= */
.error-404-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 20px 80px;
  background: linear-gradient(180deg, var(--paper) 0%, #f1ede3 100%);
  overflow: hidden;
  text-align: center;
}

.error-404-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(255, 90, 60, 0.18), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.error-404-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.error-404-visual {
  position: relative;
  margin-bottom: 10px;
}

.error-404-svg {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.error-404-text {
  font-family: var(--font-display);
  font-size: 140px;
  font-weight: 800;
  fill: var(--ink);
  stroke: var(--signal);
  stroke-width: 1.5;
  animation: error404Float 3.5s var(--ease) infinite;
}

@keyframes error404Float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.error-404-card {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--signal);
  animation: floatY 5s ease-in-out infinite;
}

.card-1 { top: 10%; left: 6%; color: var(--signal); animation-delay: 0s; }
.card-2 { bottom: 6%; right: 8%; color: var(--register); animation-delay: 0.6s; }
.card-3 { top: 55%; right: 2%; color: var(--ink-soft); animation-delay: 1.2s; }

.error-404-title {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 10px 0 12px;
}

.error-404-sub {
  font-size: 1rem;
  color: var(--slate);
  margin: 0 auto 2rem;
  max-width: 460px;
}

.error-404-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .error-404-section { padding: 90px 18px 60px; }
  .error-404-text { font-size: 90px; }
  .error-404-card { width: 42px; height: 42px; font-size: 1rem; }
  .error-404-actions { flex-direction: column; align-items: stretch; }
  .error-404-actions .btn { width: 100%; }
}

@media (max-width: 480px) {
  .error-404-text { font-size: 70px; }
  .card-1, .card-2, .card-3 { display: none; }
}