/* ================================================
   INNEXUS — CSS
   Fond blanc, rouge élégant (#be123c), noir
================================================ */

/* ---- RESET & VARIABLES ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #be123c;
  --red-light:  #fef2f2;
  --red-mid:    #fecdd3;
  --red-dark:   #9f1239;
  --black:      #111111;
  --gray-900:   #1a1a1a;
  --gray-700:   #374151;
  --gray-500:   #6b7280;
  --gray-300:   #d1d5db;
  --gray-100:   #f3f4f6;
  --gray-50:    #f9fafb;
  --white:      #ffffff;
  --font:       'Plus Jakarta Sans', system-ui, sans-serif;
  --radius:     16px;
  --radius-sm:  10px;
  --radius-xs:  6px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow:     0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:  0 20px 48px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.06);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }
a { text-decoration: none; }
button { font-family: var(--font); }

/* ---- UTILITIES ---- */
.text-red { color: var(--red); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-light);
  border: 1px solid var(--red-mid);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 16px;
}

.section-body {
  font-size: 1.02rem;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 560px;
}
.section-body.centered-text { margin: 0 auto; text-align: center; }

.section-wrapper {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-wrapper.centered { text-align: center; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.93rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(190,18,60,0.28);
}
.btn-primary svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(190,18,60,0.35);
}
.btn-primary.btn-full {
  width: 100%;
  justify-content: center;
}
.btn-primary.btn-white {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-primary.btn-white:hover {
  background: var(--gray-50);
  box-shadow: 0 8px 24px rgba(0,0,0,0.16);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.93rem;
  padding: 13px 28px;
  border-radius: 100px;
  border: 1.5px solid var(--gray-300);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.btn-secondary:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-outline-nav {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
  border: 1.5px solid var(--gray-300);
  padding: 8px 18px;
  border-radius: 100px;
  transition: border-color var(--transition), color var(--transition);
}
.btn-outline-nav:hover { border-color: var(--red); color: var(--red); }

.btn-solid-nav {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  background: var(--red);
  padding: 9px 20px;
  border-radius: 100px;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 2px 8px rgba(190,18,60,0.25);
}
.btn-solid-nav:hover { background: var(--red-dark); transform: translateY(-1px); }

/* ================================================
   NAVBAR
================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  border-color: var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 80px;
  width: auto;
}

.logo-name {
  font-weight: bold;
  font-size: 18px;
}
.logo-img-footer {
  height: 100px;
  width: auto;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-500);
  padding: 7px 14px;
  border-radius: var(--radius-xs);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--black);
  background: var(--gray-100);
}

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--gray-100);
  background: var(--white);
  gap: 2px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition);
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav a:hover { color: var(--red); }
.mobile-ctas {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .nav-links, .nav-actions { display: none; }
  .burger { display: flex; }
}

/* ================================================
   HERO
================================================ */
.hero {
  min-height: 100vh;
  padding: 120px 24px 80px;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content { flex: 1; max-width: 580px; }

/* Badge live */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-500);
  background: var(--gray-50);
  border: 1px solid var(--gray-200, #e5e7eb);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.dot-live {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50%       { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}

/* Stats trust */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; }
.trust-item strong {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}
.trust-item span {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-top: 4px;
}
.trust-sep {
  width: 1px; height: 36px;
  background: var(--gray-200, #e5e7eb);
}

/* Hero visual */
.hero-visual {
  flex: 1;
  max-width: 420px;
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--gray-200, #e5e7eb);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: float-card 5s ease-in-out infinite;
}

.hc-main {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 2;
}
.hc-avatar {
  position: relative;
  width: 44px; height: 44px;
  flex-shrink: 0;
}
.avatar-initials {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red-light);
  color: var(--red);
  font-weight: 700;
  font-size: 0.88rem;
  display: flex; align-items: center; justify-content: center;
}
.avatar-badge {
  position: absolute;
  bottom: -2px; right: -2px;
  width: 16px; height: 16px;
  background: #22c55e;
  color: white;
  font-size: 0.55rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid white;
}
.hc-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--black);
}
.hc-info span {
  font-size: 0.75rem;
  color: var(--gray-500);
}
.hc-match {
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--gray-500);
  white-space: nowrap;
}
.hc-match b { color: #22c55e; }

.hc-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--black);
  border-radius: 100px;
  white-space: nowrap;
}
.tag-icon { font-size: 0.9rem; }
.t1 { top: 10%; left: -10%; animation-delay: -1s; }
.t2 { bottom: 15%; left: -5%; animation-delay: -2.5s; }
.t3 { top: 20%; right: -5%; animation-delay: -4s; }

