/*--------------------------------------------------------------
    # BRANDING ARCHITECTURE & VARIABLES (VERTICZ THEME)
    --------------------------------------------------------------*/
    
.px {
      padding-left: 4rem;
      padding-right: 4rem;
  }

  .py {
      padding-top: 2.5rem;
      padding-bottom: 2.5rem;
  }
  .pb{
    padding-bottom: 3rem;
  }
  .pt{
  padding-top: 3rem;
  }
    /* High Visibility Typography Safe Overrides */
    h1, h2, h3, h4, h5, h6, .text-white {
      color: #ffffff;
    }
    
    p, .text-muted {
      color: var(--v-text-muted);
    }
    .bg-one{
      background-color: var(--bg-one);
    }
    .bg-two{
      background-color: var(--bg-two);
    }

    /*--------------------------------------------------------------
    # NAVIGATION BAR COMPONENT (ANTI-BREAK FLEX ARCHITECTURE)
    --------------------------------------------------------------*/
    .nav-verticz {
      position: fixed;  /* Locks the header viewport position securely */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;    /* Keeps it safely on top of all timeline items and grid layouts */
  background-color: rgba(10, 15, 13, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--v-border-muted);
  padding: 0.75rem 0;
    }

    .logo-container-block {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    .logo-container-block img{
      height: 70px;
    }

    .logo-icon-box {
      width: 34px;
      height: 34px;
      background: var(--v-brand-gradient);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 12px var(--v-brand-glow);
      flex-shrink: 0;
    }

    /* Keep header menus structured inline natively */
    .nav-links-group {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    .nav-links-group .nav-link {
      font-size: 0.85rem;
      color: var(--v-text-muted);
      font-weight: 500;
      padding: 0.25rem 0;
      letter-spacing: 0.3px;
      text-decoration: none;
      transition: var(--v-transition-smooth);
    }

    .nav-links-group .nav-link:hover, 
    .nav-links-group .nav-link.active {
      color: var(--v-brand-lime);
      text-decoration: none;
    }

    /*--------------------------------------------------------------
    # BUTTON STYLES MATRIX (STRICT WIDTH BOUNDS CONTROLS)
    --------------------------------------------------------------*/
    .btn-v-primary {
      background: var(--v-brand-gradient);
      color: var(--v-bg-dark);
      font-weight: 700;
      font-size: 0.82rem;
      padding: 0.6rem 1.2rem;
      border-radius: 8px;
      border: 1px solid var(--v-brand-lime);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      white-space: nowrap;
      width: auto;
      max-width: fit-content;
      text-decoration: none;
      transition: var(--v-transition-smooth);
    }
    .btn-v-primary a{
      text-decoration: none;
      color: var(--v-bg-dark);
    }
    .btn-v-primary:hover {
      background: linear-gradient(90deg, #C8FF00 0%, #4ADE80 55%, #22CC44 100%);
      border-color: #4ADE80;
      box-shadow: 0 0 18px var(--v-brand-glow);
      transform: translateY(-1px);
      color: var(--v-bg-dark);
      text-decoration: none;
    }

    .btn-v-secondary {
      background: transparent;
      color: #ffffff;
      font-weight: 600;
      font-size: 0.82rem;
      padding: 0.6rem 1.2rem;
      border-radius: 8px;
      border: 1px solid var(--v-border-muted);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      white-space: nowrap;
      width: auto;
      max-width: fit-content;
      text-decoration: none;
      transition: var(--v-transition-smooth);
    }

    .btn-v-secondary:hover {
      border-color: var(--v-text-muted);
      background: rgba(31, 51, 38, 0.25);
      color: #ffffff;
      text-decoration: none; /* FIXES THE HOVER UNDERLINE BUG Entirely */
    }

    /* Hero section responsive padding scale definitions */
    .hero-btn-container .btn-v-primary,
    .hero-btn-container .btn-v-secondary {
      padding: 0.75rem 1.75rem;
      font-size: 0.9rem;
    }

    /*--------------------------------------------------------------
    # METRIC SCORE CONTAINER LAYOUT
    --------------------------------------------------------------*/
    .premium-score-wrapper {
      background: var(--v-bg-surface);
      border: 1px solid var(--v-border-muted);
      border-radius: 16px;
      padding: 2rem;
      box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    }

    .score-badge-circle {
      background: var(--v-bg-dark);
      border: 1px solid var(--v-border-muted);
      border-radius: 12px;
      padding: 1.5rem 1rem;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 160px;
    }

    /* Explicit breaking controls for defined posture badges */
    .defined-posture-badge {
      font-size: 0.72rem;
      font-weight: 700;
      white-space: nowrap;
      padding: 0.4rem 0.75rem;
      letter-spacing: 0.3px;
    }

    .custom-bar-track {
      height: 6px;
      background: var(--v-bg-dark);
      border-radius: 100px;
      overflow: hidden;
      width: 100%;
    }

    .custom-bar-fill {
      height: 100%;
      border-radius: 100px;
    }

    /*--------------------------------------------------------------
    # SECTION TEXT VISIBILITY AND GRID PILLARS
    --------------------------------------------------------------*/
    .section-tag-global {
      font-size: 0.75rem;
      color: var(--v-brand-lime);
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 700;
      display: inline-block;
      margin-bottom: 0.75rem;
    }



    .trust-container {
      border-top: 1px solid var(--v-border-muted);
      border-bottom: 1px solid var(--v-border-muted);
      background: rgba(15, 23, 18, 0.3);
      padding: 1.5rem 0;
    }

    .trust-logo-text {
      font-size: 0.9rem;
      color: var(--v-text-dim);
      font-weight: 700;
      letter-spacing: 2.5px;
    }

    /* Process Flow Timelines Connection Nodes */
    .process-step-node {
      position: relative;
      z-index: 5; /* Puts entire node element block layout over line graphics wrappers */
    }

    .step-circle-badge {
      width: 36px;
      height: 36px;
      background: var(--v-brand-gradient);
      color: var(--v-bg-dark);
      font-weight: 800;
      font-size: 0.95rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      box-shadow: 0 0 12px var(--v-brand-glow);
      position: relative;
      z-index: 10;
    }



    .recommendation-pill-card {
      background: var(--v-bg-dark);
      border: 1px solid var(--v-border-muted);
      border-radius: 4px 12px 12px 4px;
      padding: 1.25rem;
    }

    /* Interactive Overlay Custom Modals */
    .modal-v-content {
      background-color: var(--v-bg-surface);
      border: 1px solid var(--v-border-muted);
      border-radius: 16px;
    }

    #assessmentModal .form-v-control {
      background-color: var(--v-bg-dark);
      border: 1px solid #2e4a38;
      color: #ffffff;
      font-size: 0.875rem;
      padding: 0.5rem 0.75rem;
    }

    #assessmentModal .form-v-control::placeholder {
      color: rgba(255, 255, 255, 0.5);
      opacity: 1;
    }

    #assessmentModal .form-v-control option {
      background-color: var(--v-bg-dark);
      color: #ffffff;
    }

    #assessmentModal .form-v-control:focus {
      background-color: #111c15;
      border-color: #2e6b44;
      box-shadow: 0 0 8px rgba(34, 204, 68, 0.08);
      color: #ffffff;
    }

    .modal-v-content .modal-header {
      border-bottom-color: #1a2e22;
    }

    .form-check-input {
      background-color: var(--v-bg-dark);
      border-color: #2e4a38;
    }

    .form-check-input:checked {
      background-color: var(--v-brand-lime);
      border-color: var(--v-brand-lime);
    }

    .form-check-label a.text-decoration-none:hover {
      text-decoration: underline !important;
    }

    .form-select.form-v-control {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%238aaa90' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 5.646a.5.5 0 0 1 .708 0L8 8.293l2.646-2.647a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 0.75rem center;
      background-size: 1rem;
    }
    .hero-banner-section {
  position: relative;
  background-image: url('/assets/images/landing/banner_final.jpg?v=1.0');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-banner-section .col-lg-8,
.hero-banner-section .col-xl-7 {
  overflow: hidden;
  min-width: 0;
}

.hero-banner-section h1 {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.hero-banner-section p.lead {
  overflow-wrap: break-word;
  word-wrap: break-word;
  max-width: 100%;
}

/*--------------------------------------------------------------
# ASSESSMENT FEATURES STRIP (POST-BANNER HIGHLIGHTS)
--------------------------------------------------------------*/
.features-strip {
  position: relative;
}

.features-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--v-border-muted), transparent);
}

