/* ============================================
   GSynTech — Design System v3
   ============================================ */

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

:root {
  --primary: #f97316;
  --primary-light: #fb923c;
  --primary-dark: #ea580c;
  --dark: #0a1628;
  --dark-light: #1a2a3a;
  --dark-card: #162230;
  --gray-900: #1a1a2e;
  --gray-800: #2d2d44;
  --gray-700: #4a4a5a;
  --gray-600: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --danger: #ef4444;
  --success: #22c55e;
  --warning: #f59e0b;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
  --shadow-glow: 0 0 30px rgba(249,115,22,0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1140px;
  --section-spacing: 100px;
}

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

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  color: var(--dark);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: 3rem; letter-spacing: -0.03em; }
h2 { font-size: 2.25rem; letter-spacing: -0.02em; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-600);
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: var(--section-spacing) 0;
}

/* Alternance de fonds */
.bg-white { background: var(--white); }
.bg-light { background: var(--gray-50); }
.bg-dark {
  background: var(--dark);
  color: var(--gray-300);
}
.bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--white); }
.bg-dark p { color: var(--gray-400); }

.bg-gradient {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  color: var(--gray-300);
}
.bg-gradient h2, .bg-gradient h3 { color: var(--white); }
.bg-gradient p { color: var(--gray-400); }

/* --- Section Header (label + titre + sous-titre) --- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-600);
}

.bg-dark .section-header p,
.bg-gradient .section-header p {
  color: var(--gray-400);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 25, 35, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-logo img {
  height: 36px;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navbar-menu a {
  color: var(--gray-400);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.navbar-menu a:not(.navbar-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.navbar-menu a:not(.navbar-cta):hover::after,
.navbar-menu a.active::after {
  width: 100%;
}

.navbar-menu a:hover {
  color: var(--white);
}

.navbar-menu a.active {
  color: var(--white);
}

.navbar-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
}

.navbar-cta:hover {
  background: var(--primary-light);
  color: var(--white) !important;
}

/* Hamburger */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.navbar-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  background: linear-gradient(160deg, #ffffff 0%, #fef9f5 50%, #fff2e6 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(232,101,10,0.11) 0%, transparent 65%);
  border-radius: 50%;
  animation: floatOrb 12s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -12%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(232,101,10,0.06) 0%, transparent 65%);
  border-radius: 50%;
  animation: floatOrb 16s ease-in-out infinite reverse;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  color: var(--dark);
  font-size: 3.2rem;
  margin-bottom: 24px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: var(--gray-600);
  font-size: 1.15rem;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  justify-content: center;
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--gray-200);
  justify-content: center;
}

.hero-stat .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.hero-stat .label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  display: inline-block;
  background: rgba(232,101,10,0.08);
  padding: 4px 14px;
  border-radius: 20px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,101,10,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}

.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--gray-300);
}

.btn-outline-dark:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-link {
  background: none;
  border: none;
  color: var(--primary);
  padding: 0;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-link:hover {
  color: var(--primary-light);
}

.btn-secondary {
  background: var(--dark);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--dark-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,25,35,0.2);
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.card-dark {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.06);
}

.card-dark:hover {
  border-color: rgba(232,101,10,0.3);
  box-shadow: var(--shadow-glow);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 1.3rem;
  margin-bottom: 20px;
  background: rgba(232,101,10,0.08);
  color: var(--primary);
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  margin-bottom: 16px;
  font-size: 0.95rem;
}

/* ============================================
   GRIDS
   ============================================ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

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

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

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,101,10,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--gray-400);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FEATURE LIST (avantages, points forts)
   ============================================ */
.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(232,101,10,0.08);
  color: var(--primary);
  font-size: 1.1rem;
}

.feature-item h4 {
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 0.92rem;
  margin: 0;
}

/* ============================================
   TABLES (Pricing, comparatifs)
   ============================================ */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

th {
  background: var(--dark);
  color: var(--white);
  font-weight: 600;
  text-align: left;
  padding: 16px 20px;
}

td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}

tr:last-child td { border-bottom: none; }

tr:hover td {
  background: var(--gray-50);
}

.table-highlight td {
  background: rgba(232,101,10,0.04);
  font-weight: 600;
}

/* ============================================
   BADGES / TAGS
   ============================================ */
.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge-primary { background: rgba(232,101,10,0.1); color: var(--primary); }
.badge-danger { background: rgba(239,68,68,0.1); color: var(--danger); }
.badge-success { background: rgba(34,197,94,0.1); color: var(--success); }
.badge-warning { background: rgba(245,158,11,0.1); color: var(--warning); }

