/* ==========================================================================
   1. Tokens — single source of truth
   ========================================================================== */

:root {
  /* Fonts */
  --bc-font-body: "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --bc-font-head: "Poppins", system-ui, sans-serif;
  --bc-font-nav: "Rubik", system-ui, sans-serif;

  /* Brand */
  --bc-accent: #50c5ff;
  --bc-accent-hover: #16a6e6;
  --bc-accent-strong: #2aa8e8;
  --bc-accent-soft: rgba(80, 197, 255, 0.12);
  --bc-accent-softer: rgba(80, 197, 255, 0.08);
  --bc-accent-glow: rgba(80, 197, 255, 0.18);
  --bc-accent-on-dark: #dff7ff;
  --bc-accent-text-soft: #1c5875;

  /* Neutrals */
  --bc-bg: #f4f7fb;
  --bc-bg-soft: #f8fbfd;
  --bc-surface: #ffffff;
  --bc-heading: #101828;
  --bc-text: #475467;
  --bc-muted: #667085;
  --bc-line: #e4e7ec;
  --bc-line-soft: rgba(15, 23, 42, 0.08);

  /* Dark surfaces (header / hero / CTA / footer) */
  --bc-dark-1: #0c1630;
  --bc-dark-2: #111827;
  --bc-dark-text: rgba(255, 255, 255, 0.86);
  --bc-dark-muted: rgba(255, 255, 255, 0.56);
  --bc-dark-card: rgba(255, 255, 255, 0.06);

  /* Status */
  --bc-success: #15803d;
  --bc-success-bg: rgba(22, 163, 74, 0.10);
  --bc-warn: #a16207;
  --bc-warn-bg: rgba(245, 158, 11, 0.12);
  --bc-danger: #b42318;
  --bc-danger-bg: rgba(220, 53, 69, 0.10);

  /* Shadows */
  --bc-shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --bc-shadow-sm: 0 12px 30px rgba(15, 23, 42, 0.06);
  --bc-shadow-md: 0 14px 35px rgba(15, 23, 42, 0.08);
  --bc-shadow-lg: 0 24px 50px rgba(15, 23, 42, 0.11);
  --bc-shadow-accent: 0 12px 26px rgba(80, 197, 255, 0.24);

  /* Radii */
  --bc-radius-sm: 10px;
  --bc-radius-md: 14px;
  --bc-radius-lg: 18px;
  --bc-radius-xl: 22px;
  --bc-radius-2xl: 26px;
  --bc-radius-pill: 999px;

  /* Layout */
  --bc-max-width: 1600px;
  --bc-header-h: 82px;
  --bc-header-h-md: 74px;
  --bc-header-h-sm: 72px;

  /* Gradients */
  --bc-card-gradient: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);

  /* Bootstrap-compatible aliases */
  --default-font: var(--bc-font-body);
  --heading-font: var(--bc-font-head);
  --nav-font: var(--bc-font-nav);
  --background-color: var(--bc-bg);
  --surface-color: var(--bc-surface);
  --default-color: var(--bc-text);
  --heading-color: var(--bc-heading);
  --accent-color: var(--bc-accent);
  --contrast-color: #ffffff;
  --nav-color: #02151f;
  --nav-hover-color: var(--bc-accent);

  scroll-behavior: smooth;
}

.light-background {
  --background-color: #e3eef7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: var(--bc-dark-1);
  --default-color: var(--bc-dark-text);
  --heading-color: #ffffff;
  --surface-color: #142732;
  --contrast-color: #ffffff;
}


/* ==========================================================================
   2. Base
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding-top: var(--bc-header-h);
  color: var(--bc-text);
  background: #ffffff;
  font-family: var(--bc-font-body);
  font-size: 15.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: var(--bc-accent);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--bc-accent-hover);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--bc-heading);
  font-family: var(--bc-font-head);
  font-weight: 700;
  letter-spacing: -0.02em;
}

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: var(--bc-accent-glow);
  color: var(--bc-heading);
}


/* ==========================================================================
   3. Sections & container width
   ========================================================================== */

section,
.section {
  position: relative;
  padding: 88px 0;
  overflow: clip;
  color: var(--bc-text);
  background:
    radial-gradient(circle at top right, var(--bc-accent-softer), transparent 22%),
    #ffffff;
  scroll-margin-top: calc(var(--bc-header-h) + 14px);
}

/* Soft divider line between adjacent sections so the boundary is obvious */
section+section,
section+.section,
.section+section,
.section+.section {
  border-top: 1px solid #dde4ee;
}

/* Constrain every container to the max width set in tokens */
.container {
  max-width: var(--bc-max-width);
}

/* Light (tinted) sections — clearly distinguishable from the plain white ones */
.light-background {
  background:
    radial-gradient(circle at top right, rgba(80, 197, 255, 0.10), transparent 28%),
    radial-gradient(circle at bottom left, rgba(80, 197, 255, 0.06), transparent 30%),
    linear-gradient(180deg, #e9f2fa 0%, #dfeaf4 100%);
}

/* Dark sections keep their own treatment (used by call-to-action) */
.dark-background {
  background:
    radial-gradient(circle at top right, rgba(80, 197, 255, 0.18), transparent 35%),
    linear-gradient(180deg, #0c1630 0%, #111827 100%);
}

/* Hero section keeps its own background (image carousel), so reset here */
#hero {
  background: transparent;
  border-top: 0;
}


/* ==========================================================================
   4. Section title pattern (eyebrow chip + heading + fading bar)
   ========================================================================== */

.section-title {
  position: relative;
  max-width: 720px;
  margin: 0 auto 48px;
  padding: 0 0 4px;
  text-align: left;
}

.section-title.text-center,
section .container>.section-title {
  text-align: center;
}

.section-title .description-title,
.section-title>span:first-child {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  margin-bottom: 18px;
  background: var(--bc-accent-soft);
  border: 1px solid rgba(80, 197, 255, 0.20);
  border-radius: var(--bc-radius-pill);
  color: var(--bc-accent-text-soft);
  font-family: var(--bc-font-nav);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-title h2 {
  margin: 0 0 14px;
  color: var(--bc-heading);
  font-family: var(--bc-font-head);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  text-transform: none;
}

.section-title h2::after {
  content: "";
  display: block;
  width: 110px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: var(--bc-radius-pill);
  background: linear-gradient(90deg, var(--bc-accent), transparent);
}

.section-title.text-center h2::after,
section .container>.section-title h2::after {
  margin-left: auto;
  margin-right: auto;
}

.section-title p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--bc-text);
  font-size: 1rem;
  line-height: 1.75;
}


/* ==========================================================================
   5. Header / navbar
   ========================================================================== */

.bc-command-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1030;
  background:
    radial-gradient(circle at top left, rgba(80, 197, 255, 0.16), transparent 28%),
    linear-gradient(135deg, var(--bc-dark-1), var(--bc-dark-2));
  border-bottom: 1px solid rgba(80, 197, 255, 0.16);
  box-shadow: 0 12px 35px rgba(2, 8, 23, 0.22);
}

.bc-command-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.75;
  pointer-events: none;
}

.bc-command-nav,
.bc-command-nav .container {
  min-height: var(--bc-header-h);
}

.bc-command-nav .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Brand */
.bc-command-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  margin-right: auto;
  text-decoration: none;
}

.bc-command-logo {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--bc-accent);
  box-shadow: 0 12px 28px rgba(80, 197, 255, 0.30);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bc-command-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bc-command-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

