/* ═══════════════════════════════════════════════════════════════
   GRC FORGE — LANDING PAGE STYLES (Light Premium Edition v2)
   ═══════════════════════════════════════════════════════════════ */

/* ── NAVBAR ────────────────────────────────────────────────── */
.grc-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grc-border);
  transition: background 0.3s, box-shadow 0.3s, height 0.3s;
}
.grc-navbar.scrolled {
  height: 60px;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.grc-nav-container {
  max-width: var(--grc-content-max);
  margin: 0 auto; padding: 0 24px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.grc-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.grc-logo img {
  height: 38px !important; max-height: 38px; width: auto;
  transition: height 0.3s;
}
.grc-navbar.scrolled .grc-logo img { height: 32px !important; max-height: 32px; }
.grc-nav-links {
  display: flex; gap: 28px; align-items: center;
}
.grc-nav-links a {
  color: var(--grc-text-secondary); font-size: 0.88rem;
  font-family: var(--grc-font-body); font-weight: 500;
  text-decoration: none; transition: color 0.2s;
  position: relative; white-space: nowrap;
}
.grc-nav-links a:hover { color: var(--grc-text-primary); }
.grc-nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--grc-orange);
  transition: width 0.25s;
}
.grc-nav-links a:hover::after { width: 100%; }
.grc-nav-cta { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }

/* Burger */
.grc-burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 22px; position: relative; z-index: 1001;
}
.grc-burger span {
  display: block; width: 100%; height: 2px;
  background: var(--grc-text-primary); border-radius: 2px;
  position: absolute; left: 0; transition: all 0.3s;
}
.grc-burger span:nth-child(1) { top: 0; }
.grc-burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.grc-burger span:nth-child(3) { bottom: 0; }
.grc-burger.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.grc-burger.active span:nth-child(2) { opacity: 0; }
.grc-burger.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* Mobile nav */
.grc-mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
  padding: 90px 32px 40px; flex-direction: column; gap: 0;
  opacity: 0; transform: translateY(-10px);
  transition: opacity 0.3s, transform 0.3s;
}
.grc-mobile-nav.open { display: flex; opacity: 1; transform: translateY(0); }
.grc-mobile-nav a {
  color: var(--grc-text-primary); font-size: 1.05rem; font-weight: 600;
  font-family: var(--grc-font-display); text-decoration: none;
  padding: 16px 0; border-bottom: 1px solid var(--grc-border);
}
.grc-mobile-nav a:hover { color: var(--grc-orange); }
.grc-mobile-nav .mobile-nav-cta {
  margin-top: 24px; display: flex; flex-direction: column; gap: 10px;
}

/* ── BOUTONS ──────────────────────────────────────────────── */
.btn-orange-lg {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 50px;
  background: linear-gradient(135deg, var(--grc-orange), var(--grc-orange-dark));
  color: white; font-weight: 600; font-size: 0.92rem;
  font-family: var(--grc-font-body);
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: var(--grc-shadow-orange);
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.02em;
}
.btn-orange-lg:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(245,164,37,0.35); color: white; }
.btn-ghost-lg {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  background: transparent; color: var(--grc-text-primary);
  border: 2px solid var(--grc-border); font-family: var(--grc-font-body);
  font-weight: 600; font-size: 0.92rem; text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}
.btn-ghost-lg:hover { border-color: var(--grc-orange); color: var(--grc-orange); }
.btn-orange-sm {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 50px;
  background: linear-gradient(135deg, var(--grc-orange), var(--grc-orange-dark));
  color: white; font-weight: 600; font-size: 0.82rem;
  font-family: var(--grc-font-body);
  text-decoration: none; border: none; cursor: pointer; transition: opacity 0.2s;
}
.btn-orange-sm:hover { opacity: 0.9; color: white; }
.btn-ghost-sm {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px; border-radius: 50px;
  background: transparent; color: var(--grc-text-secondary);
  border: 1px solid var(--grc-border); font-family: var(--grc-font-body);
  font-weight: 500; font-size: 0.82rem; text-decoration: none; transition: all 0.2s;
}
.btn-ghost-sm:hover { border-color: var(--grc-border-hover); color: var(--grc-text-primary); }
.btn-full { width: 100%; justify-content: center; }

