/**
 * PragmaApps V2 — Widget-Specific Styles
 * Each widget section is clearly labelled.
 */

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════════ */

.newV2-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--pav2-z-header);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--pav2-gray-200);
  transition: box-shadow var(--pav2-transition);
}

.newV2-header--scrolled { box-shadow: var(--pav2-shadow-md); }

.newV2-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.newV2-nav__right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.newV2-nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.newV2-nav__links a {
  font-family: var(--pav2-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--pav2-black);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--pav2-radius-sm);
  transition: background var(--pav2-transition-fast);
}

.newV2-nav__links a:hover,
.newV2-nav__links a.active {
  background: rgba(215,38,56,0.08);
  color: var(--pav2-red);
}

.newV2-nav__cta { display: flex; align-items: center; gap: 14px; }

/* ═══════════════════════════════════════════════════════════════
   HERO — LANDING PAGE
═══════════════════════════════════════════════════════════════ */

.newV2-hero {
  position: relative;
  background: var(--pav2-white);
  min-height: 94vh;
  padding-top: 140px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Red gradient blob */
.newV2-hero__blob {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(215,38,56,0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.newV2-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.newV2-hero__heading {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: var(--pav2-black);
  line-height: 1.1;
  margin: 0 0 20px;
}

.newV2-hero__heading em {
  color: var(--pav2-red);
  font-style: italic;
}

.newV2-hero__sub {
  font-size: 17px;
  color: var(--pav2-gray-700);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 0 32px;
}

.newV2-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.newV2-hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.newV2-hero__stat-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--pav2-black);
  line-height: 1;
  margin-bottom: 4px;
}

.newV2-hero__stat-label {
  font-size: 13px;
  color: var(--pav2-gray-500);
  font-weight: 500;
}

/* Hero Card (visual panel) */
.newV2-hero__visual { position: relative; }

.newV2-hero-card {
  background: var(--pav2-white);
  border: 1px solid var(--pav2-gray-200);
  border-radius: var(--pav2-radius);
  box-shadow: var(--pav2-shadow-lg);
  overflow: hidden;
}

.newV2-hero-card__header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--pav2-gray-50);
  border-bottom: 1px solid var(--pav2-gray-200);
}

.newV2-hero-card__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}

.newV2-hero-card__title {
  font-size: 12px;
  font-weight: 600;
  color: var(--pav2-gray-500);
  margin-left: 8px;
}

.newV2-hero-card__body { padding: 20px; }

.newV2-hero-pipeline {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.newV2-hero-pipeline__step {
  padding: 5px 12px;
  border-radius: var(--pav2-radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--pav2-gray-500);
  background: var(--pav2-gray-100);
  display: flex;
  align-items: center;
  gap: 4px;
}

.newV2-hero-pipeline__step--active {
  background: var(--pav2-red);
  color: var(--pav2-white);
}

.newV2-hero-pipeline__arrow {
  color: var(--pav2-gray-300);
  font-size: 14px;
  background: transparent;
}

.newV2-hero-card__metrics {
  display: flex;
  gap: 16px;
}

.newV2-hero-metric {
  flex: 1;
  text-align: center;
  padding: 12px;
  background: var(--pav2-gray-50);
  border-radius: var(--pav2-radius-sm);
}

.newV2-hero-metric__val {
  font-size: 20px;
  font-weight: 800;
  color: var(--pav2-black);
}

.newV2-hero-metric__label {
  font-size: 11px;
  color: var(--pav2-gray-500);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   HERO — SERVICE PAGE (DARK)
═══════════════════════════════════════════════════════════════ */

.newV2-hero--dark {
  background: var(--pav2-black);
  padding-top: 100px;
  padding-bottom: 0;
}

.newV2-hero__heading--dark {
  color: var(--pav2-white);
}

.newV2-hero__heading--dark em {
  color: var(--pav2-red);
}

.newV2-hero__sub--dark {
  color: rgba(255,255,255,0.7);
}

.newV2-hero__stats--dark .newV2-hero__stat-num  { color: var(--pav2-white); }
.newV2-hero__stats--dark .newV2-hero__stat-label { color: rgba(255,255,255,0.5); }

/* Hero Visual Cards (dark hero) */
.newV2-hero__visual--dark {
  position: relative;
  height: 420px;
}

/* Phase card */
.newV2-hv-phase {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  background: var(--pav2-black-soft);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--pav2-radius);
  padding: 14px 16px;
}

.newV2-hv-phase__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.newV2-hv-phase__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pav2PulseGreen 2s ease-in-out infinite;
}

