/* ====================================================
   pages.css – Shared styles for all inner pages
   Mountain Lamp Multi-Page Site
   ==================================================== */

/* ---- Preloader brand ---- */
.preloader-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #be1e2d, #8a1520);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---- Brand name in header ---- */
.brand-name-gradient {
  font-family: 'Outfit', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  background: linear-gradient(90deg, #be1e2d, #8a1520);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---- Page Hero Banner ---- */
.page-hero-banner {
  background: #d9d9d9;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-color: #e6e6e6;
  background-image: linear-gradient(rgba(0, 0, 0, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, .03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(190, 30, 45, .08) 0%, transparent 70%);
}

.page-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 900;
  color: #000000;
  line-height: 1.05;
  margin: 16px 0 20px;
}

.page-hero-sub {
  font-family: 'DM Sans', sans-serif;
  color: #6a6869;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.7;
  color: #6a6869;
}

.page-breadcrumb {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #9b9a9a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.page-breadcrumb a {
  color: #6a6869;
  text-decoration: none;
  transition: color .3s;
}

.page-breadcrumb a:hover {
  color: #be1e2d;
}

.page-breadcrumb span.active {
  color: #be1e2d;
  font-weight: 600;
}

.active-link {
  background: linear-gradient(90deg, #be1e2d, #8a1520) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* ---- About Page ---- */
/* About Visual Block */
.about-visual-block {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, .09);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-visual-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, .03) 1px, transparent 1px);
  background-size: 28px 28px;
}

.av-icon-ring {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #be1e2d, #8a1520);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #1a1a1a;
  margin: 0 auto 20px;
  animation: iconFloat 3s ease-in-out infinite alternate;
}

.about-visual-block h3 {
  font-family: 'Outfit', sans-serif;
  color: #1a1a1a;
  font-size: 1.4rem;
  font-weight: 700;
}

.about-visual-block p {
  color: #6a6869;
  font-size: 14px;
}

.av-float-badge {
  position: absolute;
  background: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 50px;
  padding: 8px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.av-float-badge i {
  color: #be1e2d;
}

.badge-tl {
  top: 20px;
  left: 20px;
}

.badge-br {
  bottom: 80px;
  right: 20px;
}

.av-stat-row {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

.av-stat {
  text-align: center;
}

.av-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #be1e2d, #8a1520);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.av-lbl {
  font-size: 12px;
  color: #9b9a9a;
  font-weight: 500;
}

/* Mission Vision Values */
.mvv-card {
  padding: 36px;
  border-radius: 20px;
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, .05);
  transition: all .3s;
}

.mvv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(190, 30, 45, .3);
}

.mvv-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  font-size: 22px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mvv-mission .mvv-icon {
  background: linear-gradient(135deg, #be1e2d, #8a1520);
}

.mvv-vision .mvv-icon {
  background: linear-gradient(135deg, #434243, #5a5859);
}

.mvv-values .mvv-icon {
  background: linear-gradient(135deg, #be1e2d, #434243);
}

.mvv-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.mvv-desc {
  font-family: 'DM Sans', sans-serif;
  color: #6a6869;
  line-height: 1.7;
}

.mvv-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mvv-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #434243;
  margin-bottom: 10px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
}

.mvv-list li i {
  flex-shrink: 0;
}

/* Why Cards */
.why-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: 16px;
  padding: 24px;
  transition: all .3s;
}

.why-card:hover {
  border-color: rgba(190, 30, 45, .3);
  background: rgba(190, 30, 45, .06);
  transform: translateY(-2px);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #be1e2d, #8a1520);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 14px;
  transition: transform .3s;
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.why-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #6a6869;
  line-height: 1.6;
  margin: 0;
}

/* Team Cards */
.team-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all .3s;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(190, 30, 45, .3);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #6a6869;
  margin: 0 auto 16px;
}