/* ── HERO ─────────────────────────────────────────────────── */
.grc-hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden !important;
  padding: 110px 24px 72px;
  text-align: center;
  background: #0d1117;
  isolation: isolate;
}

/* Video background */
.grc-hero-video {
  position: absolute !important; inset: 0 !important; z-index: 0 !important;
  width: 100% !important; height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  max-width: none !important; max-height: none !important;
}
.grc-hero-video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10,12,18,0.88) 0%,
    rgba(10,12,18,0.72) 40%,
    rgba(10,12,18,0.90) 100%
  );
}

.grc-hero-content {
  position: relative; z-index: 2;
  max-width: 860px; margin: 0 auto;
}

/* Hero badge — glass on dark video */
.grc-hero--video .grc-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 20px; border-radius: 30px;
  background: rgba(245,164,37,0.12);
  border: 1px solid rgba(245,164,37,0.35);
  color: var(--grc-orange-light);
  font-size: 0.8rem; font-weight: 600;
  font-family: var(--grc-font-body);
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease both;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--grc-success);
  animation: grcPulse 2s infinite;
}
@keyframes grcPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero text — white for video readability */
.grc-hero--video .grc-hero-title {
  font-family: var(--grc-font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800; line-height: 1.18;
  color: #ffffff;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.1s both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.grc-hero--video .grc-hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--grc-orange), #f7b84d);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.grc-hero--video .grc-hero-subtitle {
  font-size: 1.02rem; color: rgba(255,255,255,0.80);
  font-family: var(--grc-font-body);
  max-width: 620px; margin: 0 auto 36px;
  line-height: 1.8;
  animation: fadeInUp 0.7s ease 0.2s both;
  text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}
.grc-hero-actions {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 40px;
  animation: fadeInUp 0.7s ease 0.3s both;
}
/* Ghost button inversion for dark hero */
.grc-hero--video .btn-ghost-lg {
  color: #ffffff; border-color: rgba(255,255,255,0.30);
}
.grc-hero--video .btn-ghost-lg:hover {
  border-color: var(--grc-orange); color: var(--grc-orange);
}

/* Hero proof bar — white text on video */
.grc-hero-proof {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.15);
  animation: fadeInUp 0.7s ease 0.4s both;
}
.grc-hero--video .proof-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: rgba(255,255,255,0.70);
}
.grc-hero--video .proof-item i { color: var(--grc-orange); font-size: 1rem; }
.grc-hero--video .proof-item strong { color: #ffffff; font-weight: 700; }
.grc-hero--video .proof-divider {
  width: 1px; height: 20px; background: rgba(255,255,255,0.20);
}

/* ── SECTION GENERICS ─────────────────────────────────────── */
.grc-section-container {
  max-width: var(--grc-content-max); margin: 0 auto; padding: 0 24px;
}
.grc-section-header {
  text-align: center; margin-bottom: 52px;
}
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.76rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--grc-blue);
  font-family: var(--grc-font-body);
  margin-bottom: 14px;
}
.section-label::before {
  content: ''; display: block;
  width: 20px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--grc-orange), var(--grc-blue));
}
.grc-section-header h2 {
  font-family: var(--grc-font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800;
  color: var(--grc-text-primary); margin-bottom: 12px;
}
.grc-section-header h2 em {
  font-style: normal; color: var(--grc-orange);
}
.grc-section-header p {
  color: var(--grc-text-muted); font-size: 0.98rem;
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}

/* ── SERVICES (4 cards grid) ─────────────────────────────── */
.grc-services {
  background: linear-gradient(180deg, rgba(1,102,163,0.025) 0%, rgba(1,102,163,0.055) 100%);
  border-top: 1px solid rgba(1,102,163,0.06);
  border-bottom: 1px solid rgba(1,102,163,0.06);
  padding: 96px 24px;
}
.grc-services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  display: flex; flex-direction: column; gap: 14px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid rgba(1,102,163,0.08);
  border-top: 3px solid transparent;
  border-radius: var(--grc-radius-lg);
  box-shadow: 0 2px 8px rgba(1,102,163,0.04), 0 4px 20px rgba(1,102,163,0.06);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(1,102,163,0.12);
  border-top-color: var(--grc-orange);
}
.service-icon {
  width: 52px; height: 52px; border-radius: var(--grc-radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.service-icon--orange {
  background: var(--grc-orange-glow); border: 1px solid var(--grc-orange-border);
  color: var(--grc-orange-dark);
}
.service-icon--blue {
  background: var(--grc-blue-glow); border: 1px solid var(--grc-blue-border);
  color: var(--grc-blue);
}
.service-icon--green {
  background: rgba(57,203,127,0.08); border: 1px solid rgba(57,203,127,0.25);
  color: #1d8a4e;
}
.service-icon--purple {
  background: rgba(139,92,246,0.08); border: 1px solid rgba(139,92,246,0.25);
  color: #7c3aed;
}
.service-card:hover .service-icon--orange { background: rgba(245,164,37,0.15); }
.service-card:hover .service-icon--blue { background: rgba(30,108,183,0.12); }
.service-card:hover .service-icon--green { background: rgba(57,203,127,0.12); }
.service-card:hover .service-icon--purple { background: rgba(139,92,246,0.12); }
.service-card h4 {
  font-family: var(--grc-font-display);
  font-size: 1.05rem; font-weight: 700; color: var(--grc-text-primary);
  margin: 0;
}
.service-card p { font-size: 0.9rem; color: var(--grc-text-secondary); line-height: 1.65; margin: 0; }

/* ── METHOD (3 steps) ────────────────────────────────────── */
.grc-method {
  padding: 96px 24px;
  background: #ffffff;
  position: relative;
}
.grc-method::after {
  content: ''; position: absolute; bottom: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(1,102,163,0.12), transparent);
}
.grc-steps {
  display: flex; align-items: flex-start; gap: 0;
  max-width: 1000px; margin: 0 auto;
}
.step-card {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 20px;
}
.step-number {
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(145deg, var(--grc-orange), var(--grc-orange-dark));
  color: #fff; font-family: var(--grc-font-display);
  font-size: 1.3rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 24px rgba(245,164,37,0.30), 0 0 0 8px rgba(1,102,163,0.06);
}
.step-body h3 {
  font-family: var(--grc-font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--grc-text-primary); margin: 0 0 10px;
}
.step-body p {
  font-size: 0.88rem; color: var(--grc-text-secondary);
  line-height: 1.65; margin: 0 0 14px;
}
.step-features {
  display: flex; flex-direction: column; gap: 6px; align-items: center;
}
.step-features span {
  font-size: 0.8rem; color: var(--grc-text-muted); font-weight: 500;
  display: flex; align-items: center; gap: 6px;
}
.step-features i { color: var(--grc-success); font-size: 0.7rem; }
.step-connector {
  width: 60px; min-width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--grc-border), var(--grc-orange-border), var(--grc-border));
  margin-top: 34px; flex-shrink: 0;
  border-radius: 2px;
}

