/* =================================================================
   BMS SERVICE — Printing Solutions
   Global Stylesheet
   -----------------------------------------------------------------
   1.  Design Tokens (CSS Variables)
   2.  Base / Typography
   3.  Utility Classes
   4.  Buttons
   5.  Navbar
   6.  Hero
   7.  Sections & Headings
   8.  Cards (service / feature / industry / team / testimonial)
   9.  Process Timeline
   10. Stats / Counters
   11. Gallery
   12. Forms & Auth
   13. FAQ / Accordion
   14. CTA Banner
   15. Footer
   16. Scroll-to-top
   17. Responsive Media Queries
   ================================================================= */

/* ---------------------------------------------------------------
   1. DESIGN TOKENS
   Palette derived from the BMS logo — navy anchor + CMYK accents
   --------------------------------------------------------------- */
:root {
  --navy: #1a2648;
  --navy-700: #141d38;
  --navy-900: #0d1428;
  --cyan: #04a4df;
  --magenta: #e3118a;
  --yellow: #f9d819;
  --orange: #f08a3c;

  --ink: #1f2733;
  --body: #4a5568;
  --muted: #8a95a5;
  --line: #e6e9f0;
  --surface: #ffffff;
  --surface-alt: #f5f7fb;
  --surface-2: #eef1f8;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 8px rgba(26, 38, 72, .06);
  --shadow: 0 12px 30px rgba(26, 38, 72, .10);
  --shadow-lg: 0 24px 60px rgba(26, 38, 72, .16);

  --ff-head: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-body: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container-pad: 1.25rem;
  --section-y: 6rem;

  --cmyk-gradient: linear-gradient(90deg, var(--cyan) 0%, var(--magenta) 40%, var(--yellow) 72%, var(--orange) 100%);
}

/* ---------------------------------------------------------------
   2. BASE / TYPOGRAPHY
   --------------------------------------------------------------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  color: var(--body);
  background: var(--surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-title {
  font-family: var(--ff-head);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.01em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color .2s ease;
}

a:hover {
  color: var(--magenta);
}

.lead-muted {
  color: var(--body);
  font-size: 1.125rem;
}

/* ---------------------------------------------------------------
   3. UTILITY CLASSES
   --------------------------------------------------------------- */
.text-navy {
  color: var(--navy) !important;
}

.text-cyan {
  color: var(--cyan) !important;
}

.text-magenta {
  color: var(--magenta) !important;
}

.text-orange {
  color: var(--orange) !important;
}

.text-muted-2 {
  color: var(--muted) !important;
}

.bg-navy {
  background-color: var(--navy) !important;
}

.bg-soft {
  background-color: var(--surface-alt) !important;
}

.bg-soft-2 {
  background-color: var(--surface-2) !important;
}

.section {
  padding: var(--section-y) 0;
}

.section-sm {
  padding: 3.5rem 0;
}

.cmyk-bar {
  height: 6px;
  width: 100%;
  background: var(--cmyk-gradient);
  border: 0;
}

.cmyk-rule {
  width: 56px;
  height: 4px;
  border-radius: 4px;
  background: var(--cmyk-gradient);
  margin: 0 0 1.25rem;
}

.text-center .cmyk-rule {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: .75rem;
}

.rounded-xl {
  border-radius: var(--radius-lg) !important;
}

.shadow-soft {
  box-shadow: var(--shadow) !important;
}

/* dotted / halftone decorative texture */
.dot-grid {
  background-image: radial-gradient(rgba(26, 38, 72, .12) 1.4px, transparent 1.4px);
  background-size: 16px 16px;
}

/* ---------------------------------------------------------------
   4. BUTTONS
   --------------------------------------------------------------- */
.btn {
  --bs-btn-font-family: var(--ff-head);
  font-weight: 600;
  border-radius: 999px;
  padding: .72rem 1.6rem;
  transition: transform .18s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-brand {
  background: var(--navy);
  color: #fff;
  border: 2px solid var(--navy);
}

.btn-brand:hover {
  background: var(--navy-700);
  border-color: var(--navy-700);
  color: #fff;
  box-shadow: 0 12px 24px rgba(26, 38, 72, .28);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--magenta);
  color: #fff;
  border: 2px solid var(--magenta);
}

