*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #2C3E50;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.prj-page {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===================== HERO ===================== */

.prj-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.prj-hero-wave {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image:
    url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='waveGrad' x1='0%25' y1='0%25' x2='0%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%23FFB399;stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:%23FFCCB3;stop-opacity:1' /%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M0,320 Q300,270 600,330 T1200,300 T1800,350 L1800,0 L0,0 Z' fill='url(%23waveGrad)'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-position: top center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

.prj-hero-wave-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #ffffff);
  z-index: 1;
  pointer-events: none;
}

.prj-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.prj-hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.prj-hero-right {
  position: relative;
  opacity: 0;
  animation: prjFadeUp 0.8s ease-out 0.45s forwards;
}

.prj-browser-mockup {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 8px 40px rgba(0,0,0,0.10),
    0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
  animation: prjFloat 6s ease-in-out infinite;
}

@keyframes prjFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.prj-browser-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.prj-browser-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.prj-browser-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.prj-browser-dots span:nth-child(1) { background: #ff5f57; }
.prj-browser-dots span:nth-child(2) { background: #ffbd2e; }
.prj-browser-dots span:nth-child(3) { background: #28ca42; }

.prj-browser-url-bar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 24px;
  padding: 0 10px;
  border-radius: 6px;
  background: #e9ecef;
  font-size: 11px;
  color: #6b7280;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
}

.prj-browser-url-bar svg { flex-shrink: 0; }

.prj-browser-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fafbfc;
}

.prj-dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prj-dash-title {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
}

.prj-dash-period {
  font-size: 10px;
  color: #94a3b8;
  font-weight: 500;
  padding: 3px 8px;
  background: #f1f5f9;
  border-radius: 4px;
}

.prj-dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.prj-dash-stat {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  opacity: 0;
  transform: translateY(6px);
  animation: prjStatIn 0.4s ease-out forwards;
}

.prj-dash-stat:nth-child(1) { animation-delay: 0.5s; }
.prj-dash-stat:nth-child(2) { animation-delay: 0.65s; }
.prj-dash-stat:nth-child(3) { animation-delay: 0.8s; }

@keyframes prjStatIn {
  to { opacity: 1; transform: translateY(0); }
}

.prj-dash-stat-val {
  font-size: 16px;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.02em;
}

.prj-dash-stat-lbl {
  font-size: 9px;
  color: #94a3b8;
  font-weight: 500;
}

.prj-dash-stat-trend {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 4px;
}

.prj-trend-up {
  color: #16a34a;
  background: #f0fdf4;
}

.prj-dash-chart-area {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 10px 10px 6px;
}

.prj-dash-chart-label {
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
  display: block;
  margin-bottom: 8px;
}

.prj-dash-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 64px;
}

.prj-chart-bar {
  flex: 1;
  background: linear-gradient(180deg, #FF844B 0%, #ffb088 100%);
  border-radius: 4px 4px 0 0;
  height: 0;
  animation: prjBarGrow 1s ease-out 0.8s forwards;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}

.prj-chart-bar span {
  font-size: 8px;
  color: #94a3b8;
  text-align: center;
  position: absolute;
  bottom: -14px;
  left: 0;
  right: 0;
}

@keyframes prjBarGrow {
  to { height: var(--h); }
}

.prj-dash-bottom {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 10px;
  align-items: start;
}

.prj-dash-ring-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.prj-dash-ring {
  width: 46px;
  height: 46px;
  position: relative;
}

.prj-dash-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.prj-ring-anim {
  stroke-dashoffset: 25;
}

.prj-ring-val {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #1e293b;
}

.prj-ring-label {
  font-size: 9px;
  font-weight: 600;
  color: #94a3b8;
}

.prj-dash-mini-list {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prj-dash-mini-row {
  display: flex;
  align-items: center;
  gap: 7px;
}

.prj-mini-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.prj-mini-dot-1 { background: #FF844B; }
.prj-mini-dot-2 { background: #3b82f6; }
.prj-mini-dot-3 { background: #a3e635; }

.prj-mini-text {
  font-size: 10px;
  color: #64748b;
  flex: 1;
}

.prj-mini-pct {
  font-size: 10px;
  font-weight: 700;
  color: #1e293b;
}

.prj-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #2C3E50;
  letter-spacing: 0.5px;
  width: fit-content;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  opacity: 0;
  animation: prjFadeUp 0.6s ease-out 0.1s forwards;
}

.prj-hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF844B;
  animation: prjPulse 2s ease-in-out infinite;
}

@keyframes prjPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.prj-hero-content {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.prj-hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: #2C3E50;
  max-width: 640px;
  opacity: 0;
  animation: prjFadeUp 0.7s ease-out 0.2s forwards;
}

.prj-gradient {
  background: linear-gradient(135deg, #FF844B 0%, #FF6B2C 50%, #FF844B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: prjGradShift 4s ease infinite;
}

@keyframes prjGradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.prj-hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #4a4a4a;
  max-width: 560px;
  opacity: 0;
  animation: prjFadeUp 0.7s ease-out 0.3s forwards;
}

.prj-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
  opacity: 0;
  animation: prjFadeUp 0.7s ease-out 0.4s forwards;
}

.prj-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #FF844B 0%, #FF6B2C 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(255, 132, 75, 0.3);
  position: relative;
  overflow: hidden;
}

.prj-btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.prj-btn-primary:hover::before {
  width: 350px;
  height: 350px;
}

.prj-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 132, 75, 0.4);
}