.bc-command-brand-title {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.bc-command-brand-subtitle {
  margin-top: 4px;
  color: var(--bc-dark-muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Desktop nav */
.bc-command-desktop {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.bc-command-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bc-command-link {
  min-height: 42px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--bc-radius-pill);
  color: var(--bc-dark-text);
  font-size: 0.84rem;
  font-weight: 750;
  white-space: nowrap;
  text-decoration: none;
  transition: 0.22s ease;
}

.bc-command-link:hover {
  color: #ffffff;
  background: var(--bc-dark-card);
  border-color: rgba(80, 197, 255, 0.18);
}

.bc-command-link.active {
  background: var(--bc-accent);
  border-color: var(--bc-accent);
  color: var(--bc-dark-2);
  box-shadow: 0 10px 25px rgba(80, 197, 255, 0.25);
}

/* Profile button */
.bc-profile-wrap {
  position: relative;
  flex-shrink: 0;
}

.bc-profile-btn {
  min-height: 46px;
  padding: 0 13px 0 7px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(80, 197, 255, 0.24);
  border-radius: var(--bc-radius-pill);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  cursor: pointer;
  transition: 0.22s ease;
}

.bc-profile-btn:hover,
.bc-profile-btn.active {
  background: rgba(80, 197, 255, 0.13);
  border-color: rgba(80, 197, 255, 0.40);
}

.bc-profile-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bc-accent);
  color: var(--bc-dark-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.bc-profile-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  font-size: 0.82rem;
  font-weight: 800;
}

.bc-profile-info small {
  margin-top: 3px;
  color: var(--bc-dark-muted);
  font-size: 0.62rem;
  font-weight: 700;
}

.bc-profile-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 210px;
  padding: 10px;
  border: 1px solid rgba(80, 197, 255, 0.18);
  border-radius: var(--bc-radius-lg);
  background:
    radial-gradient(circle at top left, rgba(80, 197, 255, 0.16), transparent 30%),
    linear-gradient(160deg, var(--bc-dark-1), var(--bc-dark-2));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.22s ease;
}

.bc-profile-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bc-profile-menu a {
  min-height: 44px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 13px;
  color: var(--bc-dark-text);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.bc-profile-menu a i {
  color: var(--bc-accent);
}

.bc-profile-menu a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
}

/* Mobile menu trigger */
.bc-command-mobile-btn {
  display: none;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(80, 197, 255, 0.24);
  border-radius: var(--bc-radius-md);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  cursor: pointer;
}

.bc-command-mobile-btn i {
  font-size: 1.45rem;
}

/* Mobile overlay + offcanvas */
.bc-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 1035;
  background: rgba(2, 8, 23, 0.72);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
}

.bc-mobile-overlay.show {
  opacity: 1;
  visibility: visible;
}

.bc-command-offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1040;
  width: min(380px, 88vw);
  height: 100vh;
  height: 100dvh;
  padding: 0;
  background:
    radial-gradient(circle at top left, rgba(80, 197, 255, 0.16), transparent 30%),
    linear-gradient(160deg, var(--bc-dark-1), var(--bc-dark-2));
  border-left: 1px solid rgba(80, 197, 255, 0.18);
  /* box-shadow: -24px 0 60px rgba(0, 0, 0, 0.45); */
  transform: translateX(105%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.bc-command-offcanvas.show {
  transform: translateX(0);
}

.bc-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 86px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.bc-mobile-close {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(80, 197, 255, 0.24);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  cursor: pointer;
}

.bc-command-mobile-list {
  display: grid;
  gap: 8px;
  padding: 18px 20px 24px;
}

.bc-command-mobile-link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--bc-dark-text);
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.bc-command-mobile-link i {
  width: 18px;
  color: var(--bc-accent);
}

.bc-command-mobile-link:hover {
  color: #ffffff;
  background: rgba(80, 197, 255, 0.12);
  border-color: rgba(80, 197, 255, 0.24);
}

.bc-command-mobile-link.active,
.bc-mobile-account {
  background: var(--bc-accent);
  border-color: var(--bc-accent);
  color: var(--bc-dark-2);
}

.bc-command-mobile-link.active i,
.bc-mobile-account i {
  color: var(--bc-dark-2);
}


/* ==========================================================================
   6. Hero
   ========================================================================== */

.u-dash-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - var(--bc-header-h));
  padding: 110px 0 78px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bc-dark-1);
  color: #ffffff;
}

.u-dash-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.u-dash-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1s ease, transform 6s ease;
}

.u-dash-hero-bg img.active {
  opacity: 1;
  transform: scale(1);
}

.u-dash-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 18%, rgba(80, 197, 255, 0.28), transparent 34%),
    linear-gradient(180deg,
      rgba(12, 22, 48, 0.96) 0%,
      rgba(12, 22, 48, 0.90) 52%,
      rgba(12, 22, 48, 0.76) 100%);
}

.u-dash-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
}

.u-dash-hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.u-dash-hero-content {
  width: min(100%, 1040px);
  margin-inline: auto;
  text-align: center;
}

.u-dash-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  max-width: 100%;
  padding: 8px 14px;
  border: 1px solid rgba(80, 197, 255, 0.28);
  border-radius: var(--bc-radius-pill);
  background: rgba(80, 197, 255, 0.14);
  color: var(--bc-accent-on-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.u-dash-hero h1 {
  max-width: 980px;
  margin: 18px auto 14px;
  color: #ffffff;
  font-size: clamp(2.25rem, 5vw, 4.65rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.u-dash-hero p {
  max-width: 860px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  line-height: 1.8;
}

.u-dash-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.u-dash-btn {
  min-height: 46px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: var(--bc-radius-md);
  font-weight: 800;
  text-decoration: none;
  transition: 0.25s ease;
}

.u-dash-btn-primary {
  background: var(--bc-accent);
  color: #ffffff;
  box-shadow: var(--bc-shadow-accent);
}

.u-dash-btn-light {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.u-dash-btn:hover {
  transform: translateY(-2px);
  color: #ffffff;
}

/* Stats strip */
.u-dash-hero-strip {
  width: min(100%, 880px);
  margin: 34px auto 0;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.u-dash-strip-intro {
  flex: 1.2;
  min-width: 260px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-radius: var(--bc-radius-lg);
  background: rgba(255, 255, 255, 0.08);
  text-align: left;
}

.u-dash-strip-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--bc-accent);
  color: var(--bc-dark-1);
  font-size: 1.25rem;
}

.u-dash-strip-intro small {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.u-dash-strip-intro strong {
  display: block;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.25;
}

.u-dash-strip-stats {
  flex: 1.8;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.u-dash-strip-stats>div {
  min-height: 74px;
  padding: 13px 12px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--bc-radius-lg);
  background: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.u-dash-strip-stats strong {
  display: block;
  color: var(--bc-dark-1);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.1;
}

.u-dash-strip-stats span {
  display: block;
  margin-top: 5px;
  color: var(--bc-muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* ==========================================================================
   7. Surface card utility
   ========================================================================== */

.bc-surface {
  background: var(--bc-card-gradient);
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius-xl);
  box-shadow: var(--bc-shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.bc-surface:hover {
  transform: translateY(-4px);
  box-shadow: var(--bc-shadow-lg);
  border-color: rgba(80, 197, 255, 0.20);
}


/* ==========================================================================
   8. About
   ========================================================================== */

.about {
  overflow: hidden;
}

.about .content-wrapper {
  padding-right: 1rem;
}

.about .section-header {
  margin-bottom: 1.75rem;
}

.about .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(80, 197, 255, 0.20);
  border-radius: var(--bc-radius-pill);
  background: var(--bc-accent-soft);
  color: var(--bc-accent-text-soft);
  font-family: var(--bc-font-nav);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about .section-header h2 {
  max-width: 760px;
  margin: 0;
  color: var(--bc-heading);
  font-family: var(--bc-font-head);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.about .lead-text {
  max-width: 760px;
  margin: 18px 0;
  color: var(--bc-heading);
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  font-weight: 600;
  line-height: 1.65;
}

.about .description-text {
  max-width: 780px;
  margin-bottom: 1.4rem;
  color: var(--bc-text);
  font-size: 0.96rem;
  line-height: 1.75;
}

/* Mini info tiles */
.about .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.about .stats-grid .stat-item {
  position: relative;
  overflow: hidden;
  min-height: 122px;
  padding: 18px;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius-lg);
  background: var(--bc-card-gradient);
  transition: 0.25s ease;
}

.about .stats-grid .stat-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--bc-accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.25s ease;
}

.about .stats-grid .stat-item:hover {
  transform: translateY(-2px);
  border-color: rgba(80, 197, 255, 0.30);
  box-shadow: var(--bc-shadow-sm);
}

.about .stats-grid .stat-item:hover::before {
  transform: scaleY(1);
}

.about .stats-grid .stat-number {
  display: block;
  margin-bottom: 6px;
  color: var(--bc-accent);
  font-family: var(--bc-font-nav);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about .stats-grid .stat-label {
  display: block;
  color: var(--bc-text);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* Visual side */
.about .visual-section {
  position: relative;
}

.about .main-image-container {
  position: relative;
  margin-bottom: 2rem;
}

.about .main-visual {
  width: 100%;
  min-height: 340px;
  max-height: 520px;
  object-fit: cover;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius-xl);
  box-shadow: var(--bc-shadow-md);
}

.about .overlay-card {
  position: absolute;
  bottom: -28px;
  left: -20px;
  width: min(100%, 290px);
  padding: 18px;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius-lg);
  background: var(--bc-card-gradient);
  box-shadow: var(--bc-shadow-md);
}

.about .overlay-card .card-content {
  position: relative;
  padding-right: 50px;
}

.about .overlay-card h4 {
  margin: 0 0 6px;
  color: var(--bc-heading);
  font-family: var(--bc-font-head);
  font-size: 1rem;
  font-weight: 700;
}

.about .overlay-card p {
  margin: 0;
  color: var(--bc-muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.about .overlay-card .card-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--bc-radius-sm);
  background: var(--bc-accent);
  color: #ffffff;
}

.about .secondary-images {
  margin-top: 1rem;
}

.about .secondary-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius-md);
  box-shadow: var(--bc-shadow-xs);
  transition: 0.3s ease;
}

.about .secondary-img:hover {
  transform: translateY(-3px);
  box-shadow: var(--bc-shadow-sm);
}

/* Mission / Vision / Values feature box */
.about .feature-box {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 26px;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius-xl);
  background: var(--bc-card-gradient);
  box-shadow: var(--bc-shadow-sm);
  text-align: left;
  transition: 0.28s ease;
}

.about .feature-box::after {
  content: "";
  position: absolute;
  top: -38px;
  right: -32px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80, 197, 255, 0.12) 0%, transparent 72%);
  pointer-events: none;
}

.about .feature-box:hover {
  transform: translateY(-5px);
  border-color: rgba(80, 197, 255, 0.30);
  box-shadow: var(--bc-shadow-lg);
}

.about .feature-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--bc-radius-lg);
  background: var(--bc-accent-soft);
  color: var(--bc-accent);
  font-size: 1.4rem;
}

