/* ===== NEW ABOUT SECTION ===== */
.about-section-new {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow: hidden;
  padding: 120px 0;
}

/* Section-level noise, grid, orbs and cursor glow removed —
   handled globally by .global-noise / .global-grid-bg / .global-orb / .global-cursor-glow */


/* ── WRAPPER ── */
.about-section-new .about-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* ── LAYOUT ── */
.about-section-new .layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── LEFT COLUMN ── */
.about-section-new .left { display: flex; flex-direction: column; gap: 0; }

/* Section label */
.about-section-new .section-label-new {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(16px);
  animation: slideUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.2s forwards;
}
.about-section-new .label-star {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.8;
}

/* Headline */
.about-section-new .headline {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 56px;
}
.about-section-new .headline .line {
  display: block;
  overflow: hidden;
}
.about-section-new .headline .line-inner {
  display: block;
  opacity: 0;
  transform: translateY(110%);
  animation: lineReveal 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
}
.about-section-new .headline .line:nth-child(1) .line-inner { animation-delay: 0.35s; }
.about-section-new .headline .line:nth-child(2) .line-inner { animation-delay: 0.5s; }
.about-section-new .headline .line:nth-child(3) .line-inner { animation-delay: 0.65s; }
.about-section-new .headline .line:nth-child(4) .line-inner { animation-delay: 0.8s; }

.about-section-new .headline em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent);
  position: relative;
}

/* CTA row */
.about-section-new .cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.8s cubic-bezier(0.22,1,0.36,1) 1s forwards;
}

.about-section-new .btn-contact {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
  border: 0.5px solid rgba(255,255,255,0.15);
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  letter-spacing: 0.01em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.about-section-new .btn-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--radius-pill);
}
.about-section-new .btn-contact:hover {
  background: rgba(0, 185, 244, 0.15);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 185, 244, 0.2);
}
.about-section-new .btn-contact:hover::before { opacity: 1; }

.about-section-new .btn-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--text-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease;
  flex-shrink: 0;
}
.about-section-new .btn-arrow:hover {
  transform: scale(1.1) rotate(12deg);
  box-shadow: 0 8px 32px rgba(255,255,255,0.2);
}
.about-section-new .btn-arrow svg { width: 18px; height: 18px; }

/* ── RIGHT COLUMN ── */
.about-section-new .right {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}

/* Vertical divider */
.about-section-new .right::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 0;
  bottom: 0;
  width: 0.5px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.12) 20%, rgba(255,255,255,0.12) 80%, transparent);
  opacity: 0;
  animation: fadeIn 1s ease 0.8s forwards;
}

/* Feature cards */
.about-section-new .feature {
  padding: 28px 24px;
  border-radius: 16px;
  border: 0.5px solid transparent;
  background: transparent;
  cursor: default;
  position: relative;
  overflow: hidden;
  transition:
    background 0.4s cubic-bezier(0.22,1,0.36,1),
    border-color 0.4s cubic-bezier(0.22,1,0.36,1),
    transform 0.4s cubic-bezier(0.22,1,0.36,1),
    box-shadow 0.4s cubic-bezier(0.22,1,0.36,1);

  opacity: 0;
  transform: translateX(32px);
  animation: slideLeft 0.8s cubic-bezier(0.22,1,0.36,1) forwards;
}
.about-section-new .feature:nth-child(1) { animation-delay: 0.5s; }
.about-section-new .feature:nth-child(2) { animation-delay: 0.65s; }
.about-section-new .feature:nth-child(3) { animation-delay: 0.8s; }
.about-section-new .feature:nth-child(4) { animation-delay: 0.95s; }

/* Glass shimmer pseudo-element */
.about-section-new .feature::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.1) 0%,
    rgba(255,255,255,0.02) 40%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* Shine sweep on hover */
.about-section-new .feature::after {
  content: '';
  position: absolute;
  top: -60%;
  left: -80%;
  width: 60%;
  height: 220%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,0.06) 50%,
    transparent 70%
  );
  transform: skewX(-10deg);
  transition: left 0.7s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}

.about-section-new .feature:hover {
  background: rgba(255,255,255,0.05); /* var(--glass-hover-bg) */
  border-color: rgba(255,255,255,0.15); /* var(--glass-hover-border) */
  transform: translateX(6px) translateY(-2px);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.4),
    0 0 0 0.5px rgba(255,255,255,0.08) inset,
    inset 0 1px 0 rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.about-section-new .feature:hover::before { opacity: 1; }
.about-section-new .feature:hover::after { left: 120%; }

.about-section-new .feature-icon {
  width: 30px; height: 30px;
  margin-bottom: 14px;
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.about-section-new .feature-icon * {
  stroke: var(--text-primary);
}
.about-section-new .feature:hover .feature-icon {
  opacity: 1;
  transform: scale(1.1);
}
.about-section-new .feature:hover .feature-icon * {
  stroke: var(--accent);
}

.about-section-new .feature-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  transition: letter-spacing 0.3s ease, color 0.3s ease;
}
.about-section-new .feature:hover .feature-title { letter-spacing: 0em; color: var(--accent); }

.about-section-new .feature-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
  font-weight: 400;
  transition: color 0.3s ease;
}
.about-section-new .feature:hover .feature-desc { color: rgba(255,255,255,0.85); }

/* Separator line between cards */
.about-section-new .feature-sep {
  height: 0.5px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.07), transparent);
  margin: 0 24px;
  opacity: 0;
  animation: fadeIn 0.8s ease 1.1s forwards;
}

/* Cursor glow removed — handled globally */


@media (max-width: 991px) {
  .about-section-new .layout { grid-template-columns: 1fr; gap: 60px; }
  .about-section-new .right::before { display: none; }
}

@keyframes lineReveal {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideLeft {
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