.team-name {
  color: #1a1a1a;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #be1e2d, #8a1520);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.team-bio {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #6a6869;
  line-height: 1.6;
  margin-bottom: 16px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #434243;
  text-decoration: none;
  font-size: 13px;
  transition: all .3s;
}

.team-social a:hover {
  background: linear-gradient(135deg, #be1e2d, #8a1520);
  border-color: transparent;
  color: #ffffff;
}

/* ---- Services Page ---- */
.sv-detail-visual {
  border-radius: 24px;
  height: 380px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sv-detail-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, .03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.sv-detail-icon {
  font-size: 6rem;
  color: rgba(190, 30, 45, .7);
  z-index: 1;
  position: relative;
  animation: iconFloat 3s ease-in-out infinite alternate;
}

.sv-detail-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: linear-gradient(135deg, #be1e2d, #8a1520);
  border-radius: 12px;
  padding: 8px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
}

.sv-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  color: #434243;
  font-size: 15px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, .05);
}

.process-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  position: relative;
  height: 100%;
  transition: all .3s;
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(190, 30, 45, .3);
}

.process-step {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #be1e2d, #8a1520);
  border-radius: 50px;
  padding: 6px 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
}

.process-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(190, 30, 45, .12);
  border: 1px solid rgba(190, 30, 45, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #be1e2d;
  margin: 24px auto 16px;
}

.process-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.process-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #6a6869;
  line-height: 1.6;
  margin: 0;
}

/* ---- Products Page ---- */
.prod-visual {
  border-radius: 24px;
  height: 440px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.prod-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, .03) 1px, transparent 1px);
  background-size: 28px 28px;
}

.prod-icon {
  font-size: 7rem;
  color: rgba(190, 30, 45, .7);
  position: relative;
  z-index: 1;
  animation: iconFloat 3s ease-in-out infinite alternate;
}

.prod-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: linear-gradient(135deg, #be1e2d, #8a1520);
  border-radius: 12px;
  padding: 8px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
}

/* Detection UI inside prod-visual */
.prod-detection {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.det-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 111, 5, .8), transparent);
  animation: scanMove 2s linear infinite;
}

@keyframes scanMove {
  0% {
    top: 10%;
  }

  100% {
    top: 90%;
  }
}

.det-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: #be1e2d;
  border-style: solid;
}

.det-corner.tl {
  top: 30%;
  left: 25%;
  border-width: 2px 0 0 2px;
}

.det-corner.tr {
  top: 30%;
  right: 25%;
  border-width: 2px 2px 0 0;
}

.det-corner.bl {
  bottom: 30%;
  left: 25%;
  border-width: 0 0 2px 2px;
}

.det-corner.br {
  bottom: 30%;
  right: 25%;
  border-width: 0 2px 2px 0;
}

.det-status {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, .7);
  border: 1px solid rgba(190, 30, 45, .5);
  border-radius: 50px;
  padding: 6px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #be1e2d;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blink-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF6F05;
  animation: pulseDot 1s ease infinite;
}

/* Mini camera grid */
.prod-mini-ui {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 200px;
}

.mini-cam {
  background: rgba(0, 0, 0, .7);
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 8px;
  padding: 8px 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  color: #6a6869;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mini-cam.active {
  border-color: rgba(77, 184, 255, .5);
  color: #4db8ff;
}

/* Face UI */
.prod-face-ui {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.face-scan-ring {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid rgba(200, 128, 255, .6);
  box-shadow: 0 0 30px rgba(200, 128, 255, .3);
  animation: pulseDot 2s ease infinite;
}

.face-dots {
  display: flex;
  gap: 8px;
  margin: 12px 0;
}

.face-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(200, 128, 255, .6);
  animation: pulseDot 1s ease infinite;
}

.face-dots span:nth-child(2) {
  animation-delay: .2s;
}

.face-dots span:nth-child(3) {
  animation-delay: .4s;
}

