/* ===== NEW SERVICES SECTION ===== */
.services-section-new {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: 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 ── */
.services-section-new .services-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* ── TOP ROW ── */
.services-section-new .top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 64px;
}

/* Left */
.services-section-new .top-left { display: flex; flex-direction: column; }

.services-section-new .section-label-new {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(14px);
  animation: s-up 0.7s cubic-bezier(0.22,1,0.36,1) 0.15s forwards;
  font-family: var(--font-body);
}
.services-section-new .label-star { width: 5px; height: 5px; border-radius: 50%; background: var(--text-primary); }

.services-section-new .headline {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.services-section-new .headline .line { display: block; overflow: hidden; padding-bottom: 5px;}
.services-section-new .headline .li {
  display: block;
  opacity: 0;
  transform: translateY(105%);
  animation: s-lineUp 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
}
.services-section-new .headline .line:nth-child(1) .li { animation-delay: 0.28s; }
.services-section-new .headline .line:nth-child(2) .li { animation-delay: 0.44s; }
.services-section-new .headline .line:nth-child(3) .li { animation-delay: 0.58s; }

/* Heavy weight — solid white */
.services-section-new .headline .w-heavy {
  font-weight: 800;
  color: var(--text-primary);
}
/* Focus part — accent */
.services-section-new .headline .w-accent {
  font-weight: 800;
  color: var(--accent);
}
/* Medium — slightly muted solid */
.services-section-new .headline .w-medium {
  font-weight: 800;
  color: var(--text-primary);
}

/* Right */
.services-section-new .top-right {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: s-up 0.8s cubic-bezier(0.22,1,0.36,1) 0.55s forwards;
}

.services-section-new .top-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 480px;
  font-family: var(--font-body);
}

.services-section-new .cta-row { display: flex; align-items: center; gap: 14px; }

.services-section-new .btn-quote {
  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: 100px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.25s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}
.services-section-new .btn-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255,255,255,0.09) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 100px;
}
.services-section-new .btn-quote:hover {
  background: rgba(0, 185, 244, 0.15);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 185, 244, 0.15);
}
.services-section-new .btn-quote:hover::before { opacity: 1; }

.services-section-new .btn-arrow-sm {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease;
}
.services-section-new .btn-arrow-sm:hover {
  transform: scale(1.12) rotate(45deg);
  box-shadow: 0 10px 36px rgba(0, 185, 244, 0.3);
}
.services-section-new .btn-arrow-sm svg { width: 16px; height: 16px; stroke: currentColor; }

/* ── SERVICE CARDS ── */
.services-section-new .cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 52px;
}

.services-section-new .card {
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 50px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition:
    background 0.45s cubic-bezier(0.22,1,0.36,1),
    border-color 0.45s cubic-bezier(0.22,1,0.36,1),
    transform 0.45s cubic-bezier(0.22,1,0.36,1),
    box-shadow 0.45s cubic-bezier(0.22,1,0.36,1);

  opacity: 0;
  transform: translateY(36px);
  animation: s-up 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
}
.services-section-new .card:nth-child(1) { animation-delay: 0.7s; }
.services-section-new .card:nth-child(2) { animation-delay: 0.85s; }
.services-section-new .card:nth-child(3) { animation-delay: 1s; }

/* Glass shimmer layer */
.services-section-new .card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.09) 0%,
    rgba(255,255,255,0.01) 45%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

/* Sweep shine */
.services-section-new .card::after {
  content: '';
  position: absolute;
  top: -80%;
  left: -70%;
  width: 55%;
  height: 250%;
  background: linear-gradient(
    110deg,
    transparent 25%,
    rgba(255,255,255,0.055) 50%,
    transparent 75%
  );
  transform: skewX(-8deg);
  transition: left 0.75s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}

.services-section-new .card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-6px);
  box-shadow:
    0 28px 70px rgba(0,0,0,0.5),
    0 0 0 0.5px rgba(255,255,255,0.07) inset,
    inset 0 1px 0 rgba(255,255,255,0.1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.services-section-new .card:hover::before { opacity: 1; }
.services-section-new .card:hover::after { left: 120%; }

/* Card top row */
.services-section-new .card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 70px;
}

.services-section-new .card-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  border: 0.5px solid rgba(255,255,255,0.08); /* Darker border default */
  background: rgba(0,185,244,0.03); /* slight blue tint */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), border-color 0.35s ease, background 0.35s ease;
}
.services-section-new .card:hover .card-icon {
  transform: scale(1.1);
  border-color: var(--accent);
  background: rgba(0, 185, 244, 0.1);
}
.services-section-new .card-icon svg { width: 32px; height: 32px; stroke: var(--accent); }

.services-section-new .card-arrow {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 14px;
  transition: border-color 0.35s ease, color 0.35s ease, transform 0.35s cubic-bezier(0.22,1,0.36,1), background 0.35s ease;
  flex-shrink: 0;
}
.services-section-new .card:hover .card-arrow {
  transform: translate(3px,-3px);
  color: var(--accent);
}
.services-section-new .card-arrow svg { width: 14px; height: 14px; }

/* Card text */
.services-section-new .card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  transition: letter-spacing 0.35s ease, color 0.35s ease;
}
.services-section-new .card:hover .card-title { letter-spacing: 0; color: var(--text-primary); }

.services-section-new .card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
  font-weight: 400;
  transition: color 0.35s ease;
}
.services-section-new .card:hover .card-desc { color: rgba(255,255,255,0.7); }

/* ── BOTTOM TAGLINE ── */
.services-section-new .bottom-tagline {
  text-align: center;
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: s-up 0.8s cubic-bezier(0.22,1,0.36,1) 1.1s forwards;
  font-family: var(--font-body);
}
.services-section-new .bottom-tagline a {
  color: var(--text-primary);
  font-weight: 600;
  transition: opacity 0.25s ease, color 0.25s ease;
}
.services-section-new .bottom-tagline a:hover { color: var(--accent); }

/* ── KEYFRAMES ── */
@keyframes s-up {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes s-lineUp {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
  .services-section-new .top-row { grid-template-columns: 1fr; gap: 40px; }
  .services-section-new .cards-row { grid-template-columns: 1fr; }
}