.btn-accent:hover {
  background: #c60c76;
  border-color: #c60c76;
  color: #fff;
  box-shadow: 0 12px 24px rgba(227, 17, 138, .30);
  transform: translateY(-2px);
}

.btn-outline-brand {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline-brand:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-light-brand {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .65);
}

.btn-outline-light-brand:hover {
  background: #fff;
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-lg {
  padding: .9rem 2rem;
  font-size: 1.05rem;
}

.link-more {
  font-family: var(--ff-head);
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.link-more i {
  transition: transform .2s ease;
}

.link-more:hover {
  color: var(--magenta);
}

.link-more:hover i {
  transform: translateX(4px);
}

/* ---------------------------------------------------------------
   5. NAVBAR
   --------------------------------------------------------------- */
.navbar-bms {
  background: #fff;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: .6rem 0;
  transition: box-shadow .25s ease, padding .25s ease;
}

.navbar-bms.scrolled {
  box-shadow: var(--shadow-sm);
  padding: .35rem 0;
}

.navbar-bms .navbar-brand img {
  height: 70px;
  width: auto;
}

.navbar-bms .nav-link {
  font-family: var(--ff-head);
  font-weight: 500;
  color: var(--ink) !important;
  margin: 0 .15rem;
  padding: .5rem .9rem !important;
  border-radius: 999px;
  position: relative;
  transition: color .2s ease, background-color .2s ease;
}

.navbar-bms .nav-link:hover {
  color: var(--cyan) !important;
}

.navbar-bms .nav-link.active {
  color: var(--navy) !important;
  background: transparent;
}

.navbar-bms .nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: .18rem;
  transform: translateX(-50%);
  width: 18px;
  height: 3px;
  border-radius: 3px;
  background: var(--cmyk-gradient);
}

.navbar-bms .navbar-toggler {
  border: 0;
  padding: .3rem .4rem;
}

.navbar-bms .navbar-toggler:focus {
  box-shadow: none;
}

.nav-cta {
  margin-left: .5rem;
}

/* ---------------------------------------------------------------
   6. HERO
   --------------------------------------------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 88% -10%, rgba(4, 164, 223, .16), transparent 60%),
    radial-gradient(900px 500px at 8% 110%, rgba(227, 17, 138, .12), transparent 55%),
    var(--navy);
  color: #fff;
  overflow: hidden;
  padding: 8.5rem 0 6rem;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .06) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  pointer-events: none;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 3.9rem);
}

.hero p {
  color: rgba(255, 255, 255, .82);
}

.hero .highlight {
  background: var(--cmyk-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  padding: .4rem 1rem;
  border-radius: 999px;
  font-size: .85rem;
  font-family: var(--ff-head);
  margin-bottom: 1.5rem;
}

.hero-badge i {
  color: var(--yellow);
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.4;
  background:
    linear-gradient(140deg, #23345f, #16203c);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual .cmyk-ring {
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(var(--cyan), var(--magenta), var(--yellow), var(--orange), var(--cyan));
  filter: blur(2px);
  opacity: .9;
  -webkit-mask: radial-gradient(closest-side, transparent 58%, #000 60%);
  mask: radial-gradient(closest-side, transparent 58%, #000 60%);
  animation: spin 22s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hero-visual .visual-logo {
  position: absolute;
  width: 46%;
}

.hero-mini-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.25rem;
}

.hero-mini-stats .num {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
}

.hero-mini-stats .lbl {
  font-size: .8rem;
  color: rgba(255, 255, 255, .7);
}

/* trusted marquee-ish logo strip */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.trust-strip .item {
  font-family: var(--ff-head);
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .04em;
}

/* ---------------------------------------------------------------
   7. SECTIONS & HEADINGS
   --------------------------------------------------------------- */
.section-head {
  max-width: 640px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

.section-head.text-center {
  margin-left: auto;
  margin-right: auto;
}

.page-hero {
  background:
    radial-gradient(900px 400px at 85% -20%, rgba(4, 164, 223, .18), transparent 60%),
    var(--navy);
  color: #fff;
  padding: 7.5rem 0 3.5rem;
  position: relative;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-hero p {
  color: rgba(255, 255, 255, .8);
}

.breadcrumb-bms .breadcrumb {
  --bs-breadcrumb-divider-color: rgba(255, 255, 255, .5);
  margin: 0;
}

.breadcrumb-bms .breadcrumb-item a {
  color: rgba(255, 255, 255, .75);
}

.breadcrumb-bms .breadcrumb-item a:hover {
  color: #fff;
}

.breadcrumb-bms .breadcrumb-item.active {
  color: var(--yellow);
}

/* ---------------------------------------------------------------
   8. CARDS
   --------------------------------------------------------------- */
.card-bms {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.card-bms:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

/* icon tile */
.icon-tile {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 1.1rem;
}

.icon-tile.c {
  background: linear-gradient(135deg, var(--cyan), #0787bb);
}

.icon-tile.m {
  background: linear-gradient(135deg, var(--magenta), #b60d70);
}

.icon-tile.y {
  background: linear-gradient(135deg, var(--yellow), #e0b800);
  color: var(--navy);
}

.icon-tile.k {
  background: linear-gradient(135deg, var(--navy), #2c3f75);
}

.icon-tile.o {
  background: linear-gradient(135deg, var(--orange), #d5701f);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: .5rem;
}

.service-card p {
  font-size: .96rem;
  margin-bottom: 1rem;
}

.feature-card .icon-tile {
  width: 52px;
  height: 52px;
  font-size: 1.4rem;
}

/* industry chip card */
.industry-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  height: 100%;
}

.industry-card i {
  font-size: 2rem;
  color: var(--cyan);
}

.industry-card h3 {
  font-size: 1.02rem;
  margin: .8rem 0 0;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.industry-card:hover i {
  color: var(--magenta);
}

/* team */
.team-card {
  overflow: hidden;
  text-align: center;
}

.team-photo {
  aspect-ratio: 1 / 1;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--navy);
}


.team-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.team-card .body {
  padding: 1.1rem;
}

.team-card h3 {
  font-size: 1.1rem;
  margin: 0;
}

.team-card .role {
  color: var(--magenta);
  font-weight: 600;
  font-size: .85rem;
  font-family: var(--ff-head);
}

.team-socials a {
  color: var(--muted);
  margin: 0 .3rem;
  font-size: 1.05rem;
}

.team-socials a:hover {
  color: var(--cyan);
}

/* testimonial */
.testi-card {
  padding: 1.75rem;
}

.testi-card .stars {
  color: var(--yellow);
  font-size: .95rem;
  margin-bottom: .8rem;
}

.testi-card blockquote {
  font-size: 1.02rem;
  color: var(--ink);
  margin: 0 0 1.2rem;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .95rem;
}

.testi-card .name {
  font-family: var(--ff-head);
  font-weight: 600;
  color: var(--ink);
  font-size: .95rem;
}

.testi-card .meta {
  font-size: .82rem;
  color: var(--muted);
}

/* value card (about) */
.value-card {
  padding: 1.6rem;
}

.value-card .num {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--magenta);
}

/* pricing */
.price-card {
  padding: 2rem 1.75rem;
  position: relative;
}

.price-card.featured {
  border: 2px solid var(--navy);
  box-shadow: var(--shadow);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cmyk-gradient);
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 999px;
}

.price-card .price {
  font-family: var(--ff-head);
  font-weight: 700;
  color: var(--navy);
  font-size: 2.4rem;
}

.price-card .price small {
  font-size: .95rem;
  color: var(--muted);
  font-weight: 500;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}

.price-list li {
  padding: .4rem 0;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .95rem;
}

.price-list li i {
  color: var(--cyan);
}

/* ---------------------------------------------------------------
   9. PROCESS TIMELINE
   --------------------------------------------------------------- */
.process-step {
  position: relative;
  padding: 0 .5rem;
  text-align: center;
}

.process-num {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  margin: 0 auto 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  background: var(--navy);
  position: relative;
  z-index: 2;
  border: 4px solid var(--surface-alt);
}

.process-step h3 {
  font-size: 1.1rem;
}

.process-row {
  position: relative;
}

.process-row::before {
  content: "";
  position: absolute;
  top: 55px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: var(--cmyk-gradient);
  opacity: .5;
}

/* vertical timeline (about) */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: .4rem;
  bottom: .4rem;
  width: 3px;
  background: var(--cmyk-gradient);
  opacity: .6;
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--navy);
}

.timeline-item .year {
  font-family: var(--ff-head);
  font-weight: 700;
  color: var(--magenta);
}

.timeline-item h3 {
  font-size: 1.1rem;
  margin: .2rem 0 .3rem;
}

/* ---------------------------------------------------------------
   10. STATS / COUNTERS
   --------------------------------------------------------------- */
.stats-band {
  background:
    radial-gradient(700px 300px at 15% 0%, rgba(4, 164, 223, .18), transparent 60%),
    var(--navy);
  color: #fff;
}

.stat .num {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1;
  background: var(--cmyk-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat .lbl {
  color: rgba(255, 255, 255, .75);
  margin-top: .4rem;
  font-family: var(--ff-head);
}

/* ---------------------------------------------------------------
   11. GALLERY
   --------------------------------------------------------------- */
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: flex-end;
  color: #fff;
  padding: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 20, 40, .78));
  z-index: 1;
}

.gallery-item span {
  position: relative;
  z-index: 2;
  font-family: var(--ff-head);
  font-weight: 600;
}

.gallery-item.g1 {
  background: linear-gradient(135deg, #04a4df, #1a2648);
}

.gallery-item.g2 {
  background: linear-gradient(135deg, #e3118a, #1a2648);
}

.gallery-item.g3 {
  background: linear-gradient(135deg, #f08a3c, #1a2648);
}

.gallery-item.g4 {
  background: linear-gradient(135deg, #f9d819, #1a2648);
}

.gallery-item.g5 {
  background: linear-gradient(135deg, #2c3f75, #04a4df);
}

.gallery-item.g6 {
  background: linear-gradient(135deg, #b60d70, #f08a3c);
}

.gallery-item:hover {
  transform: translateY(-3px);
}

.gallery-item {
  transition: transform .2s ease;
}

/* ---------------------------------------------------------------
   12. FORMS & AUTH
   --------------------------------------------------------------- */
.form-control,
.form-select {
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  padding: .75rem 1rem;
  font-size: .98rem;
  color: var(--ink);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 .2rem rgba(4, 164, 223, .15);
}

.form-label {
  font-family: var(--ff-head);
  font-weight: 500;
  color: var(--ink);
  font-size: .9rem;
}

.input-group-text {
  background: var(--surface-alt);
  border: 1.5px solid var(--line);
  border-right: 0;
  color: var(--muted);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.input-group .form-control {
  border-left: 0;
}

.contact-info-card {
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-card .ci-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
}

.contact-info-card h3 {
  font-size: 1.02rem;
  margin: 0 0 .2rem;
}

.contact-info-card p {
  margin: 0;
  font-size: .95rem;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* auth */
.auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 3rem;
  background:
    radial-gradient(700px 400px at 90% 0%, rgba(4, 164, 223, .12), transparent 60%),
    radial-gradient(600px 400px at 0% 100%, rgba(227, 17, 138, .10), transparent 60%),
    var(--surface-alt);
}

.auth-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.auth-card .form-side {
  padding: 2.5rem;
}

.auth-aside {
  background:
    radial-gradient(500px 300px at 80% 20%, rgba(4, 164, 223, .35), transparent 60%),
    var(--navy);
  color: #fff;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.auth-aside::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .07) 1.4px, transparent 1.4px);
  background-size: 20px 20px;
}

.auth-aside h2 {
  color: #fff;
  position: relative;
  z-index: 2;
}

.auth-aside p,
.auth-aside li {
  color: rgba(255, 255, 255, .82);
  position: relative;
  z-index: 2;
}

.auth-aside ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.auth-aside li {
  padding: .4rem 0;
  display: flex;
  gap: .6rem;
  align-items: center;
}

.auth-aside li i {
  color: var(--yellow);
}

.pw-meter {
  height: 6px;
  border-radius: 6px;
  background: var(--line);
  overflow: hidden;
  margin-top: .5rem;
}

.pw-meter span {
  display: block;
  height: 100%;
  width: 0;
  transition: width .25s ease, background-color .25s ease;
}

.pw-hint {
  font-size: .8rem;
  margin-top: .35rem;
  color: var(--muted);
}

.password-toggle {
  cursor: pointer;
}

/* ---------------------------------------------------------------
   13. FAQ / ACCORDION
   --------------------------------------------------------------- */
.accordion-bms .accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius) !important;
  margin-bottom: .85rem;
  overflow: hidden;
  background: var(--surface);
}

.accordion-bms .accordion-button {
  font-family: var(--ff-head);
  font-weight: 600;
  color: var(--ink);
  padding: 1.15rem 1.35rem;
}

.accordion-bms .accordion-button:not(.collapsed) {
  color: var(--navy);
  background: var(--surface-alt);
  box-shadow: none;
}

.accordion-bms .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-bms .accordion-button::after {
  background-image: none;
  content: "\f4fe";
  /* bi-plus-lg via bootstrap-icons font */
  font-family: "bootstrap-icons";
  font-size: .9rem;
  transform: none;
  color: var(--magenta);
  transition: transform .2s ease;
}

.accordion-bms .accordion-button:not(.collapsed)::after {
  content: "\f63b";
  /* bi-dash-lg */
}

.accordion-bms .accordion-body {
  color: var(--body);
  padding: 0 1.35rem 1.25rem;
}

/* ---------------------------------------------------------------
   14. CTA BANNER
   --------------------------------------------------------------- */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(600px 300px at 90% 10%, rgba(4, 164, 223, .30), transparent 60%),
    radial-gradient(500px 300px at 5% 100%, rgba(227, 17, 138, .25), transparent 60%),
    var(--navy);
  color: #fff;
  padding: 3.5rem;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .06) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
}

.cta-banner>* {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  color: #fff;
}

.cta-banner p {
  color: rgba(255, 255, 255, .85);
}

/* ---------------------------------------------------------------
   15. FOOTER
   --------------------------------------------------------------- */
.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, .7);
  padding-top: 4rem;
}

.footer .foot-logo {
  height: 70px;
}

.footer h4 {
  color: #fff;
  font-size: 1rem;
  font-family: var(--ff-head);
  margin-bottom: 1.1rem;
  letter-spacing: .02em;
}

.footer a {
  color: rgba(255, 255, 255, .7);
}

.footer a:hover {
  color: #fff;
}

.footer .foot-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .foot-links li {
  padding: .32rem 0;
}

.footer .foot-links a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.footer .foot-links i {
  color: var(--cyan);
  font-size: .8rem;
}

.footer .foot-contact li {
  display: flex;
  gap: .7rem;
  padding: .4rem 0;
  align-items: flex-start;
}

.footer .foot-contact i {
  color: var(--cyan);
  margin-top: .2rem;
}

.footer .socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: .5rem;
  color: #fff;
  transition: background .2s ease, transform .2s ease;
}

.footer .socials a:hover {
  transform: translateY(-3px);
}

.footer .socials a.f-cyan:hover {
  background: var(--cyan);
}

.footer .socials a.f-magenta:hover {
  background: var(--magenta);
}

.footer .socials a.f-orange:hover {
  background: var(--orange);
}

.footer .socials a.f-navy:hover {
  background: #2c3f75;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .10);
  margin-top: 3rem;
  padding: 1.4rem 0;
  font-size: .88rem;
}

/* ---------------------------------------------------------------
   16. SCROLL-TO-TOP
   --------------------------------------------------------------- */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1030;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  color: #fff;
  background: var(--navy);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, background .2s ease;
  cursor: pointer;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  background: var(--magenta);
}

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-visual .cmyk-ring {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ---------------------------------------------------------------
   17. RESPONSIVE
   --------------------------------------------------------------- */
@media (max-width: 991.98px) {
  :root {
    --section-y: 4.25rem;
  }

  .navbar-bms .navbar-collapse {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
    margin-top: .6rem;
    box-shadow: var(--shadow);
  }

  .navbar-bms .nav-link.active::after {
    display: none;
  }

  .nav-cta {
    margin: .6rem 0 0;
    display: inline-block;
  }

  .hero {
    padding: 7rem 0 4rem;
  }

  .process-row::before {
    display: none;
  }

  .cta-banner {
    padding: 2.5rem 1.75rem;
  }

  .auth-aside {
    display: none !important;
  }
}

@media (max-width: 575.98px) {
  .hero-mini-stats {
    gap: 1.4rem;
  }

  .cmyk-rule {
    margin-left: 0;
  }

  .cta-banner {
    text-align: center;
  }

  .display-1,
  .hero h1 {
    font-size: 2.1rem;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1240px;
  }
}

/* ---------------------------------------------------------------
   18. IMAGERY & ENHANCED ANIMATIONS
   --------------------------------------------------------------- */
/* section illustrations fill their frame */
.hero-visual .illus-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1);
  will-change: transform;
}

.hero-visual {
  background: none !important;
}

.hero-media-wrap {
  position: relative;
}

.hero-media-wrap .chip-float {
  position: absolute;
}

.hero-visual:hover .illus-fill {
  transform: scale(1.045);
}

/* gentle floating motion */
@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.float-soft {
  animation: floaty 6.5s ease-in-out infinite;
}

/* fade + rise entrance used by hero content on load */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero .hero-badge {
  animation: fadeUp .7s .05s both ease-out;
}

.hero h1 {
  animation: fadeUp .7s .15s both ease-out;
}

.hero>.container>.row>.col-lg-6>p.lead {
  animation: fadeUp .7s .28s both ease-out;
}

.hero .d-flex.flex-wrap {
  animation: fadeUp .7s .40s both ease-out;
}

.hero-mini-stats {
  animation: fadeUp .7s .52s both ease-out;
}

/* button shine sweep */
.btn-brand,
.btn-accent {
  position: relative;
  overflow: hidden;
}

.btn-brand::after,
.btn-accent::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .35), transparent);
  transform: skewX(-18deg);
  transition: left .6s ease;
  pointer-events: none;
}