.face-verified {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #c880ff;
  letter-spacing: 2px;
}

/* Cloud UI */
.prod-cloud-ui {
  position: absolute;
  bottom: 30px;
  left: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cloud-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  color: #6a6869;
  font-weight: 600;
}

.cloud-bar span {
  height: 4px;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ANPR UI */
.prod-anpr-ui {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.anpr-plate {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: #1a1a1a;
  background: rgba(0, 0, 0, .7);
  border: 2px solid rgba(255, 179, 0, .6);
  border-radius: 8px;
  padding: 12px 24px;
  margin-bottom: 8px;
}

.anpr-status {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.prod-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pf-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  color: #434243;
  font-size: 14px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: 10px;
  padding: 10px 14px;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: 'DM Sans', sans-serif;
}

.comparison-table thead th {
  background: #f9f9f9;
  color: #1a1a1a;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 16px 20px;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, .09);
}

.comparison-table thead th:first-child {
  text-align: left;
  border-radius: 12px 0 0 0;
}

.comparison-table thead th:last-child {
  border-radius: 0 12px 0 0;
}

.comparison-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, .02);
}

.comparison-table td {
  padding: 14px 20px;
  text-align: center;
  color: #434243;
  font-size: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: #1a1a1a;
}

/* ---- Contact Page ---- */
.contact-info-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #be1e2d, #8a1520);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
}

.contact-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f9f9f9;
  border: 1px solid rgba(0, 0, 0, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #434243;
  text-decoration: none;
  font-size: 15px;
  transition: all .3s;
}

.contact-social-btn:hover {
  background: linear-gradient(135deg, #be1e2d, #8a1520);
  border-color: transparent;
  color: #ffffff;
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, .09);
  border-radius: 24px;
  padding: 48px;
}

.cf-group {
  margin-bottom: 0;
}

.cf-group label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #434243;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.cf-group input,
.cf-group select,
.cf-group textarea {
  width: 100%;
  background: #f9f9f9;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 12px;
  padding: 14px 18px;
  color: #1a1a1a;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color .3s;
}

.cf-group select option {
  background: #f7f7f7;
}

.cf-group input::placeholder,
.cf-group textarea::placeholder {
  color: #bbb;
}

.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: rgba(190, 30, 45, .5);
  background: rgba(190, 30, 45, .05);
}

.cf-group textarea {
  resize: vertical;
}

.cf-success {
  text-align: center;
  padding: 40px 0;
}

/* Demo Banner */
.demo-cta-card {
  background: rgba(0, 0, 0, .06);
  border: 1px solid rgba(0, 0, 0, .09);
  border-radius: 24px;
  padding: 48px;
}

.demo-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 50px;
  padding: 8px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #434243;
}

.demo-tag i {
  color: #be1e2d;
}

