/* ============================================================
   /assets/css/integration.css
   Page méthodologie d'onboarding/migration — design XXL premium
   ============================================================ */

:root {
  --ig-cyan: #209C9A;
  --ig-cyan-light: #67E8E5;
  --ig-cyan-dark: #178786;
  --ig-noir: #0F172A;
  --ig-cream: #FAF8F3;
}

/* ════════════════════════════════════════════════════════════════
   GENERIC
   ════════════════════════════════════════════════════════════════ */
.ig-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.ig-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.ig-eyebrow {
  display: inline-block;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ig-cyan-dark);
  background: rgba(32,156,154,0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.ig-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ig-noir);
  margin: 0 0 14px;
}
.ig-title span {
  background: linear-gradient(135deg, var(--ig-cyan) 0%, var(--ig-cyan-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ig-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

.ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 14px;
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  cursor: pointer;
  border: none;
}
.ig-btn-primary {
  background: linear-gradient(135deg, var(--ig-cyan-light), var(--ig-cyan), var(--ig-cyan-dark));
  background-size: 200% 200%;
  color: var(--ig-noir);
  box-shadow: 0 8px 28px rgba(103,232,229,0.32);
}
.ig-btn-primary:hover {
  transform: translateY(-2px);
  background-position: 100% 100%;
  box-shadow: 0 12px 38px rgba(103,232,229,0.45);
}
.ig-btn-ghost {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.18);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.ig-btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.35);
}
.ig-btn-xl { padding: 18px 36px; font-size: 1.1rem; }

/* ════════════════════════════════════════════════════════════════
   HERO MARINE PREMIUM
   ════════════════════════════════════════════════════════════════ */
.ig-hero {
  position: relative;
  padding: clamp(80px, 11vw, 160px) 24px clamp(60px, 8vw, 120px);
  background: linear-gradient(135deg, #051522 0%, #0F172A 30%, #1E293B 70%, #0F172A 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.ig-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.ig-hero-mesh {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  will-change: transform;
  opacity: 0.6;
}
.ig-hero-mesh-1 {
  width: 600px; height: 600px;
  top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(103,232,229,0.45), transparent 60%);
  animation: igHeroMesh1 20s ease-in-out infinite;
}
.ig-hero-mesh-2 {
  width: 700px; height: 700px;
  bottom: -250px; right: -150px;
  background: radial-gradient(circle, rgba(124,58,237,0.35), transparent 60%);
  animation: igHeroMesh2 25s ease-in-out infinite;
}
.ig-hero-mesh-3 {
  width: 500px; height: 500px;
  top: 30%; left: 40%;
  background: radial-gradient(circle, rgba(32,156,154,0.30), transparent 60%);
  animation: igHeroMesh3 30s ease-in-out infinite;
}
@keyframes igHeroMesh1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(80px, 60px) scale(1.15); }
}
@keyframes igHeroMesh2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-100px, -80px) scale(0.9); }
}
@keyframes igHeroMesh3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(60px, -40px) scale(1.1); }
}
.ig-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(103,232,229,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103,232,229,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 70%);
}

.ig-hero-content {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.ig-hero-eyebrow {
  display: inline-block;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ig-cyan-light);
  background: rgba(103,232,229,0.12);
  border: 1px solid rgba(103,232,229,0.3);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.ig-hero-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5.5vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 24px;
}
.ig-hero-title span {
  background: linear-gradient(135deg, var(--ig-cyan-light) 0%, #34D6CF 50%, var(--ig-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ig-hero-accent {
  position: relative;
  white-space: nowrap;
}
.ig-hero-accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 12px;
  background: linear-gradient(90deg, var(--ig-cyan), var(--ig-cyan-light));
  opacity: 0.35;
  z-index: -1;
  border-radius: 4px;
}
.ig-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #CBD5E1;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto 36px;
}
.ig-hero-sub strong { color: var(--ig-cyan-light); font-weight: 700; }