.btn-brand:hover::after,
.btn-accent:hover::after {
  left: 130%;
}

/* icon tile micro-interaction on card hover */
.card-bms .icon-tile {
  transition: transform .3s cubic-bezier(.2, .7, .2, 1);
}

.card-bms:hover .icon-tile {
  transform: translateY(-3px) rotate(-6deg);
}

/* industry icon pop */
.industry-card i {
  transition: transform .3s ease, color .2s ease;
}

.industry-card:hover i {
  transform: scale(1.15) translateY(-2px);
}

/* gallery shine on hover */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(220px 160px at 30% 20%, rgba(255, 255, 255, .22), transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.01);
}

/* process number pulse on hover of step */
.process-step {
  transition: transform .3s ease;
}

.process-step:hover {
  transform: translateY(-4px);
}

.process-num {
  transition: box-shadow .3s ease, transform .3s ease;
}

.process-step:hover .process-num {
  box-shadow: 0 10px 24px rgba(26, 38, 72, .30);
}

/* team photo zoom */
.team-photo {
  overflow: hidden;
}

.team-card .team-photo {
  transition: color .3s ease;
}

.team-card:hover .team-photo {
  color: var(--magenta);
}

/* testimonial avatar micro pop */
.testi-card:hover .testi-avatar {
  transform: scale(1.08);
  transition: transform .3s ease;
}