/* ── FORMATIONS CAROUSEL ──────────────────────────────────── */
.grc-formations {
  padding: 96px 24px; position: relative;
  background: linear-gradient(180deg, rgba(1,102,163,0.03) 0%, rgba(1,102,163,0.065) 100%);
  border-top: 1px solid rgba(1,102,163,0.06);
  border-bottom: 1px solid rgba(1,102,163,0.06);
}
.carousel-wrapper {
  position: relative; overflow: hidden;
  padding: 0 48px;
}
.carousel-track {
  display: flex; gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.carousel-track .formation-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
}
.formation-card {
  background: #ffffff;
  border: 1px solid rgba(1,102,163,0.08);
  border-top: 3px solid transparent;
  border-radius: var(--grc-radius-lg);
  padding: 28px; position: relative;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 2px 8px rgba(1,102,163,0.04), 0 4px 20px rgba(1,102,163,0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.formation-card:hover {
  border-top-color: var(--grc-orange);
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 48px rgba(1,102,163,0.14), 0 0 0 1px rgba(1,102,163,0.10);
}
.formation-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--grc-orange-glow); border: 1px solid var(--grc-orange-border);
  color: var(--grc-orange-dark); font-size: 0.68rem; font-weight: 700;
  padding: 4px 10px; border-radius: 20px; text-transform: uppercase;
  letter-spacing: 0.05em;
}
.formation-badge--gold {
  background: rgba(253,201,15,0.10); border-color: rgba(253,201,15,0.3);
  color: #b8960a;
}
.formation-header { display: flex; align-items: center; gap: 14px; }
.formation-icon {
  width: 44px; height: 44px; border-radius: var(--grc-radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.formation-icon--orange {
  background: var(--grc-orange-glow); border: 1px solid var(--grc-orange-border);
  color: var(--grc-orange-dark);
}
.formation-icon--blue {
  background: var(--grc-blue-glow); border: 1px solid var(--grc-blue-border);
  color: var(--grc-blue);
}
.formation-icon--green {
  background: rgba(57,203,127,0.08); border: 1px solid rgba(57,203,127,0.25);
  color: #1d8a4e;
}
.formation-icon--gold {
  background: rgba(253,201,15,0.08); border-color: rgba(253,201,15,0.3);
  color: #b8960a;
}
.formation-meta { display: flex; flex-direction: column; gap: 2px; }
.formation-level { font-size: 0.75rem; color: var(--grc-text-muted); font-weight: 600; }
.formation-duration { font-size: 0.75rem; color: var(--grc-text-muted); }
.formation-duration i { margin-right: 4px; }
.formation-card h3 {
  font-family: var(--grc-font-display);
  font-size: 1.08rem; font-weight: 700; color: var(--grc-text-primary); margin: 0;
}
.formation-card p {
  font-size: 0.88rem; color: var(--grc-text-secondary); line-height: 1.6; margin: 0;
  flex: 1;
}
.formation-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.formation-tags span {
  font-size: 0.68rem; font-weight: 600; font-family: var(--grc-font-mono);
  padding: 3px 10px; border-radius: 6px;
  background: var(--grc-bg-base); border: 1px solid var(--grc-border);
  color: var(--grc-text-muted);
}
.formation-cta {
  font-size: 0.88rem; font-weight: 700; color: var(--grc-blue);
  text-decoration: none; transition: gap 0.2s, color 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto;
}
.formation-cta:hover { gap: 10px; color: var(--grc-orange); }
.formation-cta--gold { color: #b8960a; }
.formation-cta--gold:hover { color: var(--grc-orange); }
.formation-card--enterprise { border-color: rgba(253,201,15,0.25); }
.formation-card--enterprise:hover { border-color: var(--grc-orange-border); }

/* Carousel controls */
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: #ffffff; border: 1px solid var(--grc-border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10; font-size: 0.9rem;
  color: var(--grc-text-secondary);
  transition: all 0.2s;
}
.carousel-btn:hover {
  background: var(--grc-orange); color: #fff; border-color: var(--grc-orange);
  box-shadow: 0 4px 16px rgba(245,164,37,0.25);
}
.carousel-btn--prev { left: 0; }
.carousel-btn--next { right: 0; }
.carousel-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 28px;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--grc-border); border: none; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.carousel-dot.active {
  background: var(--grc-orange);
  width: 28px; border-radius: 4px;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.grc-testimonials {
  padding: 96px 24px;
  background: #ffffff;
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(1,102,163,0.08);
  border-radius: var(--grc-radius-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: 0 2px 8px rgba(1,102,163,0.04), 0 4px 20px rgba(1,102,163,0.06);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 16px; right: 20px;
  font-size: 4rem; line-height: 1; font-family: Georgia, serif;
  color: rgba(245,164,37,0.10); pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(1,102,163,0.12);
}
.testimonial-stars {
  display: flex; gap: 3px;
  color: #fbbf24; font-size: 0.85rem;
}
.testimonial-card blockquote {
  font-size: 0.92rem; color: var(--grc-text-secondary);
  line-height: 1.7; margin: 0; font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--grc-border);
}
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--grc-orange), var(--grc-orange-dark));
  color: #fff; font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block; font-size: 0.88rem; color: var(--grc-text-primary);
}
.testimonial-author span {
  display: block; font-size: 0.78rem; color: var(--grc-text-muted);
}
.testimonial-location {
  font-size: 0.75rem; color: var(--grc-text-muted);
}
.testimonial-location i { margin-right: 3px; }