/* ---- Industries Page ---- */
.industry-visual {
  border-radius: 24px;
  height: 360px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.industry-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, .03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.ind-big-icon {
  font-size: 7rem;
  color: rgba(77, 184, 255, .7);
  position: relative;
  z-index: 1;
  animation: iconFloat 3s ease-in-out infinite alternate;
}

.ind-tag {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #be1e2d, #8a1520);
  border-radius: 50px;
  padding: 8px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

.ind-card-mini {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: all .3s;
}

.ind-card-mini:hover {
  transform: translateY(-4px);
  border-color: rgba(190, 30, 45, .3);
}

.ind-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #be1e2d, #8a1520);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 16px;
  transition: transform .3s;
}

.ind-card-mini:hover .ind-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.ind-card-mini h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.ind-card-mini p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #6a6869;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ---- Blog Page ---- */
.blog-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: all .3s;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(190, 30, 45, .3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
}

.blog-img {
  height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-img-icon {
  font-size: 4rem;
  color: #bbb;
  transition: transform .4s;
}

.blog-card:hover .blog-img-icon {
  transform: scale(1.2);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #9b9a9a;
  padding: 20px 24px 0;
}

.blog-cat {
  background: linear-gradient(135deg, #be1e2d, #8a1520);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-body {
  padding: 16px 24px 24px;
}

.blog-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.4;
  text-decoration: none;
  display: block;
  transition: color .3s;
}

.blog-card:hover .blog-title {
  color: #be1e2d;
}

.blog-excerpt {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #6a6869;
  line-height: 1.65;
  margin-bottom: 16px;
}

.blog-read-more {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #be1e2d;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .3s;
}

.blog-read-more:hover {
  gap: 10px;
  color: #be1e2d;
}

.blog-search-bar {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
}

.blog-search-bar input {
  flex: 1;
  background: #f9f9f9;
  border: 1px solid rgba(0, 0, 0, .1);
  border-right: none;
  border-radius: 12px 0 0 12px;
  padding: 14px 20px;
  color: #1a1a1a;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
}

.blog-search-bar input::placeholder {
  color: #bbb;
}

.blog-search-bar button {
  background: linear-gradient(135deg, #be1e2d, #8a1520);
  border: none;
  border-radius: 0 12px 12px 0;
  padding: 14px 20px;
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
}

.blog-sidebar-widget {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}

.bs-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.bs-tag {
  display: inline-block;
  background: #f9f9f9;
  border: 1px solid rgba(0, 0, 0, .09);
  border-radius: 50px;
  padding: 6px 14px;
  margin: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  color: #6a6869;
  transition: all .3s;
  cursor: pointer;
}

.bs-tag:hover {
  border-color: rgba(190, 30, 45, .5);
  color: #be1e2d;
}

.recent-post {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.recent-post:last-child {
  border-bottom: none;
}

.rp-thumb {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.rp-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #434243;
  line-height: 1.4;
  margin-bottom: 4px;
}

.rp-date {
  font-size: 11px;
  color: #bbb;
}

/* ---- Pagination ---- */
.ml-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 48px;
}

.pag-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f9f9f9;
  border: 1px solid rgba(0, 0, 0, .09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #434243;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s;
}

.pag-btn.active,
.pag-btn:hover {
  background: linear-gradient(135deg, #be1e2d, #8a1520);
  border-color: transparent;
  color: #ffffff;
}

/* ====================================================
   ML SHARED HEADER — New Modern Design
   ==================================================== */

/* --- Base header layout --- */
.ml-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9990;
  padding: 0 40px;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/* --- Scrolled state (frosted glass) --- */
.ml-header--scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(139, 0, 0, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

/* --- Inner row --- */
.ml-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 24px;
}

/* --- Logo --- */
.ml-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

/* --- Navigation --- */
.ml-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.ml-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
}

.ml-nav-list li {
  position: relative;
}

.ml-nav-list>li>a {
  display: inline-block;
  padding: 8px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.ml-nav-list>li>a:hover {
  color: #be1e2d;
  background: rgba(190, 30, 45, 0.06);
}

.ml-nav-list>li>a.ml-nav-active {
  color: #be1e2d;
  font-weight: 700;
}

.ml-dd-icon {
  font-size: 9px;
  margin-left: 4px;
  opacity: 0.6;
  vertical-align: middle;
  transition: transform 0.2s ease;
}

/* --- Dropdown Panel --- */
.ml-nav-dropdown {
  position: relative;
}

.ml-nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 10px;
  pointer-events: auto;
}

.ml-dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(139, 0, 0, 0.08);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.ml-nav-dropdown:hover .ml-dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.ml-nav-dropdown:hover .ml-dd-icon {
  transform: rotate(180deg);
}

.ml-dd-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: #1a1a1a;
  transition: background 0.2s ease;
}

.ml-dd-item:hover {
  background: rgba(190, 30, 45, 0.05);
  color: #be1e2d;
}

.ml-dd-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(190, 30, 45, 0.12), rgba(139, 0, 0, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #be1e2d;
  flex-shrink: 0;
}

.ml-dd-item strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.3;
}

.ml-dd-item small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  color: #777;
  margin-top: 2px;
}