.about .feature-box h5 {
  margin: 0 0 10px;
  color: var(--bc-heading);
  font-family: var(--bc-font-head);
  font-size: 1.1rem;
  font-weight: 700;
}

.about .feature-box p {
  margin: 0;
  color: var(--bc-text);
  font-size: 0.94rem;
  line-height: 1.7;
}


/* ==========================================================================
   9. Features (tabs)
   ========================================================================== */

.features {
  overflow: hidden;
}

.features .tabs-wrapper {
  padding: 28px;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius-2xl);
  background: var(--bc-card-gradient);
  box-shadow: var(--bc-shadow-sm);
}

.features-tabs-area {
  position: relative;
}

.features .nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border: 0;
  border-bottom: 1px solid var(--bc-line);
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.features .nav-tabs::-webkit-scrollbar {
  display: none;
}

.features .nav-item {
  flex: 1 1 auto;
  min-width: 210px;
  scroll-snap-align: start;
}

.features .nav-link {
  width: 100%;
  min-height: 78px;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius-lg);
  background: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: 0.25s ease;
}

.features .nav-link::before {
  display: none;
}

.features .tab-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--bc-radius-md);
  background: var(--bc-accent-soft);
  color: var(--bc-accent);
  font-size: 1.1rem;
  transition: 0.25s ease;
}

.features .tab-icon i {
  color: var(--bc-accent);
  font-size: 1.15rem;
}

.features .tab-content {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.features .tab-content h5 {
  margin: 0 0 3px;
  color: var(--bc-heading);
  font-family: var(--bc-font-head);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.25;
}

.features .tab-content span {
  display: block;
  color: var(--bc-muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.features .nav-link:hover {
  transform: translateY(-2px);
  border-color: rgba(80, 197, 255, 0.45);
  box-shadow: var(--bc-shadow-sm);
}

.features .nav-link.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--bc-accent), #2196d4);
  box-shadow: 0 12px 28px rgba(80, 197, 255, 0.30);
}

.features .nav-link.active .tab-icon {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.features .nav-link.active .tab-icon i,
.features .nav-link.active .tab-content h5 {
  color: #ffffff;
}

.features .nav-link.active .tab-content span {
  color: rgba(255, 255, 255, 0.85);
}

/* Scroll hint (mobile/tablet) */
.features-scroll-hint {
  display: none;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin: -8px 0 16px;
  padding: 7px 12px;
  border: 1px solid rgba(80, 197, 255, 0.20);
  border-radius: var(--bc-radius-pill);
  background: rgba(80, 197, 255, 0.10);
  color: var(--bc-accent);
  font-size: 0.74rem;
  font-weight: 800;
  cursor: pointer;
}

.features-scroll-hint i {
  font-size: 0.95rem;
  animation: featuresArrowMove 1.1s ease-in-out infinite;
}

.features-scroll-hint.is-left i {
  animation-name: featuresArrowMoveLeft;
}

@keyframes featuresArrowMove {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5px);
  }
}

@keyframes featuresArrowMoveLeft {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-5px);
  }
}

/* Tab body */
.features .tab-content .tab-pane {
  padding: 14px 4px 4px;
}

.features .content-wrapper {
  padding-right: 32px;
}

.features .icon-badge {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--bc-radius-lg);
  background: var(--bc-accent-soft);
  color: var(--bc-accent);
  font-size: 1.4rem;
}

.features .icon-badge i {
  color: var(--bc-accent);
  font-size: 1.4rem;
}

.features .content-wrapper h3 {
  margin: 0 0 14px;
  color: var(--bc-heading);
  font-family: var(--bc-font-head);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.features .content-wrapper p {
  margin: 0 0 22px;
  color: var(--bc-text);
  font-size: 0.98rem;
  line-height: 1.75;
}

.features .feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.features .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(80, 197, 255, 0.12);
  border-radius: var(--bc-radius-md);
  background: rgba(80, 197, 255, 0.055);
  color: var(--bc-text);
  font-size: 0.9rem;
  line-height: 1.45;
}

.features .feature-item i {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bc-accent-soft);
  color: var(--bc-accent);
  font-size: 0.75rem;
}

/* Visual side */
.features .visual-content {
  position: relative;
}

.features .main-image {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius-xl);
  box-shadow: var(--bc-shadow-md);
}

.features .main-image img {
  display: block;
  width: 100%;
  min-height: 320px;
  max-height: 560px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.features .main-image:hover img {
  transform: scale(1.03);
}

.features .floating-card {
  position: absolute;
  bottom: 22px;
  left: 22px;
  max-width: calc(100% - 44px);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.80);
  border-radius: var(--bc-radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(8px);
}

.features .floating-card i {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--bc-radius-sm);
  background: var(--bc-accent-soft);
  color: var(--bc-accent);
  font-size: 1.1rem;
}