.ig-hero-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
  margin-bottom: 38px;
}
.ig-hero-kpi {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid hsl(var(--k-hue, 178), 60%, 50%, 0.25);
  border-radius: 18px;
  padding: 24px 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.ig-hero-kpi::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, hsl(var(--k-hue, 178), 70%, 60%, 0.2), transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.ig-hero-kpi:hover { transform: translateY(-4px); }
.ig-hero-kpi-val {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, hsl(var(--k-hue, 178), 80%, 70%), hsl(var(--k-hue, 178), 70%, 50%));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.ig-hero-kpi-lbl {
  font-size: 0.82rem;
  color: #94A3B8;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ig-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ════════════════════════════════════════════════════════════════
   PROCESS — Timeline 4 phases
   ════════════════════════════════════════════════════════════════ */
.ig-process {
  padding: clamp(70px, 9vw, 130px) 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(32,156,154,0.07), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(124,58,237,0.05), transparent 50%),
    linear-gradient(180deg, #fff 0%, #FAFBFC 100%);
}
.ig-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  position: relative;
}
.ig-phase {
  position: relative;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 22px;
  padding: 32px 24px 26px;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s;
  isolation: isolate;
  overflow: hidden;
}
.ig-phase:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px hsl(var(--ph-hue, 178), 60%, 50%, 0.2);
}
.ig-phase::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, hsl(var(--ph-hue, 178), 75%, 55%), hsl(calc(var(--ph-hue, 178) + 30), 70%, 45%));
}
.ig-phase-num {
  position: absolute;
  top: 18px; right: 20px;
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1;
  color: hsl(var(--ph-hue, 178), 55%, 55%, 0.15);
  letter-spacing: -0.04em;
}
.ig-phase-bar {
  display: none;
}
.ig-phase-card {
  position: relative;
}
.ig-phase-duration {
  display: inline-block;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--ph-hue, 178), 60%, 38%);
  background: hsl(var(--ph-hue, 178), 70%, 95%);
  padding: 4px 11px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.ig-phase-card h3 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.015em;
  color: var(--ig-noir);
  margin: 0 0 10px;
}
.ig-phase-card p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.55;
  margin: 0 0 16px;
}
.ig-phase-actions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ig-phase-actions li {
  font-size: 0.86rem;
  color: #334155;
  padding-left: 20px;
  position: relative;
}
.ig-phase-actions li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: hsl(var(--ph-hue, 178), 60%, 45%);
  font-weight: 800;
}

/* ════════════════════════════════════════════════════════════════
   PILIERS — 12 cards
   ════════════════════════════════════════════════════════════════ */
.ig-pillars {
  padding: clamp(70px, 9vw, 130px) 0;
  background: linear-gradient(180deg, #FAFBFC 0%, #fff 100%);
}
.ig-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.ig-pillar {
  background: #fff;
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 18px;
  padding: 24px 22px 22px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  isolation: isolate;
}
.ig-pillar:hover {
  transform: translateY(-4px);
  border-color: hsl(var(--p-hue, 178), 60%, 55%);
  box-shadow: 0 16px 40px hsl(var(--p-hue, 178), 60%, 50%, 0.18);
}
.ig-pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 22px;
  width: 60px; height: 3px;
  background: linear-gradient(90deg, hsl(var(--p-hue, 178), 75%, 55%), hsl(calc(var(--p-hue, 178) + 30), 70%, 45%));
  border-radius: 0 0 4px 4px;
}
.ig-pillar-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, hsl(var(--p-hue, 178), 70%, 60%), hsl(var(--p-hue, 178), 60%, 42%));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px hsl(var(--p-hue, 178), 50%, 45%, 0.32);
}
.ig-pillar h3 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ig-noir);
  margin: 0 0 10px;
}
.ig-pillar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ig-pillar li {
  font-size: 0.85rem;
  color: #475569;
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.ig-pillar li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: hsl(var(--p-hue, 178), 60%, 50%);
  font-weight: 900;
}