.newV2-hv-phase__steps {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.newV2-hv-phase__step {
  padding: 4px 12px;
  border-radius: var(--pav2-radius-pill);
  font-size: 12px;
  font-weight: 600;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.55);
}

.newV2-hv-phase__step--active {
  background: var(--pav2-red);
  color: var(--pav2-white);
}

/* Code card */
.newV2-hv-code {
  position: absolute;
  top: 100px; left: 0;
  width: 60%;
  background: #0d1117;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--pav2-radius);
  padding: 14px 16px;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

.newV2-hv-code__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.newV2-hv-code__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pav2-red);
}

.newV2-hv-code__filename {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

.newV2-hv-code__body {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

.newV2-code-kw  { color: #ff79c6; }
.newV2-code-str { color: #50fa7b; }
.newV2-code-fn  { color: #8be9fd; }

/* AI status card */
.newV2-hv-ai {
  position: absolute;
  top: 100px; right: 0;
  width: 37%;
  background: var(--pav2-black-soft);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--pav2-radius);
  padding: 16px;
}

.newV2-hv-ai__status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
}

.newV2-hv-ai__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pav2PulseGreen 2s ease-in-out infinite;
}

.newV2-hv-ai__label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}

.newV2-hv-ai__bar {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}

.newV2-hv-ai__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--pav2-red) 0%, #f97316 100%);
  border-radius: 3px;
}

.newV2-hv-ai__val {
  font-size: 13px;
  font-weight: 700;
  color: var(--pav2-white);
  text-align: right;
}

/* Metrics card */
.newV2-hv-metrics {
  position: absolute;
  bottom: 0; left: 0;
  width: 60%;
  background: var(--pav2-black-soft);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--pav2-radius);
  padding: 14px 16px;
  display: flex;
  gap: 16px;
}

.newV2-hv-metric {
  flex: 1;
  text-align: center;
}

.newV2-hv-metric__val {
  font-size: 18px;
  font-weight: 800;
  color: var(--pav2-white);
}

.newV2-hv-metric__label {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* Delivery badge */
.newV2-hv-delivery {
  position: absolute;
  bottom: 0; right: 0;
  width: 37%;
  background: var(--pav2-red);
  border-radius: var(--pav2-radius);
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--pav2-white);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   APPROACH — TABS (HOW WE WORK)
═══════════════════════════════════════════════════════════════ */

.newV2-approach--tabs { background: var(--pav2-gray-50); }

.newV2-hww__tabs {
  display: flex;
  border-bottom: 2px solid var(--pav2-gray-200);
  margin-bottom: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.newV2-hww__tabs::-webkit-scrollbar { display: none; }

.newV2-hww__tab {
  flex: 1;
  min-width: 120px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  font-family: var(--pav2-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--pav2-gray-700);
  position: relative;
  transition: background var(--pav2-transition-fast), color var(--pav2-transition-fast);
  text-align: left;
}

.newV2-hww__tab:hover {
  background: rgba(215,38,56,0.05);
  color: var(--pav2-red);
}

.newV2-hww__tab--active {
  background: var(--pav2-black);
  color: var(--pav2-white);
  border-bottom-color: var(--pav2-black);
}

.newV2-hww__tab--active .newV2-hww__tab-label { color: var(--pav2-white); }

/* Progress bar on active tab */
.newV2-hww__tab--active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--pav2-red);
  transform-origin: left;
  animation: pav2TabProgress 7s linear;
}

.newV2-hww__tab-label { font-size: 14px; font-weight: 600; }