.features .floating-card .card-content span {
  display: block;
  margin-bottom: 2px;
  color: var(--bc-muted);
  font-family: var(--bc-font-nav);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.features .floating-card .card-content strong {
  display: block;
  color: var(--bc-heading);
  font-family: var(--bc-font-head);
  font-size: 0.95rem;
  font-weight: 700;
}


/* ==========================================================================
   10. Features 2 — "Why BuildCost"
   ========================================================================== */

.features-2 {
  overflow: hidden;
}

.features-2 .section-title {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

.features-2 .section-title .description-title {
  display: inline-flex;
  justify-content: center;
  margin-inline: auto;
}

.features-2 .section-title h2,
.features-2 .section-title p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.features-2 .row.g-4 {
  --bs-gutter-x: 1.35rem;
  --bs-gutter-y: 1.35rem;
}

.features-2 .feature-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 215px;
  padding: 26px 24px;
  border: 1px solid rgba(80, 197, 255, 0.12);
  border-radius: var(--bc-radius-2xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.05),
    0 2px 10px rgba(15, 23, 42, 0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.features-2 .feature-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80, 197, 255, 0.14) 0%, transparent 72%);
  pointer-events: none;
}

.features-2 .feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(80, 197, 255, 0.22);
  box-shadow:
    0 22px 45px rgba(15, 23, 42, 0.10),
    0 8px 20px rgba(80, 197, 255, 0.08);
}

.features-2 .feature-card.highlighted {
  background: linear-gradient(145deg, rgba(237, 248, 255, 0.98), rgba(247, 251, 255, 0.98));
  border-color: rgba(80, 197, 255, 0.25);
}

.features-2 .feature-icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--bc-radius-lg);
  background: linear-gradient(145deg, rgba(80, 197, 255, 0.16), rgba(80, 197, 255, 0.08));
  color: var(--bc-accent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.40);
}

.features-2 .feature-icon i {
  color: var(--bc-accent);
  font-size: 1.35rem;
}

.features-2 h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  color: var(--bc-heading);
  font-family: var(--bc-font-head);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.features-2 p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.82;
}

/* Inline testimonial */
.features-2 .feature-testimonial {
  margin-top: 3rem;
  overflow: hidden;
  border: 1px solid rgba(80, 197, 255, 0.12);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.features-2 .testimonial-image {
  height: 100%;
}

.features-2 .testimonial-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.features-2 .testimonial-content {
  height: 100%;
  padding: 50px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.features-2 .quote-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--bc-radius-lg);
  background: linear-gradient(145deg, rgba(80, 197, 255, 0.16), rgba(80, 197, 255, 0.08));
}

.features-2 .quote-icon i {
  color: var(--bc-accent);
  font-size: 1.45rem;
}

.features-2 .testimonial-content p {
  margin-bottom: 24px;
  color: var(--bc-heading);
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 1.9;
}

.features-2 .testimonial-author h4 {
  margin: 0 0 4px;
  color: var(--bc-heading);
  font-size: 1.05rem;
  font-weight: 800;
}

.features-2 .testimonial-author span {
  color: #64748b;
  font-size: 0.86rem;
}


/* ==========================================================================
   11. Call-to-action (dark band)
   ========================================================================== */

.call-to-action {
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 80% 20%, rgba(80, 197, 255, 0.22), transparent 32%),
    linear-gradient(135deg, var(--bc-dark-1) 0%, var(--bc-dark-2) 100%);
  color: rgba(255, 255, 255, 0.90);
}

.call-to-action::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
}

.call-to-action>.container {
  position: relative;
  z-index: 1;
}

.call-to-action .image-wrapper {
  position: relative;
}

.call-to-action .image-wrapper .main-image {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--bc-radius-xl);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.40);
}

.call-to-action .floating-card {
  position: absolute;
  top: 50%;
  right: -24px;
  z-index: 3;
  max-width: 280px;
  padding: 24px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--bc-radius-lg);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.call-to-action .floating-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: var(--bc-radius-sm);
  background: rgba(80, 197, 255, 0.18);
  color: var(--bc-accent);
  font-size: 1.25rem;
}

.call-to-action .floating-card h4 {
  margin: 0 0 6px;
  color: #ffffff;
  font-family: var(--bc-font-head);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.call-to-action .floating-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.86rem;
  line-height: 1.55;
}

.call-to-action .content-area h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-family: var(--bc-font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.call-to-action .content-area>p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.75;
}

.call-to-action .feature-list {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.call-to-action .feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.96rem;
}

.call-to-action .feature-list li i {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(80, 197, 255, 0.22);
  color: var(--bc-accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.call-to-action .btn-cta {
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--bc-accent);
  border-radius: var(--bc-radius-md);
  background: var(--bc-accent);
  color: #ffffff;
  font-family: var(--bc-font-nav);
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(80, 197, 255, 0.34);
  transition: 0.22s ease;
}

.call-to-action .btn-cta:hover {
  transform: translateY(-2px);
  background: var(--bc-accent-hover);
  border-color: var(--bc-accent-hover);
  color: #ffffff;
}


/* ==========================================================================
   12. Clients strip
   ========================================================================== */

.clients .swiper {
  padding: 12px 0;
}

.clients .swiper-wrapper {
  height: auto;
  align-items: center;
}

.clients .swiper-slide img {
  max-height: 60px;
  width: auto;
  margin: 0 auto;
  opacity: 0.7;
  filter: grayscale(15%);
  transition: 0.3s ease;
}

.clients .swiper-slide img:hover {
  transform: scale(1.05);
  opacity: 1;
  filter: none;
}


/* ==========================================================================
   13. Testimonials
   ========================================================================== */

.testimonials .testimonial-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonials .testimonial-masonry::before {
  display: none;
}

.testimonials .testimonial-item {
  margin: 0 !important;
}

.testimonials .testimonial-content {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 26px;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius-xl);
  background: var(--bc-card-gradient);
  box-shadow: var(--bc-shadow-sm);
  transition: 0.28s ease;
}

.testimonials .testimonial-content:hover {
  transform: translateY(-4px);
  border-color: rgba(80, 197, 255, 0.30);
  box-shadow: var(--bc-shadow-lg);
}

.testimonials .testimonial-item.highlight .testimonial-content {
  border-color: rgba(80, 197, 255, 0.32);
  background: linear-gradient(180deg, rgba(232, 247, 255, 0.96), rgba(244, 249, 252, 0.98));
}

.testimonials .quote-pattern {
  position: static;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--bc-radius-md);
  background: var(--bc-accent-soft);
}

.testimonials .quote-pattern i {
  font-size: 1.2rem;
  color: var(--bc-accent);
}

.testimonials .testimonial-content p {
  margin: 0 0 22px;
  color: var(--bc-text);
  font-size: 0.96rem;
  line-height: 1.75;
}

.testimonials .client-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--bc-line);
}

.testimonials .client-image {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius-md);
  background: var(--bc-accent-soft);
}

.testimonials .client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials .client-details h3 {
  margin: 0 0 2px;
  color: var(--bc-heading);
  font-family: var(--bc-font-head);
  font-size: 1rem;
  font-weight: 700;
}

.testimonials .client-details .position {
  color: var(--bc-muted);
  font-size: 0.8rem;
}


/* ==========================================================================
   14. Stats — dashboard cards
   ========================================================================== */

.stats {
  /* plain (white) section inherits default */
}

.stats .main-headline {
  margin: 0 0 16px;
  color: var(--bc-heading);
  font-family: var(--bc-font-head);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.stats .main-description {
  max-width: 640px;
  margin: 0 auto 28px;
  color: var(--bc-text);
  font-size: 1rem;
  line-height: 1.7;
}

.stats .achievement-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px 8px 8px;
  margin-bottom: 40px;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius-pill);
  background: var(--bc-card-gradient);
  box-shadow: var(--bc-shadow-sm);
}