/* ============================================
   FAQ / ACCORDION
   ============================================ */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--gray-50);
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.8;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ============================================
   PROCESS / STEPS
   ============================================ */
.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.step:last-child { margin-bottom: 0; }

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
}

.step h4 {
  margin-bottom: 8px;
}

.step p {
  font-size: 0.95rem;
  margin: 0;
}

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 36px;
  border-left: 4px solid var(--primary);
}

.testimonial p {
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: var(--gray-400);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 32px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--gray-400);
  max-width: 280px;
}

.footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--gray-400);
  font-size: 0.9rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--gray-400);
  margin-left: 24px;
}

.footer-bottom a:hover { color: var(--white); }

/* ============================================
   PAGE HEADER (sous-pages)
   ============================================ */
.page-header {
  padding: 160px 0 80px;
  background: linear-gradient(160deg, #ffffff 0%, #fef9f5 50%, #fff2e6 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,101,10,0.09) 0%, transparent 65%);
  border-radius: 50%;
  animation: floatOrb 14s ease-in-out infinite;
  pointer-events: none;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  color: var(--dark);
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.page-header p {
  color: var(--gray-600);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232,101,10,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-white { color: var(--white); }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.mt-60 { margin-top: 60px; }
.mb-60 { margin-bottom: 60px; }

/* Check list */
.check-list {
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--gray-700);
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.85rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.6rem; }
}

@media (max-width: 768px) {
  :root { --section-spacing: 64px; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .navbar-menu { display: none; }
  .navbar-toggle { display: block; }

  .navbar-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(15,25,35,0.97);
    backdrop-filter: blur(16px);
    padding: 24px;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    animation: pageFadeIn 0.25s ease forwards;
  }

  .navbar-menu.active a {
    font-size: 1rem;
  }

  .hero { min-height: auto; padding: 140px 0 64px; }
  .hero h1 { font-size: 2.1rem; }
  .hero-buttons { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 24px; }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-bottom a { margin-left: 0; margin-right: 16px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.7rem; }
  .container { padding: 0 16px; }
  .card { padding: 28px 20px; }
}
/* ============================================
   LOGO TEXTE
   ============================================ */
.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
  text-decoration: none;
}

/* ============================================
   PAGE TRANSITION & SCROLL REVEAL
   ============================================ */
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0) scale(1); }
  40%       { transform: translateY(-28px) scale(1.03); }
  70%       { transform: translateY(14px) scale(0.97); }
}

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

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}

body {
  animation: pageFadeIn 0.5s ease forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1),
              transform 0.65s cubic-bezier(0.4,0,0.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   PROCESS STEPS — "Comment ça fonctionne"
   ============================================ */
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}

.process-card {
  flex: 1;
  max-width: 280px;
  background: var(--gray-50, #f8f9fa);
  border: 1px solid var(--gray-200, #e5e7eb);
  border-radius: 16px;
  padding: 40px 28px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.process-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(232,101,10,0.3);
}

.process-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.process-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.process-card p {
  font-size: 0.9rem;
  color: var(--gray-600, #6b7280);
  line-height: 1.6;
  margin-bottom: 12px;
}

.process-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.process-link:hover {
  text-decoration: underline;
}

.process-connector {
  display: flex;
  align-items: center;
  padding-top: 60px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .process-card {
    max-width: 100%;
    width: 100%;
  }

  .process-connector {
    padding-top: 0;
    transform: rotate(90deg);
  }
}

/* ============================================
   AUDIT PHASES
   ============================================ */
.audit-phases-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 1080px;
  margin: 0 auto;
}

.audit-phase-card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 40px 22px 32px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  margin: 0 8px;
}

.audit-phase-card:hover {
  border-color: rgba(232,101,10,0.25);
  box-shadow: 0 10px 40px rgba(232,101,10,0.1);
  transform: translateY(-6px);
}

.audit-phase-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(232,101,10,0.4);
}

.audit-phase-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  margin-top: 4px;
}

.audit-phase-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.audit-phase-card p {
  font-size: 0.87rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
}

.audit-phase-duration {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(232,101,10,0.08);
  padding: 4px 12px;
  border-radius: 20px;
}

.audit-phase-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  font-size: 1.8rem;
  flex-shrink: 0;
  padding-top: 80px;
  width: 28px;
  font-weight: 300;
}

@media (max-width: 900px) {
  .audit-phases-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .audit-phase-card {
    max-width: 400px;
    width: 100%;
    margin: 0;
  }

  .audit-phase-connector {
    padding-top: 0;
    transform: rotate(90deg);
    width: auto;
    height: 28px;
  }
}
