.veille-video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.veille-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  z-index: -2;
}

.veille-wrapper {
  padding: 140px 40px 80px;
  color: var(--text-white);
  max-width: 1400px;
  margin: 0 auto;
}

.veille-title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 0 0 30px rgba(192,192,192,0.5);
}

.veille-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: var(--text-gray);
  margin-bottom: 50px;
}

.tag {
  color: var(--silver);
  font-weight: 700;
  display: block;
  margin-top: 10px;
  font-size: 1.1em;
}

.veille-intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 70px;
}

.veille-intro-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(192,192,192,0.2);
  border-radius: 20px;
  padding: 35px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.veille-intro-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--silver), transparent);
}

.veille-intro-card:hover {
  transform: translateY(-8px);
  border-color: var(--silver);
  box-shadow: 0 20px 40px rgba(192,192,192,0.15);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.veille-intro-card h2 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.veille-intro-card p,
.veille-intro-card li {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 1.05rem;
}

.veille-intro-card ul {
  padding-left: 20px;
  margin-top: 15px;
}

.veille-intro-card li {
  margin-bottom: 12px;
}

.veille-section-title {
  text-align: center;
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 80px 0 40px;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
}

.veille-section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--silver);
  margin: 20px auto 0;
  box-shadow: 0 0 15px rgba(192,192,192,0.5);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 70px;
}

.pillar-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(192,192,192,0.15);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.pillar-card:hover {
  transform: translateY(-10px);
  border-color: var(--silver);
  box-shadow: 0 15px 35px rgba(192,192,192,0.2);
}

.pillar-number {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--silver);
  opacity: 0.3;
  margin-bottom: 15px;
}

.pillar-card h3 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--silver);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pillar-card p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.cejm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 70px;
}

.cejm-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(192,192,192,0.15);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease;
}

.cejm-card:hover {
  transform: translateY(-8px);
  border-color: var(--silver);
  box-shadow: 0 15px 35px rgba(192,192,192,0.15);
}

.cejm-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cejm-card h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--silver);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.cejm-card p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 70px;
}

.tool-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(192,192,192,0.15);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
}

.tool-card:hover {
  transform: translateY(-8px);
  border-color: var(--silver);
  box-shadow: 0 15px 35px rgba(192,192,192,0.15);
}

.tool-logo {
  height: 50px;
  width: 50px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: grayscale(100%) brightness(1.5);
  transition: all 0.3s ease;
}

.tool-logo-large {
  height: 60px;
  width: 60px;
}

.tool-card:hover .tool-logo {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.1);
}

.tool-card h3 {
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--silver);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.tool-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.veille-rss-note {
  text-align: center;
  color: var(--text-gray);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.rss-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.rss-tab {
  font-family: var(--font-title);
  font-size: 0.9rem;
  padding: 12px 25px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(192,192,192,0.2);
  border-radius: 30px;
  color: var(--text-gray);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rss-tab:hover {
  border-color: var(--silver);
  color: var(--silver);
}

.rss-tab.active {
  background: var(--silver);
  color: var(--bg-black);
  border-color: var(--silver);
}

.veille-rss-container {
  max-width: 1000px;
  margin: 0 auto 70px;
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  border: 1px solid rgba(192,192,192,0.15);
  backdrop-filter: blur(8px);
  padding: 30px;
  overflow: hidden;
}

.rss-refresh {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(192,192,192,0.1);
}

#lastUpdate {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.refresh-btn {
  font-family: var(--font-title);
  font-size: 0.85rem;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--silver);
  border-radius: 25px;
  color: var(--silver);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.refresh-btn:hover {
  background: var(--silver);
  color: var(--bg-black);
}

.refresh-btn svg {
  transition: transform 0.5s ease;
}

.refresh-btn:hover svg {
  transform: rotate(360deg);
}

.refresh-btn.spinning svg {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.veille-rss-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rss-item {
  padding: 25px 0;
  border-bottom: 1px solid rgba(192,192,192,0.1);
  transition: all 0.3s ease;
}

.rss-item:last-child {
  border-bottom: none;
}

.rss-item:hover {
  padding-left: 15px;
  background: rgba(192,192,192,0.03);
  margin: 0 -30px;
  padding-right: 45px;
  padding-left: 45px;
}

.rss-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--text-white);
  text-decoration: none;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  line-height: 1.5;
}

.rss-title:hover {
  color: var(--silver);
  text-shadow: 0 0 15px rgba(192,192,192,0.4);
}

.rss-desc {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 12px;
}

.rss-meta {
  display: flex;
  gap: 25px;
  font-size: 0.85rem;
  color: var(--text-gray);
}

.rss-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.rss-meta svg {
  color: var(--silver);
}

.rss-source {
  color: var(--silver);
}