.stats .achievement-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stats .achievement-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bc-accent-soft);
  color: var(--bc-accent);
}

.stats .achievement-icon i {
  color: var(--bc-accent);
  font-size: 1rem;
}

.stats .achievement-details {
  text-align: left;
}

.stats .achievement-title {
  margin: 0;
  color: var(--bc-heading);
  font-family: var(--bc-font-head);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
}

.stats .achievement-subtitle {
  color: var(--bc-muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

.stats .stats-grid {
  margin-top: 0;
}

.stats .stat-item {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 26px 22px;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius-xl);
  background: var(--bc-card-gradient);
  box-shadow: var(--bc-shadow-sm);
  text-align: left;
  transition: 0.28s ease;
}

.stats .stat-item::after {
  content: "";
  position: absolute;
  top: -36px;
  right: -28px;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80, 197, 255, 0.14) 0%, transparent 72%);
  pointer-events: none;
}

.stats .stat-item:hover {
  transform: translateY(-5px);
  border-color: rgba(80, 197, 255, 0.30);
  box-shadow: var(--bc-shadow-lg);
}

.stats .stat-item.featured {
  border-color: var(--bc-dark-1);
  background: linear-gradient(135deg, var(--bc-dark-1), var(--bc-dark-2));
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(12, 22, 48, 0.32);
}

.stats .stat-item.featured::after {
  background: radial-gradient(circle, rgba(80, 197, 255, 0.28) 0%, transparent 72%);
}

.stats .stat-item.featured .stat-icon {
  background: rgba(80, 197, 255, 0.20);
}

.stats .stat-item.featured .stat-icon i,
.stats .stat-item.featured .stat-growth i {
  color: var(--bc-accent);
}

.stats .stat-item.featured .stat-number {
  color: #ffffff;
}

.stats .stat-item.featured .stat-label {
  color: rgba(255, 255, 255, 0.92);
}

.stats .stat-item.featured .stat-growth {
  color: rgba(255, 255, 255, 0.66);
}

.stats .stat-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--bc-radius-md);
  background: var(--bc-accent-soft);
  color: var(--bc-accent);
}

.stats .stat-icon i {
  color: var(--bc-accent);
  font-size: 1.3rem;
}

.stats .stat-number {
  margin-bottom: 8px;
  color: var(--bc-heading);
  font-family: var(--bc-font-head);
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
}

.stats .stat-label {
  margin-bottom: 10px;
  color: var(--bc-heading);
  font-family: var(--bc-font-head);
  font-size: 1rem;
  font-weight: 700;
}

.stats .stat-growth {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--bc-muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.stats .stat-growth i {
  color: var(--bc-success);
  font-size: 0.78rem;
}


/* ==========================================================================
   15. Services / Explore
   ========================================================================== */

.services {
  padding: 88px 0;
}

.services .intro-content {
  padding-right: 1rem;
}

.services .intro-content .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(80, 197, 255, 0.20);
  border-radius: var(--bc-radius-pill);
  background: var(--bc-accent-soft);
  color: var(--bc-accent-text-soft);
  font-family: var(--bc-font-nav);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.services .intro-content .section-badge i {
  font-size: 0.7rem;
}

.services .intro-content .section-heading {
  margin: 0 0 16px;
  color: var(--bc-heading);
  font-family: var(--bc-font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.services .intro-content .section-description {
  margin: 0 0 28px;
  color: var(--bc-text);
  font-size: 1.02rem;
  line-height: 1.75;
}

.services .intro-content .cta-button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--bc-accent);
  border-radius: var(--bc-radius-md);
  background: var(--bc-accent);
  color: #ffffff;
  font-family: var(--bc-font-nav);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(80, 197, 255, 0.28);
  transition: 0.22s ease;
}

.services .intro-content .cta-button:hover {
  transform: translateY(-2px);
  background: var(--bc-accent-hover);
  border-color: var(--bc-accent-hover);
  color: #ffffff;
}

.services .hero-visual img {
  width: 100%;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius-xl);
  box-shadow: var(--bc-shadow-md);
}


/* ==========================================================================
   16. Pricing
   ========================================================================== */

.pricing .price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px 28px;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius-xl);
  background: var(--bc-card-gradient);
  box-shadow: var(--bc-shadow-sm);
  transition: 0.28s ease;
}

.pricing .price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(80, 197, 255, 0.30);
  box-shadow: var(--bc-shadow-lg);
}

.pricing .price-card.featured {
  border-color: rgba(80, 197, 255, 0.50);
  background:
    radial-gradient(1200px 1200px at 110% -10%, rgba(80, 197, 255, 0.10) 0%, transparent 50%),
    var(--bc-card-gradient);
  box-shadow:
    0 0 0 1px rgba(80, 197, 255, 0.32),
    var(--bc-shadow-md);
}

.pricing .ribbon {
  position: absolute;
  top: -14px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--bc-radius-pill);
  background: var(--bc-accent);
  color: #ffffff;
  font-family: var(--bc-font-nav);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(80, 197, 255, 0.32);
}

.pricing .ribbon i {
  font-size: 0.72rem;
}

.pricing .card-head {
  padding-bottom: 6px;
  margin-bottom: 18px;
  text-align: left;
}

.pricing .badge-title {
  display: inline-block;
  padding: 5px 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(80, 197, 255, 0.20);
  border-radius: var(--bc-radius-pill);
  background: var(--bc-accent-soft);
  color: var(--bc-accent);
  font-family: var(--bc-font-nav);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing .price-card .title {
  margin: 0 0 8px;
  color: var(--bc-heading);
  font-family: var(--bc-font-head);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.pricing .price-card .subtitle {
  margin: 0 0 18px;
  color: var(--bc-muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.pricing .price-wrap {
  padding: 18px 0;
  margin: 0 0 18px;
  border-top: 1px solid var(--bc-line);
  border-bottom: 1px solid var(--bc-line);
}

.pricing .price-wrap .currency {
  display: block;
  margin-bottom: 4px;
  color: var(--bc-muted);
  font-family: var(--bc-font-nav);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing .price-wrap .amount {
  display: block;
  color: var(--bc-heading);
  font-family: var(--bc-font-head);
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.pricing .price-wrap .period {
  display: block;
  margin-top: 4px;
  color: var(--bc-muted);
  font-size: 0.86rem;
}

.pricing .price-card .feature-list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.pricing .price-card .feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  color: var(--bc-text);
  font-size: 0.92rem;
}

.pricing .price-card .feature-list li i {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bc-accent-soft);
  color: var(--bc-accent);
  font-size: 0.78rem;
}

.pricing .cta {
  margin-top: auto;
}

.pricing .btn-choose {
  width: 100%;
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid var(--bc-accent);
  border-radius: var(--bc-radius-md);
  background: transparent;
  color: var(--bc-accent);
  font-family: var(--bc-font-nav);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.22s ease;
}

.pricing .btn-choose:hover {
  transform: translateY(-2px);
  background: var(--bc-accent);
  border-color: var(--bc-accent);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(80, 197, 255, 0.28);
}

.pricing .featured .btn-choose {
  background: var(--bc-accent);
  border-color: var(--bc-accent);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(80, 197, 255, 0.28);
}

.pricing .featured .btn-choose:hover {
  background: var(--bc-accent-hover);
  border-color: var(--bc-accent-hover);
}


/* ==========================================================================
   17. FAQ
   ========================================================================== */

.faq {
  overflow: hidden;
}

.faq .section-title {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

.faq .section-title .description-title {
  display: inline-flex;
  justify-content: center;
  margin-inline: auto;
}

.faq .faq-container {
  display: grid;
  gap: 14px;
}

.faq .faq-item {
  position: relative;
  overflow: hidden;
  padding: 22px 60px 22px 24px;
  border: 1px solid rgba(80, 197, 255, 0.12);
  border-radius: var(--bc-radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.045),
    0 2px 10px rgba(15, 23, 42, 0.035);
  transition: 0.25s ease;
}

.faq .faq-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--bc-accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.25s ease;
}

.faq .faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(80, 197, 255, 0.28);
  box-shadow:
    0 18px 38px rgba(15, 23, 42, 0.07),
    0 5px 16px rgba(80, 197, 255, 0.07);
}

.faq .faq-item h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--bc-heading);
  font-family: var(--bc-font-head);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.45;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq .faq-item h3:hover {
  color: var(--bc-accent);
}

.faq .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  opacity: 0;
  transition: grid-template-rows 0.3s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.faq .faq-content p {
  margin: 0;
  overflow: hidden;
  color: var(--bc-text);
  font-size: 0.96rem;
  line-height: 1.75;
}

.faq .faq-toggle {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--bc-radius-md);
  background: var(--bc-accent-soft);
  color: var(--bc-accent);
  font-size: 0.92rem;
  cursor: pointer;
  transition: 0.25s ease;
}

.faq .faq-active {
  border-color: rgba(80, 197, 255, 0.34);
  background:
    radial-gradient(circle at top right, rgba(80, 197, 255, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(237, 248, 255, 0.98), rgba(247, 251, 255, 0.98));
  box-shadow:
    0 18px 42px rgba(15, 23, 42, 0.07),
    0 6px 18px rgba(80, 197, 255, 0.08);
}

.faq .faq-active::before {
  transform: scaleY(1);
}

.faq .faq-active h3 {
  color: var(--bc-accent);
}

.faq .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 14px;
}

.faq .faq-active .faq-toggle {
  background: var(--bc-accent);
  color: #ffffff;
  transform: rotate(90deg);
}


/* ==========================================================================
   18. Team
   ========================================================================== */

.team {
  /* plain (white) section inherits default */
}

.team-member {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius-xl);
  background: var(--bc-card-gradient);
  box-shadow: var(--bc-shadow-sm);
  transition: 0.28s ease;
}