/* stagger helper (set by JS) */
.reveal {
  transition-delay: var(--reveal-delay, 0ms);
}

@media (prefers-reduced-motion: reduce) {
  .float-soft {
    animation: none;
  }

  .hero .hero-badge,
  .hero h1,
  .hero p.lead,
  .hero .d-flex.flex-wrap,
  .hero-mini-stats {
    animation: none;
  }

  .hero-visual:hover .illus-fill {
    transform: none;
  }
}

/* ---------------------------------------------------------------
   19. PREMIUM MEDIA COMPOSITIONS
   Framed illustration + floating badge/card + CMYK splash + dot grid
   --------------------------------------------------------------- */
.media-comp {
  position: relative;
  padding: 2.5rem 4.25rem 2.75rem 1.25rem;
  /* right gutter holds the splash */
}

.media-stage {
  position: relative;
  z-index: 3;
}

.media-frame {
  position: relative;
  z-index: 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.2;
  background: linear-gradient(140deg, #eef1f8, #dfe5f2);
  transition: transform .5s cubic-bezier(.2, .7, .2, 1);
}

.media-frame .illus-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1);
  will-change: transform;
}

.media-comp:hover .media-frame .illus-fill {
  transform: scale(1.05);
}

/* CMYK paint splash behind the frame, bleeding into the right gutter */
.media-splash {
  position: absolute;
  z-index: 1;
  right: -1.75rem;
  top: 44%;
  width: 50%;
  height: auto;
  transform: translateY(-46%);
  opacity: .95;
  pointer-events: none;
  filter: drop-shadow(0 14px 26px rgba(227, 17, 138, .20));
}