/* ── FACTS COUNTER ────────────────────────────────────────── */
.grc-facts {
  padding: 80px 24px; position: relative; overflow: hidden;
  background: linear-gradient(145deg, #011e35 0%, #023e62 50%, #034b78 100%);
  color: #ffffff;
}
.grc-facts-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(245,164,37,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 50%, rgba(139,92,246,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.grc-facts::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--grc-orange), #0279c2, var(--grc-orange));
}
.grc-facts::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: rgba(255,255,255,0.08);
}
.grc-facts-inner { position: relative; z-index: 2; }
.grc-facts-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; text-align: center;
}
.fact-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.fact-num {
  font-family: var(--grc-font-display);
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  color: var(--grc-orange);
  -webkit-text-fill-color: var(--grc-orange);
  display: inline;
}
.fact-suffix {
  font-family: var(--grc-font-display);
  font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800;
  color: var(--grc-orange);
}
.fact-label { font-size: 0.82rem; color: rgba(255,255,255,0.65); font-weight: 500; }

/* ── CTA FINAL ────────────────────────────────────────────── */
.grc-cta-section {
  text-align: center; padding: 96px 24px; position: relative;
  background: linear-gradient(160deg, #023e62 0%, #0166A3 45%, #0279c2 100%);
  overflow: hidden; color: #ffffff;
}
.grc-cta-section .cta-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 30% 30%, rgba(245,164,37,0.10), transparent 70%),
    radial-gradient(ellipse 500px 350px at 70% 70%, rgba(139,92,246,0.12), transparent 70%);
  pointer-events: none;
}
.grc-cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.grc-cta-section h2 {
  font-family: var(--grc-font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800;
  color: #ffffff; margin-bottom: 16px;
}
.grc-cta-section p {
  color: rgba(255,255,255,0.80); font-size: 0.98rem;
  margin: 0 auto 32px; line-height: 1.7;
}
.grc-cta-section .btn-ghost-lg {
  color: #ffffff; border-color: rgba(255,255,255,0.30);
}
.grc-cta-section .btn-ghost-lg:hover {
  border-color: var(--grc-orange); color: var(--grc-orange);
}
.cta-reassurance {
  display: flex; justify-content: center; gap: 24px;
  margin-top: 24px; flex-wrap: wrap;
}
.cta-reassurance span {
  font-size: 0.82rem; color: rgba(255,255,255,0.65);
  display: flex; align-items: center; gap: 6px;
}
.cta-reassurance i { color: rgba(255,255,255,0.85); }

/* ── FOOTER ───────────────────────────────────────────────── */
.grc-footer {
  background: linear-gradient(180deg, #0f1f35 0%, #0a1525 100%);
  padding: 56px 24px 24px;
  color: rgba(255,255,255,0.65);
}
.grc-footer-container {
  max-width: var(--grc-content-max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.grc-footer-brand .grc-logo { margin-bottom: 12px; display: inline-block; }
.grc-footer-brand .grc-logo img { height: 36px !important; max-height: 36px; width: auto; }
.grc-footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin: 0; }
.grc-footer-col h5 {
  font-family: var(--grc-font-display);
  font-size: 0.82rem; font-weight: 700; color: #ffffff;
  margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.06em;
}
.grc-footer-col a {
  display: block; font-size: 0.85rem; color: rgba(255,255,255,0.5);
  text-decoration: none; padding: 3px 0; transition: color 0.2s;
}
.grc-footer-col a:hover { color: var(--grc-orange); }
.grc-footer-bottom {
  max-width: var(--grc-content-max); margin: 0 auto;
  padding-top: 24px; margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}
.footer-legal-links {
  display: flex; gap: 16px;
}
.footer-legal-links a {
  color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.8rem;
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: var(--grc-orange); }
.grc-footer-social { display: flex; gap: 12px; }
.grc-footer-social a {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.85rem; text-decoration: none;
  transition: all 0.2s;
}
.grc-footer-social a:hover { border-color: var(--grc-orange); color: var(--grc-orange); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .carousel-track .formation-card { flex: 0 0 calc((100% - 24px) / 2); }
  /* Video: ensure proper scaling on tablets */
  .grc-hero--video { overflow: hidden !important; }
  .grc-hero-video { 
    object-fit: cover !important; 
    object-position: center center !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
  }
}
@media (max-width: 991px) {
  .grc-nav-links, .grc-nav-cta { display: none; }
  .grc-burger { display: block; }
  .grc-services-grid { grid-template-columns: 1fr; }
  .grc-steps { flex-direction: column; align-items: center; gap: 0; }
  .step-connector { width: 2px; height: 32px; margin: 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .grc-footer-container { grid-template-columns: 1fr 1fr; }
  .grc-facts-grid { grid-template-columns: repeat(2, 1fr); }
  /* Video hero adjustments for tablet */
  .grc-hero--video { min-height: 80vh; }
  .grc-hero-video { width: 100%; height: 100%; }
}
@media (max-width: 640px) {
  .grc-hero { padding: 100px 16px 56px; min-height: auto; }
  .grc-hero-proof { flex-direction: column; gap: 12px; }
  .proof-divider { width: 40px; height: 1px; }
  .carousel-wrapper { padding: 0 8px; }
  .carousel-track .formation-card { flex: 0 0 100%; }
  .carousel-btn { display: none; }
  .carousel-track { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .carousel-track .formation-card { scroll-snap-align: start; }
  .grc-facts-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .grc-footer-container { grid-template-columns: 1fr; gap: 24px; }
  .grc-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .btn-orange-lg { padding: 14px 24px; font-size: 0.88rem; width: 100%; justify-content: center; }
  .btn-ghost-lg { padding: 13px 20px; font-size: 0.88rem; width: 100%; justify-content: center; }
  .cta-reassurance { flex-direction: column; gap: 8px; align-items: center; }
  /* Mobile video optimizations - prevent overflow */
  .grc-hero--video { 
    min-height: 70vh !important; 
    overflow: hidden !important;
    position: relative !important;
  }
  .grc-hero-video { 
    object-fit: cover !important; 
    object-position: center center !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important; 
    height: 100% !important;
    /* Strict containment to prevent overflow */
    max-width: 100% !important;
    max-height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    /* Prevent any margin/padding issues */
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
  /* Reduce overlay darkness on mobile for better visibility */
  .grc-hero-video-overlay {
    background: linear-gradient(
      180deg,
      rgba(10,12,18,0.85) 0%,
      rgba(10,12,18,0.70) 40%,
      rgba(10,12,18,0.88) 100%
    ) !important;
  }
}