/* ════════════════════════════════════════════════════════════════
   DATA — 12 catégories
   ════════════════════════════════════════════════════════════════ */
.ig-data {
  padding: clamp(70px, 9vw, 130px) 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(32,156,154,0.06), transparent 50%),
    #fff;
}
.ig-data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.ig-data-cat {
  background: linear-gradient(135deg, #FAF8F3, #fff);
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 14px;
  padding: 18px 18px 16px;
  transition: transform 0.25s, border-color 0.25s;
}
.ig-data-cat:hover {
  transform: translateY(-2px);
  border-color: var(--ig-cyan);
}
.ig-data-cat h4 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--ig-noir);
  margin: 0 0 6px;
}
.ig-data-cat span {
  display: block;
  font-size: 0.84rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 12px;
}
.ig-data-count {
  display: inline-block;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ig-cyan-dark);
  background: rgba(32,156,154,0.12);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ════════════════════════════════════════════════════════════════
   SOLUTIONS — Risk → Fix
   ════════════════════════════════════════════════════════════════ */
.ig-solutions {
  padding: clamp(70px, 9vw, 130px) 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(220,38,38,0.04), transparent 40%),
    radial-gradient(ellipse at 90% 50%, rgba(16,185,129,0.05), transparent 40%),
    linear-gradient(180deg, #fff 0%, #FAFBFC 100%);
}
.ig-solutions-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ig-solution {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1.4fr);
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 14px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.ig-solution:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 22px rgba(15,23,42,0.06);
}
.ig-solution-problem {
  font-weight: 700;
  font-size: 0.94rem;
  color: #DC2626;
  background: #FEF2F2;
  padding: 8px 14px;
  border-radius: 10px;
  border-left: 3px solid #DC2626;
}
.ig-solution-arrow {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.4rem;
  color: var(--ig-cyan);
  font-weight: 900;
}
.ig-solution-fix {
  font-size: 0.9rem;
  color: #065F46;
  background: #ECFDF5;
  padding: 8px 14px;
  border-radius: 10px;
  border-left: 3px solid #10B981;
  line-height: 1.45;
}
@media (max-width: 700px) {
  .ig-solution { grid-template-columns: 1fr; gap: 8px; }
  .ig-solution-arrow { transform: rotate(90deg); display: flex; justify-content: center; }
}

/* ════════════════════════════════════════════════════════════════
   AI — section dark cyan
   ════════════════════════════════════════════════════════════════ */