.feature-card-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--v-bg-surface);
  border: 1px solid var(--v-border-muted);
  transition: var(--v-transition-smooth);
  height: 100%;
}

.feature-card-strip:hover {
  border-color: rgba(34, 204, 68, 0.25);
  box-shadow: 0 4px 20px rgba(34, 204, 68, 0.06);
}

.feature-icon-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(34, 204, 68, 0.08);
  border: 1px solid rgba(34, 204, 68, 0.15);
  flex-shrink: 0;
}

.feature-icon-strip i {
  font-size: 1.1rem;
  color: var(--v-brand-lime);
}

.feature-text-strip h6 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--v-text-main);
  margin: 0;
  line-height: 1.3;
}

.feature-text-strip p {
  font-size: 0.72rem;
  color: var(--v-text-muted);
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 991.98px) {
  .features-strip .row {
    /* gap: 0.75rem; */
  }

  .feature-card-strip {
    padding: 14px 16px;
  }
}

@media (max-width: 575.98px) {
  .feature-card-strip {
    padding: 12px 14px;
    gap: 12px;
  }

  .feature-icon-strip {
    width: 38px;
    height: 38px;
  }

  .feature-icon-strip i {
    font-size: 1rem;
  }

  .feature-text-strip h6 {
    font-size: 0.8rem;
  }

  .feature-text-strip p {
    font-size: 0.7rem;
  }
}

.trust-badge-strip {
  font-size: 0.78rem;
  color: var(--v-text-muted);
  letter-spacing: 0.3px;
}

.trust-badge-strip i {
  color: var(--v-brand-lime);
  font-size: 0.82rem;
}

@media (max-width: 575.98px) {
  .trust-badge-strip {
    font-size: 0.7rem;
  }
}

/*--------------------------------------------------------------
# FLOATING INTERACTIVE UI ELEMENTS (WHATSAPP & SCROLL TOP)
--------------------------------------------------------------*/
.floating-action-group {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2000; /* Taaki modals aur headers ke upar sahi se dikhe */
}

.btn-floating-ui {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

/* WhatsApp Brand Custom Color */
.btn-float-whatsapp {
  background-color: #25d366;
}
.btn-float-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-3px);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* Back To Top Arrow Button */
.btn-float-scrolltop {
  background-color: var(--v-bg-surface);
  border: 1px solid var(--v-border-muted);
  color: var(--v-brand-lime);
  opacity: 0; /* Shuru me hidden rahega jab tak scroll na karein */
  visibility: hidden;
  transform: scale(0.8);
}