/* Panels */
.newV2-hww__panels { background: var(--pav2-white); border: 1px solid var(--pav2-gray-200); border-top: none; border-radius: 0 0 var(--pav2-radius) var(--pav2-radius); }

.newV2-hww__panel {
  display: none;
  padding: 40px;
  animation: pav2FadeUp 0.35s cubic-bezier(0.4,0,0.2,1) both;
}

.newV2-hww__panel--active { display: block; }

.newV2-hww__panel-header { margin-bottom: 28px; }

.newV2-hww__panel-phase {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pav2-red);
  margin-bottom: 8px;
}

.newV2-hww__panel-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--pav2-black);
  margin: 0 0 10px;
}

.newV2-hww__panel-desc {
  font-size: 15px;
  color: var(--pav2-gray-700);
  line-height: 1.7;
  max-width: 600px;
  margin: 0;
}

/* Card Grid */
.newV2-hww__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.newV2-hww__card {
  background: var(--pav2-white);
  border: 2px solid var(--pav2-gray-200);
  border-radius: var(--pav2-radius);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
  animation: pav2CardIn 0.4s cubic-bezier(0.4,0,0.2,1) both;
}

.newV2-hww__card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--pav2-red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}

.newV2-hww__card:hover {
  border-color: var(--pav2-red);
  box-shadow: var(--pav2-shadow-md);
  transform: translateY(-3px);
}
.newV2-hww__card:hover::before { transform: scaleY(1); }

.newV2-hww__card-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--pav2-red-light) 0%, #fef0f2 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.newV2-hww__card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--pav2-black);
  margin: 0;
}

.newV2-hww__card-desc {
  font-size: 13px;
  color: var(--pav2-gray-700);
  line-height: 1.6;
  margin: 0;
}

/* Microline / chip bar */
.newV2-hww__microline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 20px;
  background: linear-gradient(90deg, var(--pav2-black) 0%, var(--pav2-black-soft) 100%);
  border-radius: 0 0 var(--pav2-radius-sm) var(--pav2-radius-sm);
  margin: 0 -40px -40px;
}

.newV2-hww__chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 13px;
  border-radius: var(--pav2-radius-pill);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  font-family: var(--pav2-font);
}

/* ═══════════════════════════════════════════════════════════════
   APPROACH — STEPS (SERVICE PAGE)
═══════════════════════════════════════════════════════════════ */

.newV2-approach--steps { background: var(--pav2-white); }

.newV2-approach-steps__wrap { position: relative; }

.newV2-approach-steps__nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
  overflow-x: auto;
  scrollbar-width: none;
}
.newV2-approach-steps__nav::-webkit-scrollbar { display: none; }

.newV2-approach-steps__indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  cursor: pointer;
  border-radius: var(--pav2-radius);
  border: 2px solid var(--pav2-gray-200);
  background: var(--pav2-white);
  transition: all var(--pav2-transition);
  min-width: 110px;
}

.newV2-approach-steps__indicator:hover {
  border-color: var(--pav2-red);
}

.newV2-approach-steps__indicator--active {
  background: var(--pav2-red);
  border-color: var(--pav2-red);
  color: var(--pav2-white);
}

.newV2-approach-steps__num {
  font-size: 28px;
  font-weight: 800;
  color: inherit;
  line-height: 1;
}

.newV2-approach-steps__indicator:not(.newV2-approach-steps__indicator--active) .newV2-approach-steps__num {
  color: var(--pav2-black);
}

.newV2-approach-steps__step-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--pav2-gray-700);
}

.newV2-approach-steps__indicator--active .newV2-approach-steps__step-label {
  color: rgba(255,255,255,0.85);
}

.newV2-approach-steps__connector {
  height: 2px;
  flex: 1;
  background: var(--pav2-gray-200);
  min-width: 16px;
}

.newV2-approach-steps__connector--filled { background: var(--pav2-red); }

/* Panels */
.newV2-approach-steps__panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  animation: pav2FadeUp 0.35s cubic-bezier(0.4,0,0.2,1) both;
}
.newV2-approach-steps__panel--active { display: grid; }

