/* ===== Technical Advantages Page ===== */

.tech-adv-page {
  background: #000;
}

.tech-adv-hero {
  padding: 4rem 0 3.5rem;
  text-align: center;
}

.tech-adv-title {
  font-size: clamp(1.85rem, 2vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.tech-adv-sub {
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.6;
}

.tech-adv-section {
  padding: 3rem 0;
}

.tech-adv-section-last {
  padding-bottom: 6rem;
}

.section-pill {
  display: inline-block;
  background: #333333;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  font-size: clamp(1.2rem, 2vw, 1.53rem);
  font-weight: 500;
  padding: 0.45rem 1.6rem;
  border-radius: 50px;
}

/* Stats */
.stats-row {
  margin: 2rem 0px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: #080808;
  padding-bottom: 1rem;
}

.stat-box {
  text-align: center;
  padding: 0.5rem 0;
}

.stat-num {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--blue-primary);
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.stat-label {
  display: block;
  color: var(--text-secondary);
  font-weight: 300;
}

/* Feature Cards */
.feature-cards-wrap {
  position: relative;
  isolation: isolate;
}

.feature-cards-wrap .values-glow {
  position: absolute;
  width: min(440px, 78vw);
  height: min(340px, 56vw);
  background: radial-gradient(
    ellipse 52% 52% at 50% 50%,
    rgba(1, 0, 127, 1) 0%,
    rgba(0, 82, 255, 0.38) 36%,
    rgba(0, 82, 255, 0.12) 52%,
    transparent 68%
  );
  filter: blur(38px);
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
}

.feature-cards-wrap .values-glow--right {
  top: 38%;
  right: -6%;
  left: auto;
  transform: translateY(-50%);
}

.feature-cards-wrap .values-glow--left {
  top: 72%;
  left: -6%;
  right: auto;
  transform: translateY(-50%);
}

.feature-cards {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.feature-card {
  position: relative;
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  overflow: hidden;
}

.feature-card-glow {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 200px;
  height: 120px;
  background: radial-gradient(ellipse, rgba(0, 82, 255, 0.25) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  opacity: 0;
}

.feature-card-glow-active .feature-card-glow {
  opacity: 1;
}

.feature-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;

  padding: 1.35rem 1.5rem;
  font-family: var(--font-outfit);
  font-weight: 700;
}

.feature-card h3 {

  font-weight: 600;
  margin: 0;
}

.feature-card-body {
  padding: 0 1.5rem 1.35rem;
}

.feature-card-body p {
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
  max-width: 720px;
}

.feature-card-expand.collapsing .feature-card-body,
.feature-card-expand.show .feature-card-body {
  padding-top: 0;
}

.feature-check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: var(--blue-primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.feature-check-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.feature-check:not(.collapsed) .feature-check-icon {
  transform: rotate(180deg);
}

.feature-check:hover {
  background: #1a66ff;
}

.feature-check:focus-visible {
  outline: 2px solid rgba(0, 82, 255, 0.6);
  outline-offset: 2px;
}

/* Compliance Grid */
.compliance-card {
  background: #141419;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}

.compliance-text {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
  line-height: 1.65;
  margin: 0 0 2rem;
  flex: 1;
}

.compliance-title {
  font-size: clamp(1.2rem, 2vw, 1.36rem);
  font-weight: 500;
  line-height: 1.25;
  margin: 0;
  margin-top: auto;
  color: var(--text-primary);
}

/* Innovation Labs */
.lab-card {
  background: #141419;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.lab-card-wide {
  min-height: auto;
}

.lab-card h3 {

  font-weight: 600;
  margin-bottom: 0.5rem;
}

.lab-card p {
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.lab-card-wide p {
  margin-bottom: 0;
}

.lab-visual {
  margin-top: auto;
  border-radius: 8px;
  overflow: hidden;
}

.lab-waves {
  height: 100px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 82, 255, 0.08) 100%);
  position: relative;
}

.lab-waves::before,
.lab-waves::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 60'%3E%3Cpath fill='none' stroke='%230052ff' stroke-width='2' opacity='0.5' d='M0 40 Q50 20 100 40 T200 40 T300 40 T400 40'/%3E%3Cpath fill='none' stroke='%233d7bff' stroke-width='1.5' opacity='0.35' d='M0 50 Q50 30 100 50 T200 50 T300 50 T400 50'/%3E%3C/svg%3E") repeat-x bottom;
  background-size: 400px 60px;
}

.lab-tags {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: auto;
}

.lab-tags span {
  display: block;
  width: 100%;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  line-height: 1.4;
}

.tech-adv-footer {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.tech-adv-footer .footer-tagline {
  text-transform: none;
}

@media (max-width: 575.98px) {
  .tech-adv-hero {
    padding-top: 3rem;
  }

  .feature-card-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .feature-check {
    align-self: flex-end;
  }
}