/* --- Right Side --- */
.ml-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Social icons */
.ml-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ml-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(139, 0, 0, 0.25);
  color: #8B0000;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ml-social a:hover {
  background: #8B0000;
  color: #fff;
  border-color: #8B0000;
}

/* CTA Button */
.ml-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: linear-gradient(135deg, #be1e2d, #8B0000);
  color: #fff !important;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(190, 30, 45, 0.3);
}

.ml-cta-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(190, 30, 45, 0.35);
}

/* Hamburger */
.ml-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: #be1e2d !important;
  border: 1.5px solid #be1e2d;
  border-radius: 10px;
  cursor: pointer;
  gap: 5px;
  padding: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(190, 30, 45, 0.25);
}

.ml-hamburger span {
  display: block;
  width: 24px;
  height: 2px !important;
  background: #ffffff !important;
  border-radius: 2px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* Scrolled state/Overrides for hamburger */
.ml-header--scrolled .ml-hamburger {
  background: #be1e2d !important;
  border-color: #be1e2d;
}

.ml-header--scrolled .ml-hamburger span {
  background: #ffffff !important;
}

/* ---- Drawer + backdrop z-index layer ---- */
.mob-menu-backdrop {
  z-index: 9997;
}

.mobile_menu_wrap {
  z-index: 9998;
}

/* ---- Responsive breakpoints ---- */
@media (max-width: 1199px) {
  .ml-nav {
    display: none;
  }

  .ml-social {
    display: none;
  }

  .ml-cta-btn {
    display: none;
  }

  .ml-hamburger {
    display: flex;
  }
}

/* Animated hamburger → X when menu is open */
body.mob-menu-open .ml-hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.mob-menu-open .ml-hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.mob-menu-open .ml-hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767px) {
  .ml-header {
    padding: 0 16px;
  }

  .ml-header-inner {
    height: 64px;
  }
}

@media (max-width: 480px) {
  .ml-hamburger {
    width: 38px;
    height: 38px;
    border-radius: 8px;
  }
}

/* ---- Page body offset (so content doesn't hide under sticky header) ---- */
body.fd-inner-page {
  padding-top: 80px;
}

@media (max-width: 767px) {
  body.fd-inner-page {
    padding-top: 64px;
  }
}

/* ====================================================
   HERO V2 – Animated dark hero with canvas + HUD
   ==================================================== */
.ml-hero-v2 {
  position: relative;
  min-height: 100vh;
  background: #0a0a0f;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-canvas-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-scan-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg,
      transparent,
      transparent 2px,
      rgba(190, 30, 45, 0.02) 2px,
      rgba(190, 30, 45, 0.02) 4px);
  pointer-events: none;
  z-index: 1;
}

.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.hero-glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(190, 30, 45, 0.25) 0%, transparent 70%);
  top: -120px;
  left: -100px;
  animation: glow-drift 8s ease-in-out infinite alternate;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(67, 66, 67, 0.3) 0%, transparent 70%);
  bottom: 0;
  right: 10%;
  animation: glow-drift 10s ease-in-out infinite alternate-reverse;
}

@keyframes glow-drift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(40px, 40px) scale(1.15);
  }
}

.ml-hero-v2 .container-fluid {
  position: relative;
  z-index: 2;
}

.ml-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  min-height: 100vh;
  padding: 120px 0 80px;
}

/* ---- Left Text ---- */
.ml-hero-left {
  max-width: 620px;
}

.ml-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(190, 30, 45, 0.12);
  border: 1px solid rgba(190, 30, 45, 0.3);
  color: #e87080;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #be1e2d;
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

.ml-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 5rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.ml-hero-accent {
  color: #be1e2d;
  position: relative;
}