.newV2-approach-steps__content-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.newV2-approach-steps__content-step {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pav2-red);
  margin-bottom: 8px;
}

.newV2-approach-steps__content-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--pav2-black);
  margin: 0 0 12px;
}

.newV2-approach-steps__content-desc {
  font-size: 15px;
  color: var(--pav2-gray-700);
  line-height: 1.75;
  margin: 0 0 24px;
}

.newV2-approach-steps__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newV2-approach-steps__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--pav2-black);
}

.newV2-approach-steps__feature-check {
  width: 20px; height: 20px;
  background: var(--pav2-red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--pav2-red);
  flex-shrink: 0;
}

/* Visual card */
.newV2-approach-steps__visual-card {
  background: var(--pav2-white);
  border: 1px solid var(--pav2-gray-200);
  border-radius: var(--pav2-radius);
  padding: 24px;
  box-shadow: var(--pav2-shadow-sm);
}

.newV2-approach-steps__visual-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--pav2-gray-200);
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pav2-gray-500);
}

.newV2-approach-steps__visual-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pav2PulseGreen 2s ease-in-out infinite;
}

.newV2-approach-steps__metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.newV2-approach-steps__metric {
  background: var(--pav2-gray-50);
  border: 1px solid var(--pav2-gray-200);
  border-radius: var(--pav2-radius-sm);
  padding: 14px 16px;
  text-align: center;
}

.newV2-approach-steps__metric-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--pav2-black);
  margin-bottom: 4px;
}

.newV2-approach-steps__metric-label {
  font-size: 11px;
  color: var(--pav2-gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.newV2-approach-steps__quote {
  padding: 14px 18px;
  background: var(--pav2-gray-50);
  border-left: 3px solid var(--pav2-red);
  border-radius: 0 var(--pav2-radius-sm) var(--pav2-radius-sm) 0;
}

.newV2-approach-steps__quote-text {
  font-size: 14px;
  color: var(--pav2-gray-700);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

/* Nav arrows */
.newV2-approach-steps__arrows {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.newV2-approach-steps__btn {
  width: 44px; height: 44px;
  border: 2px solid var(--pav2-gray-300);
  border-radius: 50%;
  background: var(--pav2-white);
  font-size: 18px;
  color: var(--pav2-gray-700);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--pav2-transition-fast);
}

.newV2-approach-steps__btn:hover {
  background: var(--pav2-red);
  border-color: var(--pav2-red);
  color: var(--pav2-white);
}

.newV2-approach-steps__counter {
  font-size: 14px;
  font-weight: 600;
  color: var(--pav2-gray-700);
}

.newV2-approach-steps__counter-cur { color: var(--pav2-black); }

/* ═══════════════════════════════════════════════════════════════
   RESULTS GRID
═══════════════════════════════════════════════════════════════ */

.newV2-results { background: var(--pav2-gray-50); }

.newV2-results__grid {
  display: grid;
  gap: 32px;
}

.newV2-results__grid--2col { grid-template-columns: repeat(2,1fr); }
.newV2-results__grid--3col { grid-template-columns: repeat(3,1fr); }
.newV2-results__grid--4col { grid-template-columns: repeat(4,1fr); }

.newV2-result-item { text-align: center; }

.newV2-result-item__icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  background: var(--pav2-white);
  border: 1px solid var(--pav2-gray-200);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: var(--pav2-shadow-sm);
}

.newV2-result-item__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--pav2-black);
  margin: 0 0 10px;
}

.newV2-result-item__text {
  font-size: 14px;
  color: var(--pav2-gray-700);
  line-height: 1.7;
  margin: 0;
}

.newV2-result-item--dark .newV2-result-item__title { color: var(--pav2-white); }
.newV2-result-item--dark .newV2-result-item__text  { color: rgba(255,255,255,0.65); }

/* ═══════════════════════════════════════════════════════════════
   CASE STUDY CAROUSEL
═══════════════════════════════════════════════════════════════ */