.prj-btn-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.prj-btn-primary:hover svg {
  transform: translateY(3px);
}

.prj-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #2C3E50;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.prj-btn-secondary:hover {
  background: rgba(255,255,255,0.9);
  border-color: #e2e8f0;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* ===================== GRID ===================== */

.prj-grid-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 80px;
  scroll-margin-top: 100px;
}

.prj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.prj-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.prj-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  border-color: rgba(255,132,75,0.2);
}

.prj-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #f1f5f9;
}

.prj-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.prj-card:hover .prj-card-img img {
  transform: scale(1.04);
}

.prj-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,62,80,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.prj-card:hover .prj-card-overlay { opacity: 1; }

.prj-card-overlay span {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.prj-card-overlay svg { width: 16px; height: 16px; }

.prj-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

.prj-tag {
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 100px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  color: #475569;
  border: 1px solid rgba(255,255,255,0.6);
}

.prj-tag-branche { color: #FF844B; }
.prj-tag-demo { background: rgba(34,197,94,0.18); color: #16a34a; border-color: rgba(34,197,94,0.4); }

.prj-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.prj-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #2C3E50;
  line-height: 1.3;
  transition: color 0.2s;
}

.prj-card:hover .prj-card-title { color: #FF844B; }

.prj-card-excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: #64748b;
}

.prj-card-result {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
}

.prj-card-result svg {
  width: 18px;
  height: 18px;
  color: #22c55e;
  flex-shrink: 0;
}

.prj-card-result span {
  font-size: 13px;
  font-weight: 600;
  color: #2C3E50;
}

/* ===================== DETAIL MODAL ===================== */

.prj-detail-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  overflow-y: auto;
  padding: 40px 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.prj-detail-overlay.active {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.prj-detail-overlay.visible { opacity: 1; }

.prj-detail-modal {
  width: 100%;
  max-width: 860px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.2);
  transform: translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  margin: auto;
}

.prj-detail-overlay.visible .prj-detail-modal { transform: translateY(0); }

.prj-detail-close {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
  padding: 16px 20px;
  background: linear-gradient(to bottom, #fff 60%, transparent);
}

.prj-detail-close button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-family: inherit;
}

.prj-detail-close button:hover { background: #f1f5f9; border-color: #cbd5e1; }
.prj-detail-close button svg { width: 18px; height: 18px; color: #64748b; }

.prj-detail-body {
  padding: 0 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.prj-detail-intro { display: flex; flex-direction: column; gap: 12px; }
.prj-detail-intro-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.prj-detail-intro-meta .prj-tag { font-size: 12px; padding: 5px 12px; }

.prj-detail-title {
  font-size: 32px;
  font-weight: 800;
  color: #2C3E50;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.prj-detail-context { font-size: 16px; line-height: 1.7; color: #4a4a4a; }

.prj-detail-block { display: flex; flex-direction: column; gap: 12px; }

.prj-detail-block-title {
  font-size: 20px;
  font-weight: 700;
  color: #2C3E50;
  letter-spacing: -0.01em;
}

.prj-detail-bullets { display: flex; flex-direction: column; gap: 8px; }

.prj-detail-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.55;
  color: #475569;
}

.prj-detail-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF844B;
  margin-top: 8px;
}

.prj-detail-prose { font-size: 15px; line-height: 1.7; color: #4a4a4a; }
.prj-detail-prose strong { color: #2C3E50; font-weight: 600; }

.prj-before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.prj-ba-col {
  padding: 20px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
}

.prj-ba-col h4 { font-size: 14px; font-weight: 700; color: #2C3E50; margin-bottom: 8px; }
.prj-ba-col ul { display: flex; flex-direction: column; gap: 4px; }

.prj-ba-col li {
  font-size: 14px;
  line-height: 1.55;
  color: #64748b;
  padding-left: 14px;
  position: relative;
}

.prj-ba-col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.prj-ba-before li::before { background: #ef4444; }
.prj-ba-after li::before { background: #22c55e; }

.prj-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }

.prj-metric {
  text-align: center;
  padding: 20px 16px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
}

.prj-metric strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #FF844B, #FF6B2C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.prj-metric span { font-size: 12px; font-weight: 500; color: #64748b; }

.prj-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }

.prj-spec {
  padding: 14px 16px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #f1f5f9;
}

.prj-spec dt {
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.prj-spec dd { font-size: 14px; font-weight: 600; color: #2C3E50; }

.prj-detail-quote {
  padding: 24px;
  background: linear-gradient(135deg, #fef8f5 0%, #fff 100%);
  border-left: 3px solid #FF844B;
  border-radius: 0 12px 12px 0;
}

.prj-detail-quote p {
  font-size: 15px;
  font-style: italic;
  line-height: 1.65;
  color: #4a4a4a;
  margin-bottom: 8px;
}

.prj-detail-quote cite { font-size: 13px; font-style: normal; font-weight: 600; color: #FF844B; }

.prj-detail-cta {
  text-align: center;
  padding: 32px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
}

.prj-detail-cta h3 { font-size: 20px; font-weight: 700; color: #2C3E50; margin-bottom: 8px; }
.prj-detail-cta p { font-size: 14px; color: #64748b; margin-bottom: 20px; }
.prj-detail-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===================== SHARED SECTION STYLES ===================== */

.prj-section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #FF844B;
  text-transform: uppercase;
}

.prj-section-label-light {
  color: rgba(255,255,255,0.8);
}

.prj-section-heading {
  font-size: 32px;
  font-weight: 800;
  color: #2C3E50;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.prj-section-heading-light {
  color: #fff;
}

.prj-section-sub {
  font-size: 16px;
  line-height: 1.7;
  color: #4a4a4a;
  max-width: 560px;
}

/* ===================== POSITIONERING ===================== */

.prj-positioning {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  position: relative;
}

.prj-positioning::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(226,232,240,0.8), transparent);
}

.prj-positioning-inner {
  display: flex;
  flex-direction: column;
}

.prj-positioning-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.prj-positioning-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 120px;
}

.prj-positioning-filter {
  margin-top: 12px;
  padding: 20px 24px;
  background: #fafbfc;
  border-left: 3px solid #FF844B;
  border-radius: 0 10px 10px 0;
}

.prj-positioning-filter p {
  font-size: 14px;
  line-height: 1.7;
  color: #64748b;
  font-weight: 500;
}

.prj-positioning-filter p + p {
  margin-top: 4px;
  color: #2C3E50;
  font-weight: 600;
}

.prj-positioning-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.prj-pos-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.prj-pos-item:first-child {
  padding-top: 0;
}

.prj-pos-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.prj-pos-item:hover {
  padding-left: 8px;
}

.prj-pos-item:hover .prj-pos-num {
  color: #FF844B;
}

.prj-pos-num {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #e2e8f0;
  line-height: 1;
  min-width: 40px;
  transition: color 0.3s ease;
  flex-shrink: 0;
  padding-top: 2px;
}

.prj-pos-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.prj-pos-content h3 {
  font-size: 15px;
  font-weight: 700;
  color: #2C3E50;
  line-height: 1.3;
}

.prj-pos-content p {
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
}

/* ===================== WERKWIJZE ===================== */

.prj-method {
  position: relative;
  padding: 100px 0;
  background: #2C3E50;
  overflow: hidden;
}

.prj-method-wave {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L0,40 Q360,80 720,40 T1440,40 L1440,0 Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
}

.prj-method-wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,80 L0,40 Q360,0 720,40 T1440,40 L1440,80 Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
}

.prj-method-inner {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.prj-method-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prj-method-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
}

.prj-method-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prj-method-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.prj-method-step:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,132,75,0.3);
  transform: translateY(-2px);
}

.prj-method-num {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #FF844B, #FF6B2C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  min-width: 36px;
}

.prj-method-step strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.3;
}

.prj-method-step span {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
}

/* ===================== CTA BANNER ===================== */

.prj-cta-banner-section {
  padding: 48px 0 2rem 0;
}

.prj-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.prj-cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  padding: 1.75rem;
  background: linear-gradient(135deg, #ff7a3d 0%, #ff9f5a 50%, #ffc299 100%);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: scale(0.95);
  transition: all 1s ease-out;
}

.prj-cta-banner.visible {
  opacity: 1;
  transform: scale(1);
}

.prj-cta-circles-container {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 66.666%;
  pointer-events: none;
  overflow: hidden;
}

.prj-cta-circles-wrapper {
  position: absolute;
  right: -8rem;
  top: 50%;
  transform: translateY(-50%) scale(0.75);
  opacity: 0;
  transition: all 1.5s ease-out 0.3s;
}

.prj-cta-banner.visible .prj-cta-circles-wrapper {
  transform: translateY(-50%) scale(1);
  opacity: 1;
}

.prj-cta-circles {
  position: relative;
  width: 24rem;
  height: 24rem;
}

.prj-cta-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.5);
  transition: all 1s ease-out;
}

.prj-cta-banner.visible .prj-cta-circle {
  opacity: 1;
  transform: scale(1);
}

.prj-cta-circle-1 { inset: 0; border: 60px solid rgba(251, 146, 60, 0.3); transition-delay: 0.5s; }
.prj-cta-circle-2 { inset: 3rem; border: 50px solid rgba(253, 186, 116, 0.25); transition-delay: 0.7s; }
.prj-cta-circle-3 { inset: 6rem; border: 40px solid rgba(254, 215, 170, 0.2); transition-delay: 0.9s; }
.prj-cta-circle-4 { inset: 9rem; border: 30px solid rgba(255, 237, 213, 0.15); transition-delay: 1.1s; }

.prj-cta-floating-text-container {
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  height: 0;
  overflow: visible;
  pointer-events: none;
  opacity: 0.05;
}

.prj-cta-floating-text {
  color: white;
  font-weight: 900;
  font-size: 2.25rem;
  white-space: nowrap;
  animation: prjScrollText 30s linear infinite;
}

@keyframes prjScrollText {
  0% { transform: translateX(0) rotate(-6deg); }
  100% { transform: translateX(-50%) rotate(-6deg); }
}

.prj-cta-content {
  position: relative;
  z-index: 10;
  max-width: 42rem;
}

.prj-cta-title {
  font-size: 1.75rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.75rem;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: all 1s ease-out 0.5s;
}

.prj-cta-banner.visible .prj-cta-title {
  opacity: 1;
  transform: translateY(0);
}

.prj-cta-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
  line-height: 1.6;
  max-width: 36rem;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: all 1s ease-out 0.7s;
}

.prj-cta-banner.visible .prj-cta-description {
  opacity: 1;
  transform: translateY(0);
}

.prj-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: all 1s ease-out 0.9s;
}

.prj-cta-banner.visible .prj-cta-buttons {
  opacity: 1;
  transform: translateY(0);
}

.prj-cta-btn {
  background-color: black;
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: inherit;
}

.prj-cta-btn:hover {
  background-color: #1f2937;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.prj-cta-btn svg { transition: transform 0.3s ease; }
.prj-cta-btn:hover svg { transform: translateX(0.25rem); }

/* ===================== AANLEVEREN ===================== */

.prj-aanleveren {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.prj-aanleveren-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.prj-aanleveren-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prj-aanleveren-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.prj-aanleveren-card {
  padding: 28px 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prj-aanleveren-card:hover {
  border-color: rgba(255,132,75,0.2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}

.prj-aanleveren-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,132,75,0.1), rgba(255,107,44,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
}

.prj-aanleveren-icon svg { width: 22px; height: 22px; color: #FF844B; }

.prj-aanleveren-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #2C3E50;
  line-height: 1.3;
}

.prj-aanleveren-card p {
  font-size: 13px;
  line-height: 1.65;
  color: #64748b;
}

.prj-aanleveren-note {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  background: linear-gradient(135deg, #fef8f5, #fff);
  border: 1px solid rgba(255,132,75,0.15);
  border-radius: 14px;
}

.prj-aanleveren-note svg {
  width: 24px;
  height: 24px;
  color: #FF844B;
  flex-shrink: 0;
}

.prj-aanleveren-note p {
  font-size: 14px;
  line-height: 1.6;
  color: #4a4a4a;
  font-weight: 500;
}

.prj-empty-state { grid-column: 1 / -1; text-align: center; padding: 80px 40px; }
.prj-empty-state p { font-size: 16px; color: #94a3b8; }

/* ===================== RESPONSIVE ===================== */

@media (min-width: 640px) {
  .prj-cta-banner { padding: 2rem 2.5rem; }
  .prj-cta-buttons { flex-direction: row; }
  .prj-cta-floating-text { font-size: 3rem; }
  .prj-cta-circles { width: 22rem; height: 22rem; }
}

@media (min-width: 1024px) {
  .prj-cta-banner { padding: 2.5rem 3rem; }
  .prj-cta-title { font-size: 2.25rem; }
  .prj-cta-description { font-size: 0.95rem; }
  .prj-cta-floating-text { font-size: 3.5rem; }
  .prj-cta-circles { width: 26rem; height: 26rem; }
}

@media (max-width: 1024px) {
  .prj-hero-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .prj-hero-title { font-size: 44px; }

  .prj-grid { grid-template-columns: repeat(2, 1fr); }

  .prj-positioning-cols { gap: 40px; }

  .prj-method-inner { gap: 36px; }

  .prj-aanleveren-grid { grid-template-columns: repeat(2, 1fr); }

  .prj-section-heading { font-size: 28px; }
}

@media (max-width: 768px) {
  .prj-hero-inner { padding: 130px 24px 56px; gap: 24px; grid-template-columns: 1fr; }
  .prj-hero-title { font-size: 36px; }
  .prj-hero-desc { font-size: 15px; }

  .prj-hero-btns { flex-direction: column; }
  .prj-btn-primary, .prj-btn-secondary { width: 100%; justify-content: center; }

  .prj-browser-mockup { max-width: 400px; margin: 0 auto; }
  .prj-dash-bottom { grid-template-columns: 1fr 1fr; }
  .prj-dash-mini-list { grid-column: 1 / -1; }

  .prj-grid-section { padding: 0 24px 48px; }
  .prj-grid { grid-template-columns: 1fr; gap: 20px; max-width: 480px; margin: 0 auto; }

  .prj-positioning { padding: 48px 24px; }
  .prj-positioning-cols { grid-template-columns: 1fr; gap: 32px; }
  .prj-positioning-left { position: static; }

  .prj-method { padding: 80px 0; }
  .prj-method-inner { padding: 0 24px; grid-template-columns: 1fr; gap: 32px; }

  .prj-cta-container { padding: 0 24px; }
  .prj-cta-banner-section { padding: 40px 0 2rem 0; }

  .prj-aanleveren { padding: 0 24px 48px; }
  .prj-aanleveren-grid { grid-template-columns: 1fr; gap: 16px; }

  .prj-section-heading { font-size: 26px; }

  .prj-detail-body { padding: 0 24px 32px; }
  .prj-detail-title { font-size: 26px; }
  .prj-before-after { grid-template-columns: 1fr; }
  .prj-metrics { grid-template-columns: 1fr 1fr; }
  .prj-specs { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .prj-hero-inner { padding: 110px 16px 40px; }
  .prj-hero-title { font-size: 30px; }
  .prj-hero-desc { font-size: 14px; }

  .prj-dash-stats { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .prj-dash-stat-val { font-size: 13px; }
  .prj-dash-chart { height: 48px; }
  .prj-dash-bottom { grid-template-columns: 1fr 1fr; }
  .prj-dash-mini-list { grid-column: 1 / -1; }

  .prj-grid-section { padding: 0 16px 40px; }
  .prj-card-body { padding: 16px; }
  .prj-card-title { font-size: 15px; }

  .prj-positioning { padding: 32px 16px; }

  .prj-method { padding: 60px 0; }
  .prj-method-wave,
  .prj-method-wave-bottom { height: 50px; }
  .prj-method-inner { padding: 0 16px; }

  .prj-cta-container { padding: 0 16px; }

  .prj-aanleveren { padding: 0 16px 40px; }
  .prj-aanleveren-note { flex-direction: column; text-align: center; gap: 10px; }

  .prj-metrics { grid-template-columns: 1fr; }
  .prj-specs { grid-template-columns: 1fr; }
  .prj-detail-modal { border-radius: 16px; }
  .prj-detail-overlay { padding: 20px 12px; }
}