.hero-stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  bottom: 8%;
  right: 0;
  animation-delay: -3.5s;
}
.hs-icon { font-size: 1.3rem; }
.hero-stat-card strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--black);
}
.hero-stat-card span {
  font-size: 0.72rem;
  color: var(--gray-500);
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.hc-main { animation-name: float-card-center; }
@keyframes float-card-center {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50%       { transform: translate(-50%, -50%) translateY(-10px); }
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding-top: 100px;
    text-align: center;
  }
  .hero-sub, .section-body { margin: 0 auto 36px; }
  .hero-btns { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
}

/* ================================================
   PRÉSENTATION
================================================ */
.presentation {
  padding: 100px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.presentation .section-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pres-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.pres-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pres-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-sm);
}
.pres-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: var(--red-mid);
}

.pcard-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--red-light);
  color: var(--c, var(--red));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pcard-icon svg { width: 20px; height: 20px; }

.pres-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.pres-card p {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.65;
}

@media (max-width: 860px) {
  .presentation .section-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .pres-text { align-items: center; text-align: center; }
}
@media (max-width: 500px) {
  .pres-cards { grid-template-columns: 1fr; }
}

/* ================================================
   EXPERTISE / CAROUSEL
================================================ */
.expertise-section {
  padding: 100px 0;
}
.expertise-section .section-wrapper {
  margin-bottom: 52px;
}

.carousel-root {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.carousel-viewport {
  flex: 1;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Expertise cards */
.exp-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}
.exp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.exp-card:hover {
  border-color: var(--red-mid);
  box-shadow: 0 12px 40px rgba(190,18,60,0.1);
  transform: translateY(-5px);
}
.exp-card:hover::before { transform: scaleX(1); }

.exp-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--red-light);
  color: var(--c, var(--red));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.exp-icon-wrap svg { width: 26px; height: 26px; }

.exp-num {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gray-300);
  letter-spacing: 0.08em;
}

.exp-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1.3;
}

.exp-card p {
  font-size: 0.84rem;
  color: var(--gray-500);
  line-height: 1.7;
  flex: 1;
}

.exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.exp-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200, #e5e7eb);
  color: var(--gray-700);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.exp-card:hover .exp-tags span {
  background: var(--red-light);
  border-color: var(--red-mid);
  color: var(--red);
}

.exp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}
.exp-count {
  font-size: 0.76rem;
  color: var(--gray-500);
  font-weight: 500;
}
.exp-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
  transition: gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.exp-link:hover { gap: 6px; }

/* Carousel buttons */
.car-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200, #e5e7eb);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}
.car-btn svg { width: 18px; height: 18px; }
.car-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: scale(1.06);
  box-shadow: 0 4px 16px rgba(190,18,60,0.25);
}
.car-btn:disabled { opacity: 0.35; pointer-events: none; }

/* Dots */
.car-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.car-dot {
  width: 8px; height: 8px;
  border-radius: 100px;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: width 0.3s, background 0.3s;
  padding: 0;
}
.car-dot.active {
  width: 24px;
  background: var(--red);
}