.rss-loading {
  text-align: center;
  padding: 40px 0;
  color: var(--text-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(192,192,192,0.2);
  border-top-color: var(--silver);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.rss-error {
  text-align: center;
  padding: 40px 0;
  color: #ff6b6b;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.rss-error svg {
  color: #ff6b6b;
}

.swot-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 70px;
}

.swot-card {
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
}

.swot-card:hover {
  transform: translateY(-5px);
}

.swot-card.strengths {
  background: rgba(0, 200, 100, 0.15);
  border: 1px solid rgba(0, 200, 100, 0.3);
}

.swot-card.weaknesses {
  background: rgba(255, 100, 100, 0.15);
  border: 1px solid rgba(255, 100, 100, 0.3);
}

.swot-card.opportunities {
  background: rgba(100, 150, 255, 0.15);
  border: 1px solid rgba(100, 150, 255, 0.3);
}

.swot-card.threats {
  background: rgba(255, 180, 50, 0.15);
  border: 1px solid rgba(255, 180, 50, 0.3);
}

.swot-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.swot-icon {
  font-size: 2rem;
}

.swot-card h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.swot-card ul {
  list-style: none;
  padding: 0;
}

.swot-card li {
  color: var(--text-gray);
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.swot-card li:last-child {
  border-bottom: none;
}

.swot-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--silver);
}

.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto 70px;
  padding-left: 50px;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--silver), rgba(192,192,192,0.2));
  box-shadow: 0 0 15px rgba(192,192,192,0.3);
}

.timeline-item {
  position: relative;
  padding: 25px 0 25px 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 30px;
  width: 16px;
  height: 16px;
  background: var(--silver);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(192,192,192,0.5);
}

.timeline-date {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--silver);
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline-content {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(192,192,192,0.15);
  border-radius: 15px;
  padding: 20px 25px;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
  border-color: var(--silver);
  box-shadow: 0 10px 30px rgba(192,192,192,0.1);
}

.timeline-content h3 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.timeline-content p {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.6;
}

.conclusion-card {
  background: linear-gradient(135deg, rgba(192,192,192,0.1), rgba(192,192,192,0.02));
  border: 2px solid var(--silver);
  border-radius: 25px;
  padding: 50px;
  text-align: center;
  box-shadow: 0 0 40px rgba(192,192,192,0.15);
}

.conclusion-card h2 {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--silver);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.conclusion-card p {
  font-size: 1.15rem;
  color: var(--text-gray);
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto 20px;
}

.conclusion-card p:last-child {
  margin-bottom: 0;
}

.footer-portfolio {
  background: var(--bg-black);
  padding: 80px 40px;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.footer-col {
  text-align: center;
}

.footer-logo {
  width: 170px;
  filter: drop-shadow(0 0 10px rgba(192, 192, 192, 0.4));
  transition: all 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.07);
  filter: drop-shadow(0 0 20px rgba(192, 192, 192, 0.6));
}

.footer-heading {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--silver);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-gray);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-links .active {
  color: var(--silver);
  text-shadow: 0 0 15px rgba(192, 192, 192, 0.4);
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: 10px;
}

.footer-legal a {
  font-size: 0.95rem;
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--silver);
}

.anim-slide {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.visible-slide {
  opacity: 1;
  transform: translateY(0);
}

.anim-fade {
  opacity: 0;
  transition: all 1s ease;
}

.visible-fade {
  opacity: 1;
}

.anim-zoom {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.visible-zoom {
  opacity: 1;
  transform: scale(1);
}

.card-icon svg,
.cejm-icon svg,
.swot-icon svg,
.title-icon {
  color: var(--silver);
  stroke: var(--silver);
}

.card-icon {
  margin-bottom: 20px;
}

.cejm-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.swot-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swot-icon svg {
  flex-shrink: 0;
}

.veille-intro-card:hover .card-icon svg,
.cejm-card:hover .cejm-icon svg {
  filter: drop-shadow(0 0 8px rgba(192, 192, 192, 0.6));
  transform: scale(1.1);
  transition: all 0.3s ease;
}

@media (max-width: 1200px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .cejm-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .veille-wrapper {
    padding: 120px 20px 60px;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .swot-container {
    grid-template-columns: 1fr;
  }

  .timeline-container {
    padding-left: 40px;
  }

  .timeline-container::before {
    left: 15px;
  }

  .timeline-item::before {
    left: -33px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .veille-title {
    font-size: 2rem;
  }

  .pillars-grid,
  .cejm-grid {
    grid-template-columns: 1fr;
  }

  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rss-tabs {
    flex-direction: column;
    align-items: center;
  }

  .rss-tab {
    width: 100%;
    max-width: 250px;
  }

  .rss-refresh {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .conclusion-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
}