.typed-wrap {
  display: inline-block;
  min-width: 2ch;
}

.typed-cursor {
  display: inline-block;
  color: #be1e2d;
  animation: blink 0.8s step-end infinite;
  margin-left: 2px;
}

.ml-hero-sub {
  color: rgba(255, 255, 255, 0.75);
}

.ml-hero-desc {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 540px;
}

.ml-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.ml-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #be1e2d;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(190, 30, 45, 0.35);
}

.ml-hero-btn-primary:hover {
  background: #9a1825;
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 14px 40px rgba(190, 30, 45, 0.5);
}

.ml-hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: all 0.3s ease;
}

.ml-hero-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

/* ---- Live stat pills ---- */
.ml-hero-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stat-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px 22px;
  backdrop-filter: blur(10px);
  min-width: 100px;
  text-align: center;
  transition: all 0.3s ease;
}

.hero-stat-pill:hover {
  background: rgba(190, 30, 45, 0.08);
  border-color: rgba(190, 30, 45, 0.3);
}

.hero-stat-live {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #e87080;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #be1e2d;
  border-radius: 50%;
  animation: blink 1s ease-in-out infinite;
}

.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.hero-stat-num sup {
  font-size: 1rem;
  color: #be1e2d;
}

.hero-stat-lbl {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* ---- Right HUD ---- */
.ml-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-hud-wrap {
  position: relative;
  width: 480px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hud-ring {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  border-color: transparent;
}

.hud-ring-outer {
  width: 460px;
  height: 460px;
  border-width: 1px;
  border-top-color: rgba(190, 30, 45, 0.5);
  border-right-color: rgba(190, 30, 45, 0.2);
  animation: spin 12s linear infinite;
}

.hud-ring-mid {
  width: 340px;
  height: 340px;
  border-width: 1px;
  border-bottom-color: rgba(190, 30, 45, 0.4);
  border-left-color: rgba(190, 30, 45, 0.15);
  animation: spin 8s linear infinite reverse;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.hud-center {
  position: relative;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(190, 30, 45, 0.2), rgba(190, 30, 45, 0.05));
  border: 1px solid rgba(190, 30, 45, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.hud-icon {
  font-size: 2.8rem;
  color: #be1e2d;
  filter: drop-shadow(0 0 12px rgba(190, 30, 45, 0.8));
  animation: icon-pulse 3s ease-in-out infinite;
}

@keyframes icon-pulse {

  0%,
  100% {
    filter: drop-shadow(0 0 12px rgba(190, 30, 45, 0.8));
  }

  50% {
    filter: drop-shadow(0 0 24px rgba(190, 30, 45, 1));
  }
}

.hud-pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(190, 30, 45, 0.4);
  animation: pulse-out 3s ease-out infinite;
}

.hud-pulse-ring.r1 {
  width: 160px;
  height: 160px;
  animation-delay: 0s;
}

.hud-pulse-ring.r2 {
  width: 200px;
  height: 200px;
  animation-delay: 1s;
}

.hud-pulse-ring.r3 {
  width: 250px;
  height: 250px;
  animation-delay: 2s;
}

@keyframes pulse-out {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Corner brackets */
.hud-bracket {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: #be1e2d;
  border-style: solid;
  border-width: 0;
}

.hud-bracket.top-left {
  top: 20px;
  left: 20px;
  border-top-width: 2px;
  border-left-width: 2px;
}

.hud-bracket.top-right {
  top: 20px;
  right: 20px;
  border-top-width: 2px;
  border-right-width: 2px;
}

.hud-bracket.bot-left {
  bottom: 20px;
  left: 20px;
  border-bottom-width: 2px;
  border-left-width: 2px;
}

.hud-bracket.bot-right {
  bottom: 20px;
  right: 20px;
  border-bottom-width: 2px;
  border-right-width: 2px;
}

/* Floating detection cards */
.hud-float-card {
  position: absolute;
  background: rgba(10, 10, 15, 0.9);
  border: 1px solid rgba(190, 30, 45, 0.3);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 10;
  backdrop-filter: blur(12px);
  min-width: 160px;
}

.hud-float-card i {
  font-size: 1rem;
  color: #be1e2d;
  margin-bottom: 4px;
}

.hud-float-card span {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}

.hud-float-card small {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
}

.hud-card-1 {
  top: 20px;
  left: -20px;
  animation: float-card 5s ease-in-out infinite;
}

.hud-card-2 {
  bottom: 80px;
  left: -30px;
  animation: float-card 5s ease-in-out infinite 1.5s;
}

.hud-card-3 {
  top: 80px;
  right: -20px;
  animation: float-card 5s ease-in-out infinite 3s;
}

@keyframes float-card {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* HUD scan line */
.hud-scan-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(190, 30, 45, 0.6), transparent);
  animation: scan 4s ease-in-out infinite;
  z-index: 6;
}

@keyframes scan {
  0% {
    top: 0%;
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

/* Scroll cue */
.ml-hero-scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 5;
}

.ml-hero-scroll-cue span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  animation: scroll-bounce 1.8s ease infinite;
}

@keyframes scroll-bounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  80% {
    transform: translateY(10px);
    opacity: 0;
  }
}

/* ====================================================
   ABOUT V2 – Dark/Light split layout
   ==================================================== */
.ml-about-v2 {
  display: block;
}

.ml-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

/* ---- Left dark panel ---- */
.ml-about-left {
  background: #0f0f14;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ml-about-left::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(190, 30, 45, 0.18) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
}

.ml-about-left-content {
  position: relative;
  z-index: 2;
  padding: 80px 60px;
}

.ml-about-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #e87080;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.ml-about-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.ml-about-accent {
  color: #be1e2d;
}

.ml-about-desc {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 440px;
}

/* Animated counters */
.ml-about-counters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
  margin-bottom: 36px;
}

