/* ===== TOPBAR ===== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 var(--space-lg);
}

.topbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.topbar-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--text-primary);
}

.topbar-logo .icon {
  color: var(--orange);
  font-size: 1.4rem;
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.topbar-nav a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
}

.topbar-nav a:hover {
  color: var(--text-primary);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.topbar-mobile-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .topbar-nav { display: none; }
  .topbar-mobile-btn { display: block; }
  .topbar-actions .btn { display: none; }
  .topbar-actions .btn-primary { display: inline-flex; padding: 8px 16px; font-size: 0.85rem; }
}

/* ===== HERO ===== */
.hero {
  padding-top: 140px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--orange-glow), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--orange-light);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: var(--space-lg);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.hero-title .accent {
  color: var(--orange);
}

.hero-title .serif {
  font-family: var(--font-serif);
  font-style: italic;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.hero-stat {
  border-left: 3px solid var(--orange);
  padding-left: var(--space-md);
}

.hero-stat-value {
  font-size: 1.4rem;
  font-weight: 900;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Hero floating cards */
.hero-visual {
  position: relative;
  height: 500px;
}

.floating-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
  top: 20px;
  right: 0;
  animation-delay: 0s;
}

.floating-card:nth-child(2) {
  top: 160px;
  right: 60px;
  animation-delay: 2s;
}

.floating-card:nth-child(3) {
  top: 300px;
  right: 20px;
  animation-delay: 4s;
}

.floating-card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.floating-card-value {
  font-size: 1.1rem;
  font-weight: 700;
}

.floating-card-sub {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-title { font-size: 2.5rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero { padding-top: 100px; padding-bottom: 60px; }
  .hero-title { font-size: 2rem; }
  .hero-ctas { flex-direction: column; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}

/* ===== SECTIONS ===== */
.section {
  padding: var(--space-3xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border-top: 4px solid;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card.fret { border-top-color: var(--orange); }
.service-card.marketplace { border-top-color: var(--green); }
.service-card.routier { border-top-color: var(--blue); }
.service-card.regie { border-top-color: var(--violet); }

.service-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.service-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.service-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.service-price {
  margin-top: var(--space-md);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--orange);
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ===== STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--orange);
  color: white;
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  position: relative;
  z-index: 1;
}

.step-title {
  font-weight: 700;
  margin-bottom: 4px;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
}

/* ===== PROFILES GRID ===== */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.profile-card {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: var(--transition);
}

.profile-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}

.profile-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.profile-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.profile-desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
  .profiles-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== COLIVOYAGE BANNER ===== */
.cv-banner {
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.cv-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-light);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: var(--space-md);
}

.cv-banner-title {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: var(--space-sm);
}

.cv-banner-desc {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.cv-banner-stats {
  display: flex;
  gap: var(--space-xl);
}

.cv-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (max-width: 768px) {
  .cv-banner { grid-template-columns: 1fr; padding: var(--space-xl); }
}

/* ===== NETWORK / AGENCIES ===== */
.agencies-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-md);
}

.agency-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.agency-flag {
  font-size: 1.5rem;
}

.agency-info {
  flex: 1;
}

.agency-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.agency-location {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.agency-status {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: var(--space-md);
}

.footer-logo span {
  color: var(--orange);
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.footer-contact {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-contact a {
  color: var(--text-secondary);
}

.footer-column-title {
  font-weight: 700;
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer-bottom { flex-direction: column; gap: var(--space-sm); }
}