/* Progress bar */
.car-progress-wrap {
  max-width: 200px;
  margin: 16px auto 0;
  height: 2px;
  background: var(--gray-100);
  border-radius: 2px;
  overflow: hidden;
}
.car-progress-bar {
  height: 100%;
  background: var(--red);
  border-radius: 2px;
  transition: width 0.1s linear;
}

@media (max-width: 900px) {
  .exp-card { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 600px) {
  .exp-card { flex: 0 0 100%; }
  .car-btn { display: none; }
}

/* ================================================
   POURQUOI INNEXUS
================================================ */
.why-section {
  padding: 100px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 0;
}

.why-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: 20px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.why-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--red-mid);
}
.why-card:hover .why-icon { background: var(--red); color: var(--white); }

.why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--red-light);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition), color var(--transition);
}
.why-icon svg { width: 26px; height: 26px; }

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.84rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.why-num {
  position: absolute;
  bottom: 20px; right: 20px;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-100);
  line-height: 1;
  user-select: none;
}

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

/* ================================================
   CONTACT — 2 PROFILS
================================================ */
.contact-section {
  padding: 100px 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 52px auto 0;
}

.contact-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card.accent-card {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.accent-card .section-title,
.accent-card h3 { color: var(--white); }
.accent-card .section-body,
.accent-card p { color: rgba(255,255,255,0.8); }
.accent-card label { color: rgba(255,255,255,0.75); }
.accent-card input,
.accent-card select,
.accent-card textarea {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}
.accent-card input::placeholder,
.accent-card textarea::placeholder { color: rgba(255,255,255,0.5); }
.accent-card input:focus,
.accent-card select:focus,
.accent-card textarea:focus {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.5);
  outline: none;
}
.accent-card select option { background: var(--red-dark); color: var(--white); }

.contact-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  align-self: flex-start;
}
.contact-badge.entreprise {
  background: var(--red-light);
  color: var(--red);
  border: 1px solid var(--red-mid);
}
.contact-badge.talent {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

.contact-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--gray-50);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gray-100);
}
.accent-card .contact-icon-wrap {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}
.contact-icon-wrap svg { width: 26px; height: 26px; }

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--black);
}
.contact-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
}
.contact-list li svg {
  width: 16px; height: 16px;
  color: var(--red);
  flex-shrink: 0;
}
.accent-card .contact-list li { color: rgba(255,255,255,0.9); }
.accent-card .contact-list li svg { color: rgba(255,255,255,0.7); }

/* Talent email */
.talent-email {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
}
.talent-email svg { width: 18px; height: 18px; flex-shrink: 0; color: rgba(255,255,255,0.8); }
.talent-email a { color: var(--white); transition: opacity var(--transition); }
.talent-email a:hover { opacity: 0.8; }

/* Forms */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grp {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.02em;
}
input, select, textarea {
  font-family: var(--font);
  font-size: 0.88rem;
  color: var(--black);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200, #e5e7eb);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
input::placeholder, textarea::placeholder { color: var(--gray-300); }
input:focus, select:focus, textarea:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(190,18,60,0.08);
}
select { cursor: pointer; }
textarea { resize: vertical; }

.form-success {
  display: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: #16a34a;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  text-align: center;
}
.form-success.visible { display: block; }
.accent-card .form-success {
  color: var(--white);
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .contact-card { padding: 28px 20px; }
}

/* ================================================
   FOOTER
================================================ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 72px 24px 0;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  padding-bottom: 60px;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand p {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 0,6;
}

.footer-socials {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #94a3b8;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.social-link svg { width: 17px; height: 17px; }
.social-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.footer-nav {
  flex: 1;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 140px;
}
.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-col a, .footer-col span {
  font-size: 0.85rem;
  color: #94a3b8;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  font-size: 0.82rem;
  color: #94a3b8;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  color: #94a3b8;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--white); }

/* ================================================
   SCROLL REVEAL ANIMATION
================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