.ml-about-counter {
  position: relative;
}

.counter-val {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: inline-block;
}

.counter-sup {
  font-size: 1.4rem;
  font-weight: 900;
  color: #be1e2d;
  vertical-align: top;
  margin-top: 4px;
}

.counter-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ml-about-counter::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: #be1e2d;
  margin-top: 8px;
}

.ml-about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #be1e2d;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 28px rgba(190, 30, 45, 0.3);
}

.ml-about-btn:hover {
  background: #9a1825;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(190, 30, 45, 0.5);
}

/* ---- Right light panel ---- */
.ml-about-right {
  background: #f5f5f5;
  position: relative;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Years badge */
.ml-about-years-badge {
  position: absolute;
  top: 32px;
  right: 40px;
  background: #be1e2d;
  color: #fff;
  border-radius: 20px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 28px rgba(190, 30, 45, 0.35);
}

.years-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.years-text {
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Feature grid */
.ml-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.ml-about-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ml-about-card:hover {
  border-color: rgba(190, 30, 45, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(190, 30, 45, 0.12);
}

.ml-about-card-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(190, 30, 45, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #be1e2d;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.ml-about-card:hover .ml-about-card-icon {
  background: #be1e2d;
  color: #fff;
}

.ml-about-card-body h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 5px;
}

.ml-about-card-body p {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.55;
  margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .ml-hero-inner {
    grid-template-columns: 1fr;
  }

  .ml-hero-right {
    display: none;
  }

  .ml-about-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ml-about-left-content {
    padding: 50px 28px;
  }

  .ml-about-right {
    padding: 40px 20px;
  }

  .ml-about-grid {
    grid-template-columns: 1fr;
  }

  .ml-about-counters {
    grid-template-columns: 1fr 1fr;
  }

  .ml-hero-title {
    font-size: 2.4rem;
  }

  .hero-hud-wrap {
    width: 280px;
    height: 280px;
  }
}