.team-member:hover {
  transform: translateY(-6px);
  border-color: rgba(80, 197, 255, 0.30);
  box-shadow: var(--bc-shadow-lg);
}

.member-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bc-accent-soft);
}

.member-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .member-img img {
  transform: scale(1.04);
}

.member-socials {
  position: absolute;
  bottom: 14px;
  left: 50%;
  z-index: 2;
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
  transition: 0.3s ease;
}

.team-member:hover .member-socials {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.member-socials a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius-md);
  background: #ffffff;
  color: var(--bc-heading);
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  transition: 0.2s ease;
}

.member-socials a:hover {
  transform: translateY(-2px);
  background: var(--bc-accent);
  border-color: var(--bc-accent);
  color: #ffffff;
}

.member-info {
  padding: 22px;
  text-align: center;
}

.member-info h4 {
  margin: 0 0 4px;
  color: var(--bc-heading);
  font-family: var(--bc-font-head);
  font-size: 1.05rem;
  font-weight: 700;
}

.member-info span {
  display: block;
  margin-bottom: 10px;
  color: var(--bc-accent);
  font-family: var(--bc-font-nav);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.member-info p {
  margin: 0;
  color: var(--bc-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}


/* ==========================================================================
   19. Contact
   ========================================================================== */

.contact .section-category {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid rgba(80, 197, 255, 0.20);
  border-radius: var(--bc-radius-pill);
  background: var(--bc-accent-soft);
  color: var(--bc-accent-text-soft);
  font-family: var(--bc-font-nav);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact .content h2 {
  margin-top: 6px;
  color: var(--bc-heading);
  font-family: var(--bc-font-head);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.contact .content .lead {
  color: var(--bc-text);
  font-size: 1.02rem;
  line-height: 1.7;
}

.contact .contact-info {
  margin-top: 2rem !important;
}

.contact .contact-info .info-item {
  align-items: center !important;
  margin-bottom: 12px !important;
  padding: 14px 18px;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius-md);
  background: var(--bc-card-gradient);
  box-shadow: var(--bc-shadow-xs);
  transition: 0.2s ease;
}

.contact .contact-info .info-item:hover {
  border-color: rgba(80, 197, 255, 0.30);
  transform: translateX(4px);
}

.contact .contact-info .info-item i {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin-right: 14px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--bc-radius-sm);
  background: var(--bc-accent-soft);
  color: var(--bc-accent);
  font-size: 1.05rem;
}

.contact .contact-info .info-item span {
  color: var(--bc-heading);
  font-weight: 500;
  word-break: break-word;
}

/* Form */
.contact .contact-form {
  overflow: hidden;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius-xl);
  background: var(--bc-card-gradient);
  box-shadow: var(--bc-shadow-md);
}

.contact .contact-form .card-body {
  padding: 32px;
}

.contact .contact-form .form-control {
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius-md);
  background: #ffffff;
  color: var(--bc-heading);
  font-size: 0.96rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact .contact-form textarea.form-control {
  min-height: 140px;
  padding: 14px 16px;
  resize: vertical;
}

.contact .contact-form .form-control:focus {
  outline: none;
  border-color: rgba(80, 197, 255, 0.65);
  box-shadow: 0 0 0 4px rgba(80, 197, 255, 0.12);
}

.contact .contact-form .form-control::placeholder {
  color: var(--bc-muted);
}

.contact .contact-form .btn-submit {
  width: 100%;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--bc-accent);
  border-radius: var(--bc-radius-md);
  background: var(--bc-accent);
  color: #ffffff;
  font-family: var(--bc-font-nav);
  font-size: 0.96rem;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(80, 197, 255, 0.24);
  transition: 0.22s ease;
}

.contact .contact-form .btn-submit:hover {
  transform: translateY(-2px);
  background: var(--bc-accent-hover);
  border-color: var(--bc-accent-hover);
  color: #ffffff;
}

.php-email-form .error-message,
.php-email-form .sent-message,
.php-email-form .loading {
  display: none;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: var(--bc-radius-md);
  font-weight: 600;
}

.php-email-form .error-message {
  border: 1px solid rgba(220, 53, 69, 0.18);
  background: var(--bc-danger-bg);
  color: var(--bc-danger);
  text-align: left;
}

.php-email-form .sent-message {
  border: 1px solid rgba(22, 163, 74, 0.18);
  background: var(--bc-success-bg);
  color: var(--bc-success);
  text-align: center;
}

.php-email-form .loading {
  border: 1px solid var(--bc-line);
  background: #ffffff;
  text-align: center;
}

.php-email-form .loading::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0 10px -4px 0;
  border: 2px solid var(--bc-accent);
  border-top-color: transparent;
  border-radius: 50%;
  animation: bc-spin 0.85s linear infinite;
}

@keyframes bc-spin {
  to {
    transform: rotate(360deg);
  }
}


/* ==========================================================================
   20. Footer
   ========================================================================== */

:root {
  --boq-footer-bg: #0c1630;
  --boq-footer-accent: #56b6e9;
  --boq-footer-accent-hover: #3aa3db;
  --boq-footer-white: #ffffff;
  --boq-footer-text: rgba(255, 255, 255, 0.82);
  --boq-footer-soft: rgba(255, 255, 255, 0.72);
  --boq-footer-muted: rgba(255, 255, 255, 0.66);
  --boq-footer-border: rgba(255, 255, 255, 0.08);
  --boq-footer-card: rgba(255, 255, 255, 0.045);
  --boq-footer-input-text: #0c1630;
}

.footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(80, 197, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(86, 182, 233, 0.12), transparent 30%),
    radial-gradient(circle at bottom left, rgba(86, 182, 233, 0.08), transparent 32%),
    linear-gradient(90deg, var(--boq-footer-bg) 0%, var(--boq-footer-bg) 45%, var(--boq-footer-bg) 100%);
  color: var(--boq-footer-text);
  font-size: 14px;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.footer .footer-top,