.ig-ai {
  padding: clamp(70px, 9vw, 130px) 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(103,232,229,0.18), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(32,156,154,0.14), transparent 55%),
    linear-gradient(135deg, #051522 0%, #0F172A 50%, #1E293B 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ig-ai .ig-eyebrow {
  background: rgba(103,232,229,0.12);
  color: var(--ig-cyan-light);
}
.ig-ai .ig-title { color: #fff; }
.ig-ai .ig-title span {
  background: linear-gradient(135deg, var(--ig-cyan-light), #34D6CF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ig-ai .ig-sub { color: #CBD5E1; }

.ig-ai-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
@media (max-width: 900px) { .ig-ai-grid { grid-template-columns: 1fr; } }

.ig-ai-text .ig-head { text-align: left; margin: 0 0 28px; max-width: none; }
.ig-ai-text .ig-sub { margin-bottom: 28px; }

.ig-ai-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ig-ai-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ig-ai-feature-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(103,232,229,0.15);
  border: 1px solid rgba(103,232,229,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.ig-ai-feature strong {
  display: block;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 4px;
}
.ig-ai-feature p {
  font-size: 0.92rem;
  color: #CBD5E1;
  line-height: 1.6;
  margin: 0;
}

.ig-ai-viz {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  position: relative;
}
.ig-ai-orb {
  position: relative;
  width: 85%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #67E8E5 0%, var(--ig-cyan) 50%, var(--ig-cyan-dark) 100%);
  box-shadow:
    0 30px 80px rgba(103,232,229,0.4),
    inset 0 4px 20px rgba(255,255,255,0.3),
    inset 0 -10px 30px rgba(0,0,0,0.2);
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-ai-orb-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.65;
  mix-blend-mode: screen;
  will-change: transform;
}
.ig-ai-orb-blob-1 {
  width: 60%; height: 60%;
  top: 10%; left: 10%;
  background: #67E8E5;
  animation: igAiBlob1 12s ease-in-out infinite;
}
.ig-ai-orb-blob-2 {
  width: 70%; height: 70%;
  bottom: -10%; right: -10%;
  background: #34D6CF;
  animation: igAiBlob2 15s ease-in-out infinite;
}
.ig-ai-orb-blob-3 {
  width: 50%; height: 50%;
  top: 40%; left: 30%;
  background: rgba(255,255,255,0.4);
  animation: igAiBlob3 18s ease-in-out infinite;
}
@keyframes igAiBlob1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(20%,10%) scale(1.2); }
}
@keyframes igAiBlob2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-15%,-10%) scale(0.85); }
}
@keyframes igAiBlob3 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-25%,15%) scale(1.1); }
}
.ig-ai-orb-core {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.ig-ai-orb-label {
  font-family: 'League Spartan', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.92;
}
.ig-ai-orb-stat {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.ig-ai-orb-sub {
  font-size: 0.86rem;
  opacity: 0.88;
  font-weight: 500;
}

/* ════════════════════════════════════════════════════════════════
   ARCHI — 6 layers stack
   ════════════════════════════════════════════════════════════════ */
.ig-archi {
  padding: clamp(70px, 9vw, 130px) 0;
  background: linear-gradient(180deg, #fff 0%, #FAFBFC 100%);
}
.ig-archi-layers {
  max-width: 800px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ig-archi-layer {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 14px;
  padding: 16px 22px;
  background: linear-gradient(135deg, #fff, hsl(var(--l-hue, 178), 50%, 98%));
  border: 1px solid hsl(var(--l-hue, 178), 50%, 80%);
  border-left: 4px solid hsl(var(--l-hue, 178), 60%, 50%);
  border-radius: 12px;
  align-items: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.ig-archi-layer:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 22px hsl(var(--l-hue, 178), 50%, 50%, 0.18);
}
.ig-archi-layer-label {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: hsl(var(--l-hue, 178), 60%, 35%);
  letter-spacing: 0.02em;
}
.ig-archi-layer-content {
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.5;
}
@media (max-width: 640px) {
  .ig-archi-layer { grid-template-columns: 1fr; }
}

.ig-archi-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}
.ig-archi-stat {
  background: #fff;
  border: 1px solid rgba(32,156,154,0.18);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(32,156,154,0.06);
}
.ig-archi-stat strong {
  display: block;
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--ig-cyan-dark);
  letter-spacing: -0.02em;
}
.ig-archi-stat span {
  display: block;
  font-size: 0.78rem;
  color: #475569;
  margin-top: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════════════════════════════
   FORMS — 7 cards + 5 checklists
   ════════════════════════════════════════════════════════════════ */
.ig-forms {
  padding: clamp(70px, 9vw, 130px) 0;
  background: linear-gradient(180deg, #FAFBFC 0%, #fff 100%);
}
.ig-forms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto 60px;
}
.ig-form-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 16px;
  padding: 24px 20px 22px;
  transition: transform 0.25s, box-shadow 0.25s;
  isolation: isolate;
}
.ig-form-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px hsl(var(--f-hue, 178), 60%, 50%, 0.16);
}
.ig-form-card-num {
  position: absolute;
  top: 18px; right: 20px;
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: hsl(var(--f-hue, 178), 60%, 50%);
  background: hsl(var(--f-hue, 178), 70%, 95%);
  padding: 4px 10px;
  border-radius: 8px;
}
.ig-form-card h4 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ig-noir);
  margin: 0 0 8px;
  max-width: calc(100% - 60px);
}
.ig-form-card p {
  font-size: 0.86rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

.ig-checklists-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  text-align: center;
  color: var(--ig-noir);
  margin: 0 0 24px;
}
.ig-checklists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}
.ig-checklist {
  background: linear-gradient(180deg, var(--ig-cream) 0%, #fff 100%);
  border: 1px solid rgba(32,156,154,0.18);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
  transition: transform 0.25s;
}
.ig-checklist:hover { transform: translateY(-2px); }
.ig-checklist-icon { font-size: 1.6rem; margin-bottom: 6px; }
.ig-checklist strong {
  display: block;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ig-noir);
  margin-bottom: 4px;
}
.ig-checklist span {
  display: block;
  font-size: 0.78rem;
  color: #475569;
  line-height: 1.4;
}