.newV2-case-studies { background: var(--pav2-white); }

.newV2-case-carousel {
  border: 1px solid var(--pav2-gray-200);
  border-radius: 20px;
  overflow: hidden;
}

.newV2-case-slide { display: none; }
.newV2-case-slide--active {
  display: block;
  animation: pav2FadeUp 0.35s cubic-bezier(0.4,0,0.2,1) both;
}

.newV2-case-slide__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

.newV2-case-slide__img-wrap {
  min-height: 480px;
  position: relative;
  overflow: hidden;
}

.newV2-case-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(215,38,56,0.3) 0%, transparent 60%);
}

.newV2-case-slide__badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--pav2-red);
  color: var(--pav2-white);
  padding: 8px 16px;
  border-radius: var(--pav2-radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--pav2-font);
}

.newV2-case-slide__industry {
  position: absolute;
  top: 24px; left: 24px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  font-family: var(--pav2-font);
}

.newV2-case-slide__content { padding: 44px 40px; }

.newV2-case-slide__client {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pav2-red);
  margin-bottom: 6px;
}

.newV2-case-slide__client-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--pav2-black);
  margin: 0 0 4px;
}

.newV2-case-slide__project {
  font-size: 16px;
  font-weight: 600;
  color: var(--pav2-gray-700);
  margin: 0 0 20px;
}

.newV2-case-slide__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--pav2-gray-500);
  margin: 16px 0 4px;
}

.newV2-case-slide__text {
  font-size: 14px;
  color: var(--pav2-gray-700);
  line-height: 1.7;
  margin: 0;
}

.newV2-case-slide__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--pav2-red);
  text-decoration: none;
  transition: gap var(--pav2-transition-fast);
}
.newV2-case-slide__link:hover { gap: 8px; color: var(--pav2-red-dark); }

.newV2-case-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.newV2-case-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--pav2-gray-300);
  border-radius: 50%;
  background: var(--pav2-white);
  font-size: 18px;
  cursor: pointer;
  transition: all var(--pav2-transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}
.newV2-case-btn:hover {
  background: var(--pav2-red);
  border-color: var(--pav2-red);
  color: var(--pav2-white);
}

.newV2-case-carousel__counter {
  font-size: 14px;
  font-weight: 600;
  color: var(--pav2-gray-500);
  min-width: 56px;
  text-align: center;
  font-family: var(--pav2-font);
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════════════════════ */

.newV2-contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.newV2-contact__info { display: flex; flex-direction: column; gap: 20px; }

.newV2-contact-card {
  border: 1px solid var(--pav2-gray-200);
  border-radius: var(--pav2-radius);
  padding: 28px;
}

.newV2-contact-card__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--pav2-black);
  margin: 0 0 20px;
}

.newV2-contact-form {
  border: 1px solid var(--pav2-gray-200);
  border-radius: var(--pav2-radius);
  padding: 36px;
}

.newV2-contact-form__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--pav2-black);
  margin: 0 0 24px;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */

.newV2-footer {
  background: var(--pav2-black);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
  font-family: var(--pav2-font);
}

.newV2-footer__top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.newV2-footer__desc {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  margin-top: 16px;
  color: rgba(255,255,255,0.55);
}

.newV2-footer__col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--pav2-white);
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.newV2-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newV2-footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--pav2-transition-fast);
  line-height: 1.5;
}
.newV2-footer__links a:hover { color: var(--pav2-red); }

.newV2-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 16px;
}

.newV2-footer__socials { display: flex; gap: 10px; }

/* ═══════════════════════════════════════════════════════════════
   CARDS GRID SECTION
═══════════════════════════════════════════════════════════════ */

.newV2-cards-grid {
  display: grid;
  gap: 24px;
}
.newV2-cards-grid--2col { grid-template-columns: repeat(2,1fr); }
.newV2-cards-grid--3col { grid-template-columns: repeat(3,1fr); }
.newV2-cards-grid--4col { grid-template-columns: repeat(4,1fr); }