.footer .copyright {
  position: relative;
  z-index: 2;
}

.footer .footer-top {
  padding: 56px 0 24px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--boq-footer-white);
  text-decoration: none;
}

.footer-logo-mark {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(86, 182, 233, 0.22);
  border-radius: var(--bc-radius-lg);
  background: rgba(86, 182, 233, 0.10);
  box-shadow: 0 8px 22px rgba(86, 182, 233, 0.16);
  transition: 0.25s ease;
}

.footer-logo-mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-logo-text {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  color: var(--boq-footer-white);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  white-space: nowrap;
}

.footer-logo-text span {
  color: var(--boq-footer-accent);
}

.footer-logo:hover .footer-logo-mark {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(86, 182, 233, 0.26);
}

.footer-desc {
  max-width: 400px;
  margin: 0 0 18px;
  color: var(--boq-footer-soft);
  font-size: 14px;
  line-height: 1.82;
}

.footer-contact {
  display: grid;
  gap: 10px;
  padding-top: 4px;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.65;
}

.footer-contact i {
  width: 18px;
  min-width: 18px;
  margin-top: 2px;
  color: var(--boq-footer-accent);
  font-size: 15px;
  text-align: center;
}

.footer-contact strong {
  color: var(--boq-footer-white);
  font-weight: 600;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.25s ease;
  word-break: break-word;
}

.footer-contact a:hover {
  color: var(--boq-footer-accent);
}

.footer h4 {
  position: relative;
  margin-bottom: 16px;
  padding-bottom: 10px;
  color: var(--boq-footer-white);
  font-size: 17px;
  font-weight: 700;
}

.footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  border-radius: var(--bc-radius-pill);
  background: linear-gradient(90deg, var(--boq-footer-accent), transparent);
}

.footer-links {
  margin-bottom: 24px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
}

.footer-links ul li:first-child {
  padding-top: 0;
}

.footer-links ul i {
  color: var(--boq-footer-accent);
  font-size: 12px;
  transition: transform 0.25s ease;
}

.footer-links ul a {
  position: relative;
  display: inline-block;
  color: var(--boq-footer-soft);
  line-height: 1.45;
  transition: color 0.25s ease;
}

.footer-links ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--boq-footer-accent);
  transition: width 0.25s ease;
}

.footer-links ul li:hover i {
  transform: translateX(3px);
}

.footer-links ul a:hover {
  color: var(--boq-footer-white);
}

.footer-links ul a:hover::after {
  width: 100%;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(80, 197, 255, 0.28);
  border-radius: 50%;
  background: var(--boq-footer-card);
  color: var(--boq-footer-accent);
  transition: 0.25s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  background: var(--boq-footer-accent);
  border-color: var(--boq-footer-accent);
  color: var(--boq-footer-white);
}

.subscribe-note {
  margin-bottom: 14px;
  color: var(--boq-footer-soft);
  line-height: 1.72;
}

.footer .form-label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
}

.footer .subscribe-methods {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer .subscribe-methods .form-check {
  margin: 0;
  padding: 0;
}

.footer .subscribe-methods label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.footer .subscribe-methods .form-check-input {
  margin: 0;
  border-color: rgba(255, 255, 255, 0.70);
  background-color: transparent;
  box-shadow: none;
  cursor: pointer;
}

.footer .subscribe-methods .form-check-input:checked {
  background-color: var(--boq-footer-accent);
  border-color: var(--boq-footer-accent);
}

.footer .subscribe-methods i {
  color: var(--boq-footer-accent);
  font-size: 14px;
}

.subscribe-input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--bc-radius-md);
  background: var(--boq-footer-white);
  color: var(--boq-footer-input-text);
  box-shadow: none;
}

.subscribe-input:focus {
  border-color: rgba(86, 182, 233, 0.65);
  box-shadow: 0 0 0 4px rgba(86, 182, 233, 0.10);
}

.subscribe-btn {
  width: 100%;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--boq-footer-accent);
  border-radius: var(--bc-radius-md);
  background: var(--boq-footer-accent);
  color: var(--boq-footer-white);
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(86, 182, 233, 0.18);
  transition: 0.25s ease;
  cursor: pointer;
}

.subscribe-btn:hover {
  transform: translateY(-1px);
  background: var(--boq-footer-accent-hover);
  border-color: var(--boq-footer-accent-hover);
  color: var(--boq-footer-white);
}

.footer .form-text-error {
  display: block;
  margin-top: 6px;
  color: #ff8f8f;
  font-size: 0.84rem;
}

.footer .copyright {
  padding: 22px 0 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(2, 10, 28, 0.74);
}

.footer .copyright p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
}

.footer .credits {
  margin-top: 6px;
  color: var(--boq-footer-muted);
  font-size: 13px;
}

.footer .credits a {
  color: var(--boq-footer-accent);
  font-weight: 600;
}


/* ==========================================================================
   21. Scroll-to-top
   ========================================================================== */

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99999;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bc-accent);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(80, 197, 255, 0.40);
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s ease;
}

.scroll-top i {
  color: #ffffff;
  font-size: 22px;
  line-height: 0;
}