/* ════════════════════════════════════════════════════════════════
   GUARANTEE — 4 cards dark
   ════════════════════════════════════════════════════════════════ */
.ig-guarantee {
  padding: clamp(70px, 9vw, 130px) 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(103,232,229,0.18), transparent 55%),
    linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: #fff;
}
.ig-guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.ig-guarantee-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid hsl(var(--g-hue, 178), 60%, 50%, 0.3);
  border-radius: 18px;
  padding: 28px 22px 24px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.ig-guarantee-card:hover {
  transform: translateY(-6px);
  border-color: hsl(var(--g-hue, 178), 70%, 65%);
  box-shadow: 0 20px 50px hsl(var(--g-hue, 178), 60%, 50%, 0.25);
}
.ig-guarantee-icon { font-size: 2.4rem; margin-bottom: 12px; }
.ig-guarantee-card strong {
  display: block;
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  background: linear-gradient(135deg, hsl(var(--g-hue, 178), 80%, 75%), hsl(var(--g-hue, 178), 70%, 55%));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.ig-guarantee-card p {
  font-size: 0.88rem;
  color: #CBD5E1;
  margin: 0;
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════════
   CTA FINAL
   ════════════════════════════════════════════════════════════════ */
.ig-cta-final {
  position: relative;
  padding: clamp(80px, 11vw, 160px) 24px;
  background: linear-gradient(135deg, var(--ig-cyan) 0%, var(--ig-cyan-dark) 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.ig-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.ig-cta-mesh {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  will-change: transform;
}
.ig-cta-mesh-1 {
  width: 600px; height: 600px;
  top: -150px; left: -100px;
  background: radial-gradient(circle, #67E8E5, transparent 60%);
  animation: igHeroMesh1 18s ease-in-out infinite;
}
.ig-cta-mesh-2 {
  width: 700px; height: 700px;
  bottom: -200px; right: -150px;
  background: radial-gradient(circle, #34D6CF, transparent 60%);
  animation: igHeroMesh2 22s ease-in-out infinite;
}
.ig-cta-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 18px;
}
.ig-cta-title span {
  position: relative;
  white-space: nowrap;
}
.ig-cta-title span::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 10px;
  background: rgba(255,255,255,0.35);
  z-index: -1;
  border-radius: 4px;
}
.ig-cta-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255,255,255,0.92);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.ig-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 24px;
}
.ig-cta-final .ig-btn-primary {
  background: #fff;
  color: var(--ig-cyan-dark);
  box-shadow: 0 10px 32px rgba(0,0,0,0.18);
}
.ig-cta-final .ig-btn-primary:hover {
  background: #F8F8F8;
  box-shadow: 0 14px 38px rgba(0,0,0,0.24);
}
.ig-cta-trust {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.78);
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .ig-hero-mesh, .ig-ai-orb-blob, .ig-cta-mesh { animation: none; }
}