.btn-float-scrolltop.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.btn-float-scrolltop:hover {
  background: var(--v-brand-gradient);
  color: var(--v-bg-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px var(--v-brand-glow);
}

/*--------------------------------------------------------------
# MATURITY SCORING SYSTEM
--------------------------------------------------------------*/
.maturity-levels-wrapper {
  position: relative;
  padding: 2rem 0;
}

.maturity-connector {
  position: absolute;
  top: calc(2rem + 48px);
  height: 2px;
  z-index: 0;
  transform: translateY(-50%);
}

.maturity-conn-1 {
  left: 12.5%;
  right: 62.5%;
  background: linear-gradient(to right, #ef4444, #f59e0b);
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.4), 0 0 8px rgba(245, 158, 11, 0.4);
}

.maturity-conn-2 {
  left: 37.5%;
  right: 37.5%;
  background: linear-gradient(to right, #f59e0b, #22CC44);
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.4), 0 0 8px rgba(34, 204, 68, 0.4);
}

.maturity-conn-3 {
  left: 62.5%;
  right: 12.5%;
  background: linear-gradient(to right, #22CC44, #06b6d4);
  box-shadow: 0 0 8px rgba(34, 204, 68, 0.4), 0 0 8px rgba(6, 182, 212, 0.4);
}

.maturity-card {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.5rem;
}

.maturity-icon-ring {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  background: var(--v-bg-dark);
  z-index: 1;
}

.maturity-icon-ring.maturity-red {
  border-color: #ef4444;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.25);
}
.maturity-icon-ring.maturity-amber {
  border-color: #f59e0b;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.25);
}
.maturity-icon-ring.maturity-yellow {
  border-color: #22CC44;
  box-shadow: 0 0 20px rgba(34, 204, 68, 0.25);
}
.maturity-icon-ring.maturity-cyan {
  border-color: #06b6d4;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.25);
}

.maturity-icon {
  font-size: 2rem;
}

.maturity-red .maturity-icon { color: #ef4444; }
.maturity-amber .maturity-icon { color: #f59e0b; }
.maturity-yellow .maturity-icon { color: #22CC44; }
.maturity-cyan .maturity-icon { color: #06b6d4; }

.maturity-label {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.maturity-text-red { color: #ef4444; }
.maturity-text-amber { color: #f59e0b; }
.maturity-text-yellow { color: #22CC44; }
.maturity-text-cyan { color: #06b6d4; }

.maturity-desc {
  font-size: 0.85rem;
  color: var(--v-text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
}

.maturity-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  border: 1px solid;
  letter-spacing: 0.3px;
}

.maturity-badge-red {
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.08);
}
.maturity-badge-amber {
  color: #f59e0b;
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(245, 158, 11, 0.08);
}
.maturity-badge-yellow {
  color: #22CC44;
  border-color: rgba(34, 204, 68, 0.4);
  background: rgba(34, 204, 68, 0.08);
}
.maturity-badge-cyan {
  color: #06b6d4;
  border-color: rgba(6, 182, 212, 0.4);
  background: rgba(6, 182, 212, 0.08);
}

.maturity-footer-text {
  font-size: 0.95rem;
  color: var(--v-text-muted);
  font-weight: 500;
  margin-bottom: 0;
}

.maturity-footer-divider {
  color: var(--v-border-muted);
  margin: 0 0.75rem;
}

/* Responsive Maturity Adjustments */
@media (max-width: 991.98px) {
  .maturity-connector { display: none !important; }
  .maturity-icon-ring { width: 80px; height: 80px; }
  .maturity-icon { font-size: 1.6rem; }
  .maturity-label { font-size: 1rem; }
  .maturity-desc { font-size: 0.8rem; max-width: 160px; }
  .maturity-badge { font-size: 0.75rem; padding: 0.45rem 1rem; }
  .maturity-levels-wrapper { padding: 1rem 0; }
}

@media (max-width: 575.98px) {
  .maturity-icon-ring { width: 64px; height: 64px; }
  .maturity-icon { font-size: 1.25rem; }
  .maturity-label { font-size: 0.85rem; margin-bottom: 0.35rem; }
  .maturity-desc { font-size: 0.72rem; max-width: 130px; line-height: 1.4; margin-bottom: 0.75rem; }
  .maturity-badge { font-size: 0.65rem; padding: 0.35rem 0.6rem; border-radius: 4px; }
  .maturity-levels-wrapper { padding: 0.5rem 0; }
  .maturity-card { padding: 0 0.25rem; }
  .maturity-levels-wrapper .row { gap: 1rem !important; }
  .maturity-footer-text { font-size: 0.8rem; }
}

/*--------------------------------------------------------------
# MATURITY JOURNEY
--------------------------------------------------------------*/
.mj-timeline-wrapper {
  position: relative;
  padding: 4.5rem 0 1rem;
}

.mj-card-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}

.mj-col {
  flex: 0 1 200px;
  display: flex;
  justify-content: center;
  align-self: stretch;
}

.mj-card {
  text-align: center;
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, #0c1a12 0%, #0a0f0d 50%, #070c0a 100%);
  border-radius: 14px;
  padding: 3.25rem 1.25rem 1.5rem;
  width: 100%;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}

.mj-card-red {
  border: 1px solid rgba(239, 68, 68, 0.35);
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.08), inset 0 0 30px rgba(239, 68, 68, 0.03);
}
.mj-card-amber {
  border: 1px solid rgba(245, 158, 11, 0.35);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.08), inset 0 0 30px rgba(245, 158, 11, 0.03);
}
.mj-card-green {
  border: 1px solid rgba(34, 204, 68, 0.35);
  box-shadow: 0 0 20px rgba(34, 204, 68, 0.08), inset 0 0 30px rgba(34, 204, 68, 0.03);
}
.mj-card-cyan {
  border: 1px solid rgba(6, 182, 212, 0.35);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.08), inset 0 0 30px rgba(6, 182, 212, 0.03);
}
.mj-card-purple {
  border: 1px solid rgba(168, 85, 247, 0.35);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.08), inset 0 0 30px rgba(168, 85, 247, 0.03);
}

.mj-number {
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.mj-num-red { color: #ef4444; }
.mj-num-amber { color: #f59e0b; }
.mj-num-green { color: #22CC44; }
.mj-num-cyan { color: #06b6d4; }
.mj-num-purple { color: #a855f7; }

/* Hex icon overlapping top of card */
.mj-icon-wrap {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.mj-icon-hex {
  width: 76px;
  height: 76px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mj-hex-red {
  background: #ef4444;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}
.mj-hex-red .mj-hex-inner { background: #0a0f0d; }

.mj-hex-amber {
  background: #f59e0b;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}
.mj-hex-amber .mj-hex-inner { background: #0a0f0d; }

.mj-hex-green {
  background: #22CC44;
  box-shadow: 0 0 20px rgba(34, 204, 68, 0.3);
}
.mj-hex-green .mj-hex-inner { background: #0a0f0d; }

.mj-hex-cyan {
  background: #06b6d4;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}
.mj-hex-cyan .mj-hex-inner { background: #0a0f0d; }

.mj-hex-purple {
  background: #a855f7;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}
.mj-hex-purple .mj-hex-inner { background: #0a0f0d; }

.mj-hex-inner {
  width: 68px;
  height: 68px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mj-icon {
  font-size: 1.6rem;
  z-index: 2;
}

.mj-hex-red .mj-icon { color: #ef4444; }
.mj-hex-amber .mj-icon { color: #f59e0b; }
.mj-hex-green .mj-icon { color: #22CC44; }
.mj-hex-cyan .mj-icon { color: #06b6d4; }
.mj-hex-purple .mj-icon { color: #a855f7; }

.mj-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.mj-text-red { color: #ef4444; }
.mj-text-amber { color: #f59e0b; }
.mj-text-green { color: #22CC44; }
.mj-text-cyan { color: #06b6d4; }
.mj-text-purple { color: #a855f7; }

.mj-desc {
  font-size: 0.82rem;
  color: var(--v-text-muted);
  line-height: 1.5;
  max-width: 170px;
  margin: 0 auto;
  margin-bottom: 0;
}

/* Inline arrow connectors between cards */
.mj-arrow {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: 50px;
  gap: 0;
}

.mj-arrow-line {
  height: 3px;
  flex: 1;
  border-radius: 2px;
}

.mj-arrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: -1px;
  margin-right: -1px;
}

.mj-arrow-head {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  flex-shrink: 0;
}

.mj-arrow-1 .mj-arrow-line {
  background: linear-gradient(to right, #ef4444, #f59e0b);
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.4), 0 0 8px rgba(245, 158, 11, 0.4);
}
.mj-arrow-1 .mj-arrow-dot {
  background: #f59e0b;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.8);
}
.mj-arrow-1 .mj-arrow-head { border-left: 9px solid #f59e0b; }

.mj-arrow-2 .mj-arrow-line {
  background: linear-gradient(to right, #f59e0b, #22CC44);
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.4), 0 0 8px rgba(34, 204, 68, 0.4);
}
.mj-arrow-2 .mj-arrow-dot {
  background: #22CC44;
  box-shadow: 0 0 8px rgba(34, 204, 68, 0.8);
}
.mj-arrow-2 .mj-arrow-head { border-left: 9px solid #22CC44; }

.mj-arrow-3 .mj-arrow-line {
  background: linear-gradient(to right, #22CC44, #06b6d4);
  box-shadow: 0 0 8px rgba(34, 204, 68, 0.4), 0 0 8px rgba(6, 182, 212, 0.4);
}
.mj-arrow-3 .mj-arrow-dot {
  background: #06b6d4;
  box-shadow: 0 0 8px rgba(6, 182, 212, 0.8);
}
.mj-arrow-3 .mj-arrow-head { border-left: 9px solid #06b6d4; }

.mj-arrow-4 .mj-arrow-line {
  background: linear-gradient(to right, #06b6d4, #a855f7);
  box-shadow: 0 0 8px rgba(6, 182, 212, 0.4), 0 0 8px rgba(168, 85, 247, 0.4);
}
.mj-arrow-4 .mj-arrow-dot {
  background: #a855f7;
  box-shadow: 0 0 8px rgba(168, 85, 247, 0.8);
}
.mj-arrow-4 .mj-arrow-head { border-left: 9px solid #a855f7; }

/* Responsive Maturity Journey */
@media (max-width: 1199.98px) {
  .mj-arrow { display: none !important; }
  .mj-card-row { gap: 1rem; flex-wrap: wrap; }
  .mj-col { flex: 0 1 calc(50% - 0.5rem); }
}

@media (max-width: 991.98px) {
  .mj-card {
    max-width: 190px;
    padding: 3rem 1rem 1.5rem;
  }
  .mj-icon-wrap { top: -32px; }
  .mj-icon-hex { width: 68px; height: 68px; }
  .mj-hex-inner { width: 60px; height: 60px; }
  .mj-icon { font-size: 1.4rem; }
  .mj-title { font-size: 1rem; }
  .mj-desc { font-size: 0.78rem; max-width: 160px; }
}

@media (max-width: 575.98px) {
  .mj-card-row { gap: 0.75rem; }
  .mj-col { flex: 0 1 calc(50% - 0.375rem); }
  .mj-card {
    max-width: 165px;
    padding: 2.75rem 0.75rem 1.25rem;
    border-radius: 10px;
  }
  .mj-icon-wrap { top: -28px; }
  .mj-icon-hex { width: 56px; height: 56px; }
  .mj-hex-inner { width: 48px; height: 48px; }
  .mj-icon { font-size: 1.2rem; }
  .mj-number { font-size: 0.75rem; top: 10px; left: 12px; }
  .mj-title { font-size: 0.9rem; margin-bottom: 0.35rem; }
  .mj-desc { font-size: 0.72rem; max-width: 140px; line-height: 1.4; }
}

/*--------------------------------------------------------------
# EXECUTIVE-READY REPORT CARDS
--------------------------------------------------------------*/
.report-card-preview {
  background: linear-gradient(160deg, #0c1a12 0%, #060e09 50%, #040a06 100%);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: 16px;
  overflow: hidden;
  flex: 1;
  position: relative;
}

.report-card-glow {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.report-card-preview-inner {
  padding: 28px 24px;
  position: relative;
  z-index: 1;
}

.report-logo-wrap {
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.report-logo-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(34, 204, 68, 0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.report-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 8px;
}

.report-card-subtitle {
  font-size: 0.75rem;
  color: var(--v-text-muted);
  margin-bottom: 28px;
}

.report-score-ring {
  position: relative;
  width: 120px;
  height: 120px;
}

.report-score-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.4));
}

.report-score-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.report-score-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.report-score-total {
  font-size: 1rem;
  font-weight: 500;
  color: var(--v-text-muted);
}

.report-card-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 0;
}

.report-wave-svg {
  width: 100%;
  height: 100%;
}

/* Domain Insights Card */
.report-card-domains {
  background: var(--v-bg-surface);
  border: 1px solid var(--v-border-muted);
  border-radius: 16px;
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.report-card-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--v-border-muted);
}

.report-domain-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.report-domain-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.report-domain-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.report-domain-name {
  font-size: 0.82rem;
  color: var(--v-text-main);
}

.report-domain-score {
  font-size: 0.82rem;
  font-weight: 700;
  font-family: 'Courier New', monospace;
}

/* Recommendations Card */
.report-card-recommendations {
  background: var(--v-bg-surface);
  border: 1px solid var(--v-border-muted);
  border-radius: 16px;
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.report-rec-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.report-rec-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.report-rec-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.report-rec-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  display: block;
  margin-bottom: 2px;
}

.report-rec-desc {
  font-size: 0.72rem;
  color: var(--v-text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Bottom Section */
.report-bottom-text {
  font-size: 1rem;
  color: var(--v-text-muted);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn-report-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--v-brand-lime);
  border: 2px solid var(--v-brand-lime);
  background: transparent;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--v-transition-smooth);
}

.btn-report-download:hover {
  background: var(--v-brand-gradient);
  color: var(--v-bg-dark);
  box-shadow: 0 0 20px var(--v-brand-glow);
}

/* Responsive Report Cards */
@media (max-width: 991.98px) {
  .report-card-preview,
  .report-card-domains,
  .report-card-recommendations {
    min-height: auto;
  }
}

@media (max-width: 767.98px) {
  .report-card-preview-inner { padding: 20px 18px; }
  .report-card-title { font-size: 1.15rem; }
  .report-score-ring { width: 100px; height: 100px; }
  .report-score-num { font-size: 1.8rem; }
  .report-card-domains,
  .report-card-recommendations { padding: 20px 18px; }
}

/*--------------------------------------------------------------
# ASSESSMENT PAGE STYLES
--------------------------------------------------------------*/

/* Step Indicator Timeline */
.step-indicator-wrapper {
  background: var(--v-bg-surface);
  border: 1px solid var(--v-border-muted);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.step-timeline-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  position: relative;
}

.step-timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 17px;
  top: 42px;
  width: 2px;
  height: calc(100% - 20px);
  background: var(--v-border-muted);
  z-index: 1;
}

.step-badge {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--v-bg-dark);
  border: 2px solid var(--v-border-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--v-text-muted);
  transition: var(--v-transition-smooth);
  z-index: 2;
  flex-shrink: 0;
}

.step-timeline-item.active .step-badge {
  background: var(--v-brand-gradient);
  border-color: var(--v-brand-lime);
  color: var(--v-bg-dark);
  box-shadow: 0 0 15px var(--v-brand-glow);
}

.step-timeline-item.active .step-label {
  color: var(--v-text-main);
  font-weight: 600;
}

.step-timeline-item.completed .step-badge {
  background: var(--v-bg-dark);
  border-color: var(--v-brand-lime);
  color: var(--v-brand-lime);
}

.step-timeline-item.completed .step-label {
  color: var(--v-text-muted);
}

.step-label {
  font-size: 0.85rem;
  color: var(--v-text-dim);
  transition: var(--v-transition-smooth);
  line-height: 1.3;
}

.assessment-progress-container {
  background: var(--v-bg-surface);
  border: 1px solid var(--v-border-muted);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.progress-track-custom {
  height: 6px;
  background: var(--v-bg-dark);
  border-radius: 100px;
  overflow: hidden;
}

.progress-fill-custom {
  height: 100%;
  background: var(--v-brand-gradient);
  border-radius: 100px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Question Cards */
.card-question-wrapper {
  background: var(--v-bg-surface);
  border: 1px solid var(--v-border-muted);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.single-question-block {
  background: rgba(10, 15, 13, 0.4);
  border: 1px solid var(--v-border-muted);
  border-radius: 12px;
  padding: 1.75rem;
  margin-bottom: 2rem;
}

.question-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--v-brand-lime);
  font-weight: 600;
}

.question-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--v-text-main);
  line-height: 1.4;
  margin: 12px 0;
}

/* Selection Cards */
.interaction-row-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.interactive-selection-card {
  position: relative;
  background: var(--v-bg-dark);
  border: 1px solid var(--v-border-muted);
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: var(--v-transition-smooth);
  flex: 1 1 calc(25% - 0.75rem);
  min-width: 160px;
}

.interactive-selection-card:hover {
  border-color: rgba(34, 204, 68, 0.4);
  background: rgba(20, 36, 25, 0.3);
  transform: translateY(-1px);
}

.selection-input-native:focus-visible ~ .selection-ui-indicator {
  border-color: var(--v-brand-lime);
  box-shadow: 0 0 0 3px rgba(34, 204, 68, 0.25);
}

.selection-input-native:focus-visible ~ .selection-label-text {
  color: var(--v-brand-lime);
}

.selection-input-native {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.selection-ui-indicator {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--v-border-muted);
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--v-transition-smooth);
}

.selection-input-native:checked ~ .selection-ui-indicator {
  background: var(--v-brand-gradient);
  border-color: var(--v-brand-lime);
  box-shadow: 0 0 10px var(--v-brand-glow);
}

.selection-input-native:checked ~ .selection-ui-indicator::after {
  content: ""; 
  width: 6px;
  height: 6px;
  background-color: var(--v-bg-dark);
  border-radius: 50%;
}

.selection-label-text {
  font-size: 0.9rem;
  color: var(--v-text-main);
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}

.selection-input-native:checked ~ .selection-label-text {
  color: var(--v-brand-lime);
  font-weight: 600;
}

.interactive-selection-card:has(.selection-input-native:checked) {
  border-color: var(--v-brand-lime);
  background: rgba(20, 36, 25, 0.6);
}

.interactive-selection-card:has(.selection-input-native:focus-visible) {
  border-color: var(--v-brand-lime);
  background: rgba(20, 36, 25, 0.4);
  box-shadow: 0 0 0 2px rgba(34, 204, 68, 0.15);
}

/* Flow Views */
.questionnaire-flow-view {
  display: none;
}

.questionnaire-flow-view.state-visible {
  display: block;
  animation: viewFadeIn 0.4s ease-out forwards;
}

@keyframes viewFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Completion */
.completion-radial-holder {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, var(--v-bg-card-inner) 0%, var(--v-bg-dark) 100%);
  border: 3px solid var(--v-border-muted);
  border-top-color: var(--v-brand-lime);
  border-radius: 50%;
}

.completion-score {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--v-brand-lime);
}

/* -------------------------------------------------------
   SUCCESS DASHBOARD — Maturity Analysis Completed
   ------------------------------------------------------- */
.success-dashboard-panel {
  background: var(--v-bg-surface);
  border: 1px solid var(--v-border-muted);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.success-dashboard-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--v-text-main);
  margin-bottom: 1.75rem;
  letter-spacing: 0.3px;
}

.success-dashboard-body {
  display: flex;
  gap: 2rem;
  align-items: stretch;
}

/* ── Score / Donut Column ─────────────────────────────── */
.success-score-col {
  flex: 0 0 42%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-donut-wrap {
  position: relative;
  width: 220px;
  height: 220px;
}

.success-donut-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.donut-track {
  fill: none;
  stroke: #1a2e23;
  stroke-width: 12;
}

.donut-fill {
  fill: none;
  stroke: url(#donutGradient);
  stroke-width: 12;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-donut-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.success-score-big {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -1px;
}

.success-score-sep {
  font-weight: 300;
  color: var(--v-text-dim);
  margin: 0 2px;
}

.success-maturity-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--v-brand-lime);
  margin-top: 6px;
}

.success-maturity-sub {
  font-size: 0.72rem;
  color: var(--v-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 2px;
}

/* ── Stats Column ─────────────────────────────────────── */
.success-stats-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.success-stat-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.6rem 0.85rem;
  border-radius: 10px;
  background: rgba(10, 15, 13, 0.5);
  border: 1px solid var(--v-border-muted);
  transition: var(--v-transition-smooth);
}

.success-stat-row:hover {
  border-color: rgba(34, 204, 68, 0.25);
  background: rgba(20, 36, 25, 0.4);
}

.success-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.si-domains {
  background: rgba(34, 204, 68, 0.15);
  color: var(--v-brand-lime);
}

.si-questions {
  background: rgba(34, 204, 68, 0.15);
  color: var(--v-brand-lime);
}

.si-points {
  background: rgba(34, 204, 68, 0.15);
  color: var(--v-brand-lime);
}

.si-risk {
  background: rgba(255, 107, 107, 0.15);
  color: #ff6b6b;
}

.si-compliance {
  background: rgba(255, 183, 77, 0.15);
  color: #ffb74d;
}

.si-date {
  background: rgba(34, 204, 68, 0.15);
  color: var(--v-brand-lime);
}

.success-stat-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.success-stat-label {
  font-size: 0.72rem;
  color: var(--v-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.2;
}

.success-stat-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--v-text-main);
  line-height: 1.3;
}

.success-stat-value.text-moderate {
  color: #ffb74d;
}

/* ── Compliance Accuracy Bar ──────────────────────────── */
.success-compliance-bar {
  margin-top: 1.75rem;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  background: var(--v-bg-dark);
  border: 1px solid var(--v-border-muted);
}

.success-compliance-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--v-text-main);
}

.success-compliance-pct {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--v-brand-lime);
}

/* ── Disclaimer ────────────────────────────────────────── */
.success-disclaimer {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--v-text-dim);
  background: rgba(10, 15, 13, 0.4);
  border: 1px solid var(--v-border-muted);
  border-radius: 8px;
  text-align: left;
}

.success-disclaimer strong {
  color: var(--v-text-muted);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-right: 4px;
}

/* Assessment Page Main Layout */
.assessment-main {
  /* padding-top: 100px; */
}

/* Sticky sidebar for assessment - height:fit-content prevents flex stretch from breaking sticky */
.sticky-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  height: fit-content;
  align-self: flex-start;
}



/*--------------------------------------------------------------
# AZVIZORY SECTION — GO BEYOND ASSESSMENT
--------------------------------------------------------------*/
.azvizory-section {
  background: var(--v-bg-dark);
}
.azvizory-main-card {
  background-color: #050505;
  border: 1px solid #1a1a1a;
  border-radius: 16px;
  padding: 40px;
}
.azvizory-brand-title {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: #fff;
}
.azvizory-brand-subtitle {
  color: #8a8a8a;
  font-size: 0.95rem;
  margin-top: 5px;
}
.azvizory-logo-icon {
  color: var(--v-brand-lime);
  font-size: 2rem;
  margin-right: 10px;
  vertical-align: middle;
}
.azvizory-logo-text {
  font-weight: 700;
  letter-spacing: 4px;
  font-size: 1.5rem;
  margin-bottom: 0;
  color: #fff;
}
.azvizory-logo-subtext {
  font-size: 0.75rem;
  color: #8a8a8a;
}

/* Step Cards */
.azvizory-step-card {
  background-color: #0a0a0c;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.azvizory-step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.85rem;
  margin-right: 12px;
  flex-shrink: 0;
}
.azvizory-step-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}
.azvizory-step-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
}
.azvizory-step-desc {
  color: #8a8a8a;
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Step 1 — Green */
.azvizory-card-step-1 {
  border: 1px solid #112211;
}
.azvizory-step-number-1 {
  background: var(--v-brand-gradient);
  color: #000;
}
.azvizory-icon-green {
  font-size: 3rem;
  color: var(--v-brand-lime);
  opacity: 0.8;
}

/* Step 2 — Blue */
.azvizory-card-step-2 {
  border: 1px solid #003344;
  background: linear-gradient(180deg, #051118 0%, #0a0a0c 100%);
}
.azvizory-step-number-2 {
  background-color: #00d2ff;
  color: #000;
}
.azvizory-icon-blue {
  font-size: 3rem;
  color: #00d2ff;
  opacity: 0.8;
}

/* Step 3 — Amber */
.azvizory-card-step-3 {
  border: 1px solid #443300;
}
.azvizory-step-number-3 {
  background-color: #f59e0b;
  color: #000;
}

/* Custom List */
.azvizory-list {
  list-style: none;
  padding-left: 0;
  margin-top: auto;
}
.azvizory-list li {
  font-size: 0.85rem;
  color: #d1d5db;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}
.azvizory-list li i {
  margin-right: 10px;
  font-size: 0.9rem;
}
.azvizory-card-step-1 .azvizory-list i {
  color: var(--v-brand-lime);
}
.azvizory-card-step-2 .azvizory-list i {
  color: #00d2ff;
}

/* Sub-feature cards (Step 3) */
.azvizory-sub-feature-card {
  background-color: #0e0e11;
  border: 1px solid #1f1f24;
  border-radius: 8px;
  padding: 20px 12px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.azvizory-sub-feature-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  flex-shrink: 0;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.azvizory-sub-feature-title {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
}
.azvizory-sub-feature-desc {
  font-size: 0.72rem;
  color: #8a8a8a;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Step 3 Footer */
.azvizory-step3-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 15px;
}
.azvizory-platform-text {
  color: var(--v-brand-lime);
  font-size: 0.95rem;
  font-weight: 500;
}
.azvizory-explore-btn {
  border: 1px solid #334155;
  background: transparent;
  color: #00d2ff;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.azvizory-explore-btn:hover {
  background-color: rgba(0, 210, 255, 0.1);
  border-color: #00d2ff;
  color: #00d2ff;
}


/*--------------------------------------------------------------
# DPDPA DOMAINS SECTION — 5 CORE DOMAINS OVERVIEW
--------------------------------------------------------------*/
.dpdpa-domains-title {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 35px;
  color: #fff;
}

.domain-card {
  background-color: #090f1c;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: transform 0.2s ease;
}
.domain-card:hover {
  transform: translateY(-4px);
}
.domain-number {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}
.domain-icon {
  font-size: 3.2rem;
  margin-top: 15px;
  margin-bottom: 25px;
}
.domain-title {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.4;
  min-height: 52px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.domain-desc {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--v-text-muted);
  margin: 0;
  text-align: center;
}
.domain-metrics {
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 15px;
  width: 100%;
}
.metric-text {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 4px;
}
.metric-text:last-child {
  margin-bottom: 0;
}

/* Domain 1 — Green */
.domain-green {
  border: 1px solid rgba(34,204,68,0.3);
  background: linear-gradient(180deg, rgba(34,204,68,0.08) 0%, #090f1c 100%);
}
.domain-green .domain-number { background: var(--v-brand-gradient); }
.domain-green .domain-icon { color: #22CC44; filter: drop-shadow(0 0 12px rgba(34,204,68,0.3)); }

/* Domain 2 — Cyan */
.domain-cyan {
  border: 1px solid rgba(6,182,212,0.3);
  background: linear-gradient(180deg, rgba(6,182,212,0.08) 0%, #090f1c 100%);
}
.domain-cyan .domain-number { background-color: #06b6d4; }
.domain-cyan .domain-icon { color: #06b6d4; filter: drop-shadow(0 0 12px rgba(6,182,212,0.3)); }

/* Domain 3 — Amber */
.domain-amber {
  border: 1px solid rgba(245,158,11,0.3);
  background: linear-gradient(180deg, rgba(245,158,11,0.08) 0%, #090f1c 100%);
}
.domain-amber .domain-number { background-color: #f59e0b; }
.domain-amber .domain-icon { color: #f59e0b; filter: drop-shadow(0 0 12px rgba(245,158,11,0.3)); }

/* Domain 4 — Red */
.domain-red {
  border: 1px solid rgba(239,68,68,0.25);
  background: linear-gradient(180deg, rgba(239,68,68,0.06) 0%, #090f1c 100%);
}
.domain-red .domain-number { background-color: #ef4444; }
.domain-red .domain-icon { color: #ef4444; filter: drop-shadow(0 0 12px rgba(239,68,68,0.25)); }

/* Domain 5 — Purple */
.domain-purple {
  border: 1px solid rgba(168,85,247,0.25);
  background: linear-gradient(180deg, rgba(168,85,247,0.06) 0%, #090f1c 100%);
}
.domain-purple .domain-number { background-color: #a855f7; }
.domain-purple .domain-icon { color: #a855f7; filter: drop-shadow(0 0 12px rgba(168,85,247,0.25)); }

.dpdpa-domains-footer {
  text-align: center;
  margin-top: 35px;
}
.dpdpa-total-badge {
  display: inline-block;
  border: 1px solid rgba(34,204,68,0.6);
  background-color: rgba(34,204,68,0.04);
  color: #22CC44;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 10px 32px;
  border-radius: 8px;
  letter-spacing: 0.5px;
}

.btn-v-secondary a{
  text-decoration: none;
  color: #fff;
}
header .sticky-wrapper {
  transition: height .5s ease;
  -webkit-transition: height .5s ease;
  -moz-transition: height .5s ease;
  -ms-transition: height .5s ease;
  -o-transition: height .5s ease;
  background-color: var(--white);
}
.stuck .navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}
.navbar {
    background-color: var(--v-bg-dark);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-toggler {
    padding: 0.5rem;
    font-size: 1.25rem;
    line-height: 1;
    background: transparent;
    border: none;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    cursor: pointer;
}

.hamburger-icon span {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.15s ease;
}

.hamburger-icon span:nth-child(1) {
    width: 24px;
}

.hamburger-icon span:nth-child(2) {
    width: 24px;
}

.hamburger-icon span:nth-child(3) {
    width: 24px;
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/*--------------------------------------------------------------
# FOOTER REDESIGN
--------------------------------------------------------------*/

/* --- CTA Banner --- */
.footer-cta-wrapper {
  padding: 0 4rem;
  margin-bottom: 0;
}

.footer-cta-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 3rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--v-bg-surface) 0%, var(--v-bg-dark) 100%);
  border: 1px solid rgba(34, 204, 68, 0.2);
  overflow: hidden;
}

.footer-cta-glow {
  position: absolute;
  top: -60px;
  left: -60px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(34, 204, 68, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-cta-shield {
  position: relative;
  flex-shrink: 0;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-assessment-img {
  width: 100%;
  height: auto;
  max-width: 200px;
  display: block;
}

.footer-cta-content {
  flex: 1;
}

.footer-cta-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.footer-cta-title .text-lime {
  color: var(--v-brand-lime);
}

.footer-cta-desc {
  font-size: 0.92rem;
  color: var(--v-text-muted);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 0;
}

.footer-cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  gap: 1rem;
}

.btn-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--v-bg-dark);
  background: var(--v-brand-gradient);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--v-transition-smooth);
  white-space: nowrap;
}

.btn-footer-cta:hover {
  background: linear-gradient(90deg, #C8FF00 0%, #4ADE80 55%, #22CC44 100%);
  box-shadow: 0 0 24px var(--v-brand-glow);
  transform: translateY(-2px);
}

.footer-cta-note {
  font-size: 0.72rem;
  color: var(--v-text-muted);
  opacity: 0.7;
}

/* --- Footer Navigation --- */
.footer-nav-wrapper {
  padding: 2.5rem 4rem 1.5rem;
}

.footer-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-logo {
  height: 70px;
  width: auto;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.footer-brand-tagline {
  font-size: 0.65rem;
  color: var(--v-brand-lime);
  font-style: italic;
  letter-spacing: 0.03em;
}

.footer-brand-desc {
  font-size: 0.78rem;
  color: var(--v-text-muted);
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 0.85rem;
  color: var(--v-text-muted);
  text-decoration: none;
  transition: var(--v-transition-smooth);
  white-space: nowrap;
}

.footer-link:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--v-border-muted);
  background: var(--v-bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--v-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--v-transition-smooth);
}

.footer-social-icon:hover {
  border-color: var(--v-brand-lime);
  color: var(--v-brand-lime);
  background: rgba(34, 204, 68, 0.08);
}

.footer-copyright {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--v-border-muted);
}

.footer-copyright p {
  font-size: 0.78rem;
  color: var(--v-text-muted);
  margin: 0;
}

.footer-developer {
  font-size: 0.72rem;
  color: var(--v-text-dim);
  margin-top: 0.35rem;
}

.footer-developer a {
  color: var(--v-brand-lime);
  text-decoration: none;
  font-weight: 500;
}

.footer-developer a:hover {
  text-decoration: underline;
}

/* --- Footer Responsive --- */
@media (max-width: 991.98px) {
  .footer-cta-wrapper {
    padding: 0 2rem;
  }
  .footer-cta-banner {
    padding: 2rem;
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }
  .footer-cta-shield {
    width: 120px;
  }
  .footer-assessment-img {
    max-width: 100px;
  }
  .footer-cta-content {
    text-align: center;
  }
  .footer-cta-desc {
    max-width: 100%;
  }
  .footer-cta-action {
    align-items: center;
    width: 100%;
    margin-top: 0.5rem;
  }
  .footer-nav-wrapper {
    padding: 2rem 2rem 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .footer-cta-wrapper {
    padding: 0 1rem;
  }
  .footer-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1.2rem;
  }
  .footer-cta-title {
    font-size: 1.25rem;
  }
  .footer-cta-action {
    align-items: center;
  }
  .footer-nav-wrapper {
    padding: 1.5rem 1rem 1rem;
  }
  .footer-nav-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  .footer-brand {
    align-items: center;
  }
  .footer-links {
    justify-content: center;
    gap: 1rem;
  }
  .footer-social {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# HOW IT WORKS SECTION
--------------------------------------------------------------*/
.how-it-works-section {
  position: relative;
}

/* ── Flex row: stages + arrows ── */
.hiw-stages {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  width: 100%;
}

/* ── Individual stage ── */
.hiw-stage {
  flex: 0 0 auto;
  position: relative;
  text-align: center;
  width: 108px;
  transition: transform .28s var(--v-transition-smooth, cubic-bezier(.4,0,.2,1));
}
.hiw-stage:hover {
  transform: translateY(-4px);
}

/* ── Connector arrow ── */
.hiw-arrow {
  align-self: flex-start;
  flex: 1;
  margin-top: 40px;
  min-width: 32px;
}
.hiw-arrow-svg {
  display: block;
  height: 22px;
  width: 100%;
}

/* ── Hexagon wrapper ── */
.hiw-hex-wrap {
  height: 104px;
  margin: 0 auto 14px;
  position: relative;
  width: 100px;
}
.hiw-hex-svg {
  display: block;
  height: 100%;
  transition: filter .3s;
  width: 100%;
}

/* ── Icon inside hexagon ── */
.hiw-hex-ico {
  align-items: center;
  color: inherit;
  display: flex;
  font-size: 26px;
  inset: 0;
  justify-content: center;
  position: absolute;
}

/* ── Stage colour themes ── */
/* Stage 1 — Cyan */
.hiw-s-cyan { color: #00E5FF; }
.hiw-s-cyan .hiw-hex-svg { filter: drop-shadow(0 0 8px rgba(0,229,255,.6)); }
.hiw-s-cyan:hover .hiw-hex-svg { filter: drop-shadow(0 0 16px rgba(0,229,255,.85)); }
.hiw-s-cyan .hiw-sname { color: #00E5FF; }

/* Stage 2 — Teal-green */
.hiw-s-teal { color: #00CCA0; }
.hiw-s-teal .hiw-hex-svg { filter: drop-shadow(0 0 8px rgba(0,204,160,.6)); }
.hiw-s-teal:hover .hiw-hex-svg { filter: drop-shadow(0 0 16px rgba(0,204,160,.85)); }
.hiw-s-teal .hiw-sname { color: #00CCA0; }

/* Stage 3 — Lime-green */
.hiw-s-lime { color: #7DE000; }
.hiw-s-lime .hiw-hex-svg { filter: drop-shadow(0 0 9px rgba(125,224,0,.62)); }
.hiw-s-lime:hover .hiw-hex-svg { filter: drop-shadow(0 0 18px rgba(125,224,0,.88)); }
.hiw-s-lime .hiw-sname { color: #7DE000; }

/* Stage 4 — Bright lime */
.hiw-s-blime { color: #B7FF2A; }
.hiw-s-blime .hiw-hex-svg { filter: drop-shadow(0 0 12px rgba(183,255,42,.72)); }
.hiw-s-blime:hover .hiw-hex-svg { filter: drop-shadow(0 0 22px rgba(183,255,42,.95)); }
.hiw-s-blime .hiw-sname { color: #B7FF2A; }

/* ── Stage labels ── */
.hiw-sname {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: -.25px;
  margin-bottom: 5px;
  color: #fff;
}

.hiw-sdesc {
  color: rgba(255,255,255,.46);
  font-size: 11.5px;
  line-height: 1.56;
  margin: 0;
  max-width: 160px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Responsive ── */
@media (max-width: 1199.98px) {
  .hiw-stage {
    width: 92px;
  }
  .hiw-hex-wrap {
    height: 86px;
    width: 84px;
  }
  .hiw-hex-ico {
    font-size: 22px;
  }
  .hiw-sname {
    font-size: 12px;
  }
  .hiw-arrow {
    margin-top: 36px;
    min-width: 28px;
  }
}

@media (max-width: 991.98px) {
  .hiw-stages {
    gap: 12px 0;
  }
  .hiw-stage {
    width: 84px;
  }
  .hiw-hex-wrap {
    height: 78px;
    width: 76px;
  }
  .hiw-hex-ico {
    font-size: 18px;
  }
  .hiw-sname {
    font-size: 11px;
  }
  .hiw-sdesc {
    display: none;
  }
  .hiw-arrow {
    margin-top: 32px;
    min-width: 20px;
  }
}

@media (max-width: 767.98px) {
  .hiw-stages {
    gap: 10px 0;
  }
  .hiw-stage {
    width: 80px;
  }
  .hiw-hex-wrap {
    height: 74px;
    width: 72px;
  }
  .hiw-hex-ico {
    font-size: 17px;
  }
  .hiw-arrow {
    margin-top: 30px;
    min-width: 16px;
  }
}

@media (max-width: 575.98px) {
  .hiw-stages {
    flex-wrap: wrap;
    gap: 18px 12px;
    justify-content: center;
  }
  .hiw-arrow {
    display: none;
  }
  .hiw-stage {
    width: 100px;
  }
  .hiw-hex-wrap {
    height: 92px;
    width: 90px;
  }
  .hiw-hex-ico {
    font-size: 22px;
  }
  .hiw-sname {
    font-size: 12px;
  }
  .hiw-sdesc {
    display: block;
    max-width: 120px;
  }
}

/*--------------------------------------------------------------
# KEY BENEFITS SECTION
--------------------------------------------------------------*/
.key-benefits-section {
  position: relative;
}

.key-benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
}

.key-benefit-card {
  background: var(--v-bg-surface);
  border: 1px solid var(--v-border-muted);
  border-radius: 14px;
  padding: 1.8rem 1rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--v-transition-smooth);
}

.key-benefit-card:hover {
  border-color: rgba(34, 204, 68, 0.25);
  box-shadow: 0 0 20px rgba(34, 204, 68, 0.06);
}

.key-benefit-icon-wrap {
  margin-bottom: 0.9rem;
}

.key-benefit-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid rgba(34, 204, 68, 0.3);
  background: rgba(34, 204, 68, 0.03);
  box-shadow: 0 0 14px rgba(34, 204, 68, 0.07), inset 0 0 10px rgba(34, 204, 68, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}

.key-benefit-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--v-brand-lime);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.key-benefit-desc {
  font-size: 0.78rem;
  color: var(--v-text-muted);
  line-height: 1.5;
  margin-bottom: 0;
  max-width: 150px;
}

/* Responsive */
@media (max-width: 1199.98px) {
  .key-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .key-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .key-benefit-card {
    padding: 1.4rem 0.8rem 1.2rem;
  }
}

@media (max-width: 575.98px) {
  .key-benefits-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
}
.validation-error {
    border: 1px solid #ff4d4d !important;
    border-radius: 10px;
    padding: 10px;
}

/*--------------------------------------------------------------
# ABOUT PAGE
--------------------------------------------------------------*/

/* ── Header Title ── */
.about-header-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.about-header-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--v-border-muted));
}

.about-header-line:last-child {
  background: linear-gradient(90deg, var(--v-border-muted), transparent);
}

.about-header-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--v-brand-lime);
  box-shadow: 0 0 8px rgba(34, 204, 68, 0.5);
}

.about-header-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--v-brand-lime);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ── Hero Heading ── */
.about-hero-heading {
  color: #ffffff;
  font-weight: 800;
}

/* ── Hero Description ── */
.about-hero-desc {
  font-size: 0.92rem;
  color: var(--v-text-muted);
  line-height: 1.7;
  max-width: 540px;
}

/* ── Hero Image ── */
.about-hero-image-wrap {
  width: 100%;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

.about-orbit-icon-purple {
  border-color: rgba(168, 85, 247, 0.3);
  background: rgba(168, 85, 247, 0.06);
  color: #a855f7;
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.12);
}
.about-orbit-icon-purple:hover {
  border-color: #a855f7;
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.25);
}

.about-orbit-icon-red {
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.06);
  color: #ef4444;
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.12);
}
.about-orbit-icon-red:hover {
  border-color: #ef4444;
  box-shadow: 0 0 24px rgba(239, 68, 68, 0.25);
}

.about-orbit-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--v-text-muted);
  margin-top: 6px;
  white-space: nowrap;
  text-align: center;
}

/* ── Feature Cards ── */
.about-feature-card {
  background: var(--v-bg-surface);
  border: 1px solid var(--v-border-muted);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--v-transition-smooth);
  height: 100%;
}

.about-feature-card:hover {
  border-color: rgba(34, 204, 68, 0.25);
  box-shadow: 0 4px 24px rgba(34, 204, 68, 0.08);
  transform: translateY(-3px);
}

.about-feature-icon-wrap {
  margin-bottom: 1.2rem;
}

.about-feature-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(34, 204, 68, 0.25);
  background: rgba(34, 204, 68, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--v-brand-lime);
  font-size: 1.3rem;
  box-shadow: 0 0 14px rgba(34, 204, 68, 0.08), inset 0 0 10px rgba(34, 204, 68, 0.03);
  transition: var(--v-transition-smooth);
}

.about-feature-card:hover .about-feature-icon-circle {
  border-color: var(--v-brand-lime);
  box-shadow: 0 0 20px rgba(34, 204, 68, 0.15), inset 0 0 12px rgba(34, 204, 68, 0.05);
}

.about-feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.about-feature-desc {
  font-size: 0.82rem;
  color: var(--v-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ── Experience Card ── */
.about-experience-card {
  background: var(--v-bg-surface);
  border: 1px solid var(--v-border-muted);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.about-experience-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.about-experience-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.about-experience-logo-wrap {
  /* width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(34, 204, 68, 0.25);
  background: rgba(34, 204, 68, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; */
}

.about-experience-logo {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.about-experience-brand-text {
  display: flex;
  flex-direction: column;
}

.about-experience-label {
  font-size: 0.72rem;
  color: var(--v-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.about-experience-brand-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--v-brand-lime);
}

.about-experience-divider {
  width: 1px;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--v-border-muted) 20%, var(--v-border-muted) 80%, transparent);
  flex-shrink: 0;
}

.about-experience-desc-wrap {
  flex: 1;
}

.about-experience-desc {
  font-size: 0.88rem;
  color: var(--v-text-muted);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.about-experience-stats {
  display: flex;
  align-items: stretch;
  gap: 1.8rem;
  flex-shrink: 0;
}

.about-experience-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 110px;
}

.about-experience-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(34, 204, 68, 0.25);
  background: rgba(34, 204, 68, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--v-brand-lime);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}

.about-experience-stat-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg, transparent, var(--v-border-muted) 20%, var(--v-border-muted) 80%, transparent);
  flex-shrink: 0;
}

.about-experience-stat-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.about-experience-stat-label {
  font-size: 0.78rem;
  color: var(--v-text-muted);
  line-height: 1.3;
}

/* ── Founder Cards ── */
.about-founder-card {
  background: var(--v-bg-surface);
  border: 1px solid var(--v-border-muted);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: var(--v-transition-smooth);
}

.about-founder-card:hover {
  border-color: rgba(34, 204, 68, 0.25);
  box-shadow: 0 4px 24px rgba(34, 204, 68, 0.08);
  transform: translateY(-3px);
}

.about-founder-img-wrap {
  margin-bottom: 1.2rem;
}

.about-founder-img-placeholder {
  /* width: 100px;
  height: 100px; */
  border-radius: 50%;
  border: 2px solid rgba(34, 204, 68, 0.25);
  background: rgba(34, 204, 68, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--v-text-dim);
  font-size: 2rem;
  margin: 0 auto;
  overflow: hidden;
}

.about-founder-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.about-founder-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.about-founder-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(34, 204, 68, 0.1);
  border: 1px solid rgba(34, 204, 68, 0.25);
  color: var(--v-brand-lime);
  font-size: 1rem;
  text-decoration: none;
  transition: var(--v-transition-smooth);
}

.about-founder-linkedin:hover {
  background: var(--v-brand-lime);
  color: var(--v-bg-dark);
  box-shadow: 0 0 12px var(--v-brand-glow);
}

/*--------------------------------------------------------------
# RESOURCES PAGE
--------------------------------------------------------------*/

/* ── Hero Visual ── */
.resources-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resources-hero-icon-ring {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid rgba(34, 204, 68, 0.25);
  background: rgba(34, 204, 68, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--v-brand-lime);
  font-size: 3rem;
  box-shadow: 0 0 30px rgba(34, 204, 68, 0.1), inset 0 0 20px rgba(34, 204, 68, 0.04);
  position: relative;
  z-index: 2;
  animation: resourcePulse 3s ease-in-out infinite;
}

@keyframes resourcePulse {
  0%, 100% { box-shadow: 0 0 30px rgba(34, 204, 68, 0.1), inset 0 0 20px rgba(34, 204, 68, 0.04); }
  50% { box-shadow: 0 0 45px rgba(34, 204, 68, 0.18), inset 0 0 25px rgba(34, 204, 68, 0.06); }
}

.resources-hero-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 204, 68, 0.12) 0%, transparent 70%);
  z-index: 1;
}

/* ── Resource Card ── */
.resource-card {
  position: relative;
  background: linear-gradient(160deg, #0c1a12 0%, #0a0f0d 50%, #070c0a 100%);
  border: 1px solid var(--v-border-muted);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--v-transition-smooth);
  height: 100%;
}

.resource-card:hover {
  border-color: rgba(34, 204, 68, 0.3);
  box-shadow: 0 8px 32px rgba(34, 204, 68, 0.08), 0 0 20px rgba(34, 204, 68, 0.04);
  transform: translateY(-4px);
}

.resource-card-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 204, 68, 0.08) 0%, transparent 70%);
  pointer-events: none;
  transition: var(--v-transition-smooth);
}

.resource-card:hover .resource-card-glow {
  background: radial-gradient(circle, rgba(34, 204, 68, 0.14) 0%, transparent 70%);
  width: 200px;
  height: 200px;
}

.resource-card-inner {
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.resource-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.resource-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  border: 1px solid rgba(34, 204, 68, 0.3);
  background: rgba(34, 204, 68, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--v-brand-lime);
  font-size: 1.4rem;
  box-shadow: 0 0 16px rgba(34, 204, 68, 0.08);
  transition: var(--v-transition-smooth);
}

.resource-card:hover .resource-icon-circle {
  border-color: var(--v-brand-lime);
  box-shadow: 0 0 24px rgba(34, 204, 68, 0.15);
}

.resource-icon-cyan {
  border-color: rgba(6, 182, 212, 0.3);
  background: rgba(6, 182, 212, 0.06);
  color: #06b6d4;
  box-shadow: 0 0 16px rgba(6, 182, 212, 0.08);
}

.resource-card:hover .resource-icon-cyan {
  border-color: #06b6d4;
  box-shadow: 0 0 24px rgba(6, 182, 212, 0.15);
}

.resource-badge {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--v-brand-lime);
  background: rgba(34, 204, 68, 0.08);
  border: 1px solid rgba(34, 204, 68, 0.2);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.resource-badge-cyan {
  color: #06b6d4;
  background: rgba(6, 182, 212, 0.08);
  border-color: rgba(6, 182, 212, 0.2);
}

.resource-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.resource-card-desc {
  font-size: 0.85rem;
  color: var(--v-text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.resource-card-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--v-border-muted);
}

.resource-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--v-text-dim);
}

.resource-meta-item i {
  color: var(--v-brand-lime);
  font-size: 0.82rem;
}

.resource-card-action {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-resource-download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: var(--v-brand-gradient);
  color: #0a0f0d;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--v-transition-smooth);
  letter-spacing: 0.3px;
}

.btn-resource-download:hover {
  background: linear-gradient(90deg, #C8FF00 0%, #4ADE80 55%, #22CC44 100%);
  box-shadow: 0 0 20px rgba(34, 204, 68, 0.25);
  transform: translateY(-1px);
  color: #0a0f0d;
}

.btn-resource-download-cyan {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.btn-resource-download-cyan:hover {
  background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.25);
}

.btn-resource-view {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  background: transparent;
  color: var(--v-brand-lime);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(34, 204, 68, 0.25);
  border-radius: 10px;
  text-decoration: none;
  transition: var(--v-transition-smooth);
}

.btn-resource-view:hover {
  border-color: var(--v-brand-lime);
  background: rgba(34, 204, 68, 0.06);
  box-shadow: 0 0 12px rgba(34, 204, 68, 0.1);
  color: var(--v-brand-lime);
}

.btn-resource-view-cyan {
  color: #06b6d4;
  border-color: rgba(6, 182, 212, 0.25);
}

.btn-resource-view-cyan:hover {
  border-color: #06b6d4;
  background: rgba(6, 182, 212, 0.06);
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.1);
  color: #06b6d4;
}

/* ── Info Card ── */
.resources-info-card {
  background: var(--v-bg-surface);
  border: 1px solid var(--v-border-muted);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.resources-info-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.resources-info-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(34, 204, 68, 0.25);
  background: rgba(34, 204, 68, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--v-brand-lime);
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(34, 204, 68, 0.06);
}

.resources-info-content {
  flex: 1;
}

.resources-info-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.resources-info-desc {
  font-size: 0.85rem;
  color: var(--v-text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.resources-info-action {
  flex-shrink: 0;
}

/*--------------------------------------------------------------
# PRIVACY POLICY PAGE
--------------------------------------------------------------*/

/* ── Hero Section ── */
.pp-hero-section {
  position: relative;
  background: linear-gradient(180deg, var(--v-bg-surface) 0%, var(--v-bg-dark) 100%);
  border-bottom: 1px solid var(--v-border-muted);
  overflow: hidden;
}

.pp-hero-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.pp-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.pp-hero-glow-1 {
  top: -100px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 204, 68, 0.08) 0%, transparent 70%);
}

.pp-hero-glow-2 {
  bottom: -120px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
}

/* Hero Content */
.pp-hero-content {
  text-align: center;
  padding-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.pp-hero-icon-wrap {
  margin-bottom: 1.5rem;
}

.pp-hero-icon-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(34, 204, 68, 0.3);
  background: rgba(34, 204, 68, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--v-brand-lime);
  box-shadow: 0 0 30px rgba(34, 204, 68, 0.12), inset 0 0 20px rgba(34, 204, 68, 0.04);
  transition: var(--v-transition-smooth);
}

.pp-hero-icon-ring:hover {
  border-color: var(--v-brand-lime);
  box-shadow: 0 0 40px rgba(34, 204, 68, 0.2), inset 0 0 25px rgba(34, 204, 68, 0.06);
}

.pp-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.pp-hero-subtitle {
  font-size: 1rem;
  color: var(--v-text-muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 1.5rem;
}

.pp-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.pp-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--v-text-muted);
}

.pp-hero-meta-item i {
  color: var(--v-brand-lime);
  font-size: 0.9rem;
}

.pp-hero-meta-divider {
  width: 1px;
  height: 16px;
  background: var(--v-border-muted);
}

/* ── Content Section ── */
.pp-content-section {
  position: relative;
  padding-top: 0;
}

.pp-content-wrapper {
  /* max-width: 780px;
  margin: 0 auto; */
}

/* Section Blocks */
.pp-section-block {
  margin-bottom: 2.5rem;
}

.pp-section-block:last-of-type {
  margin-bottom: 1.5rem;
}

.pp-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--v-border-muted);
  line-height: 1.3;
}

.pp-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pp-list li {
  font-size: 0.9rem;
  color: var(--v-text-muted);
  line-height: 1.75;
  padding-left: 1.5rem;
  position: relative;
}

.pp-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--v-brand-lime);
  box-shadow: 0 0 8px rgba(34, 204, 68, 0.4);
}

.pp-list li strong {
  color: var(--v-text-main);
  font-weight: 600;
}

.pp-inline-link {
  color: var(--v-brand-lime);
  text-decoration: none;
  font-weight: 600;
  transition: var(--v-transition-smooth);
}

.pp-inline-link:hover {
  text-decoration: underline;
}

/* Contact Footer */
.pp-contact-footer {
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--v-border-muted);
}

.pp-contact-footer p {
  font-size: 0.9rem;
  color: var(--v-text-muted);
  line-height: 1.75;
  margin: 0;
}

/* Document Control & Change History */
.pp-doc-control {
  background: var(--v-bg-surface);
  border: 1px solid var(--v-border-muted);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.pp-doc-control-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--v-border-muted);
}

.pp-doc-control-title i {
  color: var(--v-brand-lime);
  font-size: 1.05rem;
}

.pp-doc-control-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.pp-doc-control-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.85rem;
  background: var(--v-bg-dark);
  border: 1px solid var(--v-border-muted);
  border-radius: 8px;
}

.pp-doc-control-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--v-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  min-width: 120px;
}

.pp-doc-control-value {
  font-size: 0.85rem;
  color: var(--v-text-main);
  font-weight: 500;
}

/* Change History Table */
.pp-table-wrapper {
  overflow-x: auto;
}

.pp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.pp-table thead th {
  text-align: left;
  padding: 0.65rem 0.85rem;
  background: var(--v-bg-dark);
  border: 1px solid var(--v-border-muted);
  color: var(--v-text-main);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.pp-table tbody td {
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--v-border-muted);
  color: var(--v-text-muted);
  line-height: 1.5;
}

.pp-table tbody tr:hover td {
  background: rgba(34, 204, 68, 0.03);
}

/* ── Responsive: Privacy Policy ── */
@media (max-width: 767.98px) {
  .pp-hero-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }
  .pp-hero-subtitle {
    font-size: 0.9rem;
  }
  .pp-hero-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  .pp-hero-meta-divider {
    display: none;
  }
  .pp-heading {
    font-size: 1.05rem;
  }
  .pp-list li {
    font-size: 0.85rem;
  }
  .pp-doc-control-grid {
    grid-template-columns: 1fr;
  }
  .pp-doc-control-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .pp-doc-control-label {
    min-width: auto;
  }
}

@media (max-width: 575.98px) {
  .pp-heading {
    font-size: 1rem;
    margin-bottom: 0.85rem;
  }
  .pp-list {
    gap: 0.6rem;
  }
  .pp-list li {
    font-size: 0.82rem;
    padding-left: 1.25rem;
    line-height: 1.65;
  }
  .pp-list li::before {
    top: 9px;
    width: 5px;
    height: 5px;
  }
  .pp-doc-control {
    padding: 1.25rem;
  }
  .pp-doc-control-title {
    font-size: 0.88rem;
  }
  .pp-table thead th,
  .pp-table tbody td {
    padding: 0.5rem 0.65rem;
    font-size: 0.72rem;
  }
}