.scroll-top:hover {
  transform: translateY(-2px);
  background: var(--bc-accent-hover);
  color: #ffffff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}


/* ==========================================================================
   22. Responsive overrides — consolidated breakpoints
   ========================================================================== */

/* xxl ≤ 1399.98px */
@media (max-width: 1399.98px) {
  .bc-command-link {
    padding: 0 11px;
    font-size: 0.8rem;
  }

  .bc-command-menu {
    gap: 5px;
  }
}

/* xl ≤ 1199.98px */
@media (max-width: 1199.98px) {
  body {
    padding-top: var(--bc-header-h-md);
  }

  section,
  .section {
    padding: 72px 0;
    scroll-margin-top: 84px;
  }

  .bc-command-nav,
  .bc-command-nav .container {
    min-height: var(--bc-header-h-md);
  }

  .bc-command-desktop {
    display: none;
  }

  .bc-profile-wrap {
    display: block;
    order: 2;
    margin-left: auto;
  }

  .bc-command-mobile-btn {
    display: inline-flex;
    order: 3;
    margin-left: 10px;
  }

  .about .content-wrapper {
    padding-right: 0;
  }

  .about .main-visual {
    min-height: 320px;
  }

  .features .content-wrapper {
    padding-right: 0;
  }

  .features .main-image img {
    max-height: 500px;
  }

  .features-2 .feature-card {
    min-height: 205px;
  }

  .features-2 .testimonial-content {
    padding: 40px 34px;
  }

  .u-dash-hero {
    min-height: auto;
    padding: 100px 0 64px;
  }
}

/* lg ≤ 991.98px */
@media (max-width: 991.98px) {
  .about .content-wrapper {
    margin-bottom: 2.5rem;
  }

  .about .section-header h2,
  .about .lead-text,
  .about .description-text {
    max-width: 100%;
  }

  .about .overlay-card {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 1.25rem;
  }

  .about .secondary-img {
    height: 190px;
  }

  .features-scroll-hint {
    display: inline-flex;
  }

  .features .content-wrapper {
    margin-bottom: 28px;
  }

  .features .main-image img {
    min-height: 300px;
  }

  .features-2 .feature-card {
    min-height: auto;
  }

  .features-2 .testimonial-content {
    padding: 34px 28px;
  }

  .features-2 .testimonial-image img {
    min-height: 320px;
  }

  .call-to-action .image-wrapper .floating-card {
    right: auto;
    left: 16px;
    max-width: 260px;
    transform: translateY(-30%);
  }

  .call-to-action .content-area {
    margin-top: 50px;
  }

  .services .hero-visual {
    margin-top: 2rem;
  }

  .testimonials .testimonial-masonry {
    grid-template-columns: repeat(2, 1fr);
  }

  .u-dash-hero {
    padding: 92px 0 58px;
  }

  .u-dash-hero h1 {
    font-size: clamp(2.2rem, 7vw, 3.8rem);
  }

  .u-dash-hero p {
    max-width: 720px;
  }

  .u-dash-hero-strip {
    width: min(100%, 760px);
    flex-direction: column;
    align-items: stretch;
  }

  .u-dash-strip-intro {
    min-width: 0;
  }
}

/* md ≤ 767.98px */
@media (max-width: 767.98px) {

  section,
  .section {
    padding: 56px 0;
  }

  .bc-profile-info,
  .bc-profile-btn>.bi-chevron-down {
    display: none;
  }

  .bc-profile-btn {
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    justify-content: center;
    border-radius: var(--bc-radius-md);
  }

  .bc-profile-avatar {
    width: 32px;
    height: 32px;
  }

  .bc-profile-menu {
    right: -54px;
  }

  .about .stats-grid {
    grid-template-columns: 1fr;
  }

  .about .main-visual {
    min-height: 260px;
    max-height: 360px;
  }

  .about .secondary-img {
    height: 160px;
  }

  .about .feature-box {
    padding: 22px;
  }

  .features .tabs-wrapper {
    padding: 22px;
    border-radius: var(--bc-radius-xl);
  }

  .features .feature-grid {
    grid-template-columns: 1fr;
  }

  .features .floating-card {
    position: static;
    max-width: 100%;
    margin-top: 14px;
  }

  .features .nav-item {
    min-width: 220px;
  }

  .features-2 .row.g-4 {
    --bs-gutter-y: 1rem;
  }

  .features-2 .feature-card {
    padding: 22px 20px;
    border-radius: var(--bc-radius-xl);
  }

  .features-2 .feature-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: var(--bc-radius-md);
  }

  .features-2 .feature-icon i {
    font-size: 1.2rem;
  }

  .features-2 h3 {
    font-size: 1.04rem;
  }

  .features-2 p {
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .features-2 .feature-testimonial {
    border-radius: var(--bc-radius-2xl);
  }

  .features-2 .testimonial-content {
    padding: 28px 22px;
  }

  .features-2 .testimonial-content p {
    font-size: 0.96rem;
    line-height: 1.82;
  }

  .features-2 .testimonial-image img {
    min-height: 250px;
  }

  .testimonials .testimonial-masonry {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .testimonials .testimonial-content {
    padding: 22px;
  }

  .stats .stat-item {
    padding: 22px 20px;
  }

  .stats .stat-number {
    font-size: 1.8rem;
  }

  .member-img {
    aspect-ratio: 1 / 1;
  }

  .member-socials {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  .footer .footer-top {
    padding: 42px 0 14px;
  }

  .footer-logo-mark {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 13px;
  }

  .footer-logo-mark img {
    width: 34px;
    height: 34px;
  }

  .footer-logo-text {
    font-size: 1.12rem;
  }

  .footer-desc,
  .subscribe-note,
  .footer-contact p,
  .footer-links ul a {
    font-size: 13px;
  }

  .social-links a {
    width: 36px;
    height: 36px;
  }

  .faq .faq-item {
    padding: 20px 54px 20px 20px;
    border-radius: var(--bc-radius-lg);
  }

  .faq .faq-item h3 {
    font-size: 0.96rem;
  }

  .faq .faq-content p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .faq .faq-toggle {
    top: 18px;
    right: 18px;
    width: 32px;
    height: 32px;
  }
}

/* sm ≤ 575.98px */
@media (max-width: 575.98px) {
  body {
    padding-top: var(--bc-header-h-sm);
  }

  .section-title {
    margin-bottom: 36px;
  }

  .section-title h2 {
    font-size: 1.55rem;
  }

  .section-title h2::after {
    width: 80px;
    margin-top: 14px;
  }

  .section-title p {
    font-size: 0.94rem;
  }

  .bc-command-logo {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .bc-command-brand-title {
    font-size: 0.9rem;
  }

  .bc-command-brand-subtitle {
    font-size: 0.56rem;
  }

  .bc-command-offcanvas {
    width: 86vw;
  }

  .u-dash-hero {
    padding: 72px 0 44px;
  }

  .u-dash-hero-content {
    text-align: left;
  }

  .u-dash-kicker {
    padding: 7px 12px;
    font-size: 0.68rem;
  }

  .u-dash-hero h1 {
    margin-top: 16px;
    font-size: clamp(2rem, 12vw, 2.85rem);
    line-height: 1.08;
  }

  .u-dash-hero p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .u-dash-actions {
    margin-top: 22px;
    flex-direction: column;
    align-items: stretch;
  }

  .u-dash-btn {
    width: 100%;
    min-height: 48px;
  }

  .u-dash-hero-strip {
    margin-top: 26px;
    padding: 12px;
    gap: 10px;
    border-radius: var(--bc-radius-lg);
  }

  .u-dash-strip-intro {
    padding: 12px;
    border-radius: var(--bc-radius-md);
  }

  .u-dash-strip-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--bc-radius-md);
  }

  .u-dash-strip-stats {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .u-dash-strip-stats>div {
    min-height: 62px;
    border-radius: var(--bc-radius-md);
  }

  .about .section-badge {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .about .section-header h2 {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .about .lead-text {
    font-size: 0.98rem;
  }

  .about .description-text {
    font-size: 0.93rem;
  }

  .about .stats-grid .stat-item {
    min-height: auto;
    padding: 16px;
  }

  .about .main-visual {
    min-height: 220px;
  }

  .about .overlay-card .card-content {
    padding-right: 0;
  }

  .about .overlay-card .card-icon {
    position: static;
    margin-top: 12px;
  }

  .about .secondary-img {
    height: 145px;
  }

  .features .tabs-wrapper {
    padding: 14px;
  }

  .features .nav-item {
    min-width: 188px;
  }

  .features .nav-link {
    min-height: 70px;
    padding: 10px;
    border-radius: var(--bc-radius-md);
  }

  .features .tab-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .features .tab-content h5 {
    font-size: 0.82rem;
  }

  .features .tab-content span {
    font-size: 0.68rem;
  }

  .features .main-image img {
    min-height: 230px;
  }

  .features-2 .feature-card {
    padding: 20px 18px;
  }

  .features-2 .testimonial-content {
    padding: 24px 18px;
  }

  .features-2 .quote-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--bc-radius-md);
  }

  .features-2 .testimonial-image img {
    min-height: 220px;
  }

  .call-to-action .image-wrapper .floating-card {
    position: relative;
    inset: auto;
    transform: none;
    margin-top: 18px;
    max-width: none;
  }

  .contact .contact-form .card-body {
    padding: 22px;
  }

  .faq .faq-item {
    padding: 18px 48px 18px 18px;
    border-radius: var(--bc-radius-lg);
  }

  .faq .faq-item h3 {
    font-size: 0.92rem;
  }

  .faq .faq-active .faq-content {
    padding-top: 12px;
  }

  .faq .faq-toggle {
    right: 14px;
  }

  .scroll-top {
    width: 42px;
    height: 42px;
    right: 14px;
    bottom: 14px;
  }

  .scroll-top i {
    font-size: 20px;
  }
}

/* xs ≤ 380px */
@media (max-width: 380px) {
  .u-dash-hero {
    padding: 64px 0 38px;
  }

  .u-dash-hero h1 {
    font-size: 2rem;
  }

  .u-dash-kicker {
    font-size: 0.62rem;
    letter-spacing: 0.04em;
  }

  .u-dash-strip-intro strong {
    font-size: 0.9rem;
  }

  .bc-command-brand-text {
    display: none;
  }
}

/* Reduce AOS delays on small screens */
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* Respect users who don't want motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}