/* dotted grid decoration, top-right of the frame */
.media-dots {
  position: absolute;
  z-index: 4;
  top: -1.1rem;
  right: -1.4rem;
  width: 120px;
  height: 82px;
  background-image: radial-gradient(var(--navy) 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: .3;
  pointer-events: none;
}

/* rounded bracket accent, top-right */
.media-bracket {
  position: absolute;
  z-index: 4;
  top: -0.4rem;
  right: -0.3rem;
  width: 108px;
  height: 58px;
  border-top: 2px solid var(--navy);
  border-right: 2px solid var(--navy);
  border-top-right-radius: 20px;
  opacity: .24;
  pointer-events: none;
}

/* floating circular experience badge — overlaps frame top-left */
.badge-float {
  position: absolute;
  z-index: 6;
  top: -1.4rem;
  left: -1.6rem;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px dashed var(--line);
  animation: floaty 6.5s ease-in-out infinite;
}

.badge-float .bf-num {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.9rem;
  line-height: 1;
  background: var(--cmyk-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge-float .bf-lbl {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: .25rem;
  line-height: 1.25;
}

/* floating info card — overlaps frame bottom-right */
.card-float {
  position: absolute;
  z-index: 6;
  right: -1.6rem;
  bottom: -1.4rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.15rem;
  max-width: 235px;
  animation: floaty 7.5s ease-in-out infinite .4s;
}

.card-float .cf-title {
  font-family: var(--ff-head);
  font-weight: 700;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.25;
}

.card-float .cmyk-rule {
  margin: .55rem 0 0;
  width: 44px;
  height: 3px;
}

.card-float.with-icon {
  display: flex;
  gap: .8rem;
  align-items: center;
  max-width: 260px;
}

.card-float .cf-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

.card-float .cf-sub {
  font-size: .8rem;
  color: var(--muted);
  margin-top: .1rem;
}

/* floating stat chip (used on dark hero) */
.chip-float {
  position: absolute;
  z-index: 5;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: .8rem 1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  animation: floaty 7s ease-in-out infinite .3s;
}

.chip-float .cf-ic {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
}

.chip-float .cf-n {
  font-family: var(--ff-head);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1;
}

.chip-float .cf-l {
  font-size: .72rem;
  color: var(--muted);
}

@media (max-width: 1199.98px) {
  .card-float {
    max-width: 200px;
    padding: .8rem .9rem;
  }

  .card-float .cf-title {
    font-size: .92rem;
  }

  .badge-float {
    width: 112px;
    height: 112px;
  }

  .badge-float .bf-num {
    font-size: 1.55rem;
  }
}

@media (max-width: 767.98px) {
  .media-comp {
    padding: 2rem 2.5rem 2.25rem 1.5rem;
  }

  .media-splash {
    width: 42%;
    opacity: .85;
    right: -0.25rem;
  }

  .card-float {
    right: -0.4rem;
    bottom: -0.8rem;
    max-width: 176px;
    padding: .7rem .85rem;
  }

  .badge-float {
    width: 92px;
    height: 92px;
    top: -1rem;
    left: -0.6rem;
  }

  .badge-float .bf-num {
    font-size: 1.3rem;
  }

  .badge-float .bf-lbl {
    font-size: .5rem;
  }

  .media-dots {
    width: 84px;
    height: 56px;
    right: -0.4rem;
  }

  .media-bracket {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  .badge-float,
  .card-float,
  .chip-float {
    animation: none;
  }

  .media-comp:hover .media-frame .illus-fill {
    transform: none;
  }
}