.ia-page {
  --g-bg: #0b0b0f;
  --g-bg2: #0f0f16;
  --g-accent: #3e8ffee0;
  --g-ar: 62, 143, 254;
  --g-text: #f0ede8;
  --g-muted: rgba(240, 237, 232, 0.45);
  --g-border: rgba(255, 255, 255, 0.07);
  --g-radius: 16px;
  --g-purple: rgba(138, 92, 255, 0.6);
  --g-teal: rgba(62, 255, 200, 0.6);
}
.ia-page*,
.ia-page *::before,
.ia-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.ia-page {
  background: var(--g-bg);
  color: var(--g-text);
  overflow: hidden;
}
.ia-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.postid-1902 ul {
    margin: 0 !important;
}
.postid-1902 h2 {
    margin-bottom: 2rem !important;
}
.postid-1902 h2::after {
    display: none !important;
}
.ia-ew {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--g-accent);
}
.ia-ew::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--g-accent);
  opacity: 0.6;
  flex-shrink: 0;
}
.ia-reveal {
  opacity: 0;
  translate: 0 22px;
  transition:
    opacity 0.65s ease,
    translate 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}
.ia-reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}
@media (prefers-reduced-motion: reduce) {
  .ia-reveal {
    transition: none;
    opacity: 1;
    translate: 0;
  }
}

/* 1. PROBLÈME – flow visuel tâches répétitives */
.ia-problem {
  padding: 6rem 5vw;
  border-bottom: 1px solid var(--g-border);
}
.ia-problem .ia-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 7rem;
  align-items: center;
}
.ia-prob-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ia-prob-title {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.ia-prob-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--g-accent);
}
.ia-prob-desc {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--g-muted);
}
.ia-prob-desc strong {
  color: rgba(240, 237, 232, 0.75);
  font-weight: 600;
}

/* Flux de tâches répétitives */
.ia-loop {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ia-loop-title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g-muted);
  margin-bottom: 0.3rem;
}
.ia-loop-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--g-border);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.ia-loop-item:hover {
  border-color: rgba(var(--g-ar), 0.2);
  background: rgba(var(--g-ar), 0.03);
}
.ia-loop-item.automated {
  border-color: rgba(62, 255, 200, 0.2);
  background: rgba(62, 255, 200, 0.04);
}
.ia-loop-icon {
  font-size: 1rem;
  flex-shrink: 0;
}
.ia-loop-text {
  font-size: 0.8rem;
  color: var(--g-muted);
  flex: 1;
}
.ia-loop-item.automated .ia-loop-text {
  color: rgba(240, 237, 232, 0.65);
}
.ia-loop-badge {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 0.2rem 0.65rem;
}
.ia-loop-badge.manual {
  color: rgba(255, 92, 92, 0.7);
  background: rgba(255, 92, 92, 0.08);
  border: 1px solid rgba(255, 92, 92, 0.15);
}
.ia-loop-badge.auto {
  color: rgba(62, 255, 200, 0.8);
  background: rgba(62, 255, 200, 0.08);
  border: 1px solid rgba(62, 255, 200, 0.2);
}

/* 2. SOLUTION */
.ia-solution {
  background: var(--g-bg2);
  padding: 6rem 5vw;
  border-bottom: 1px solid var(--g-border);
  position: relative;
  overflow: hidden;
}
.ia-solution::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(138, 92, 255, 0.04) 0%,
    rgba(var(--g-ar), 0.04) 40%,
    transparent 70%
  );
  right: -300px;
  top: 50%;
  translate: 0 -50%;
  pointer-events: none;
}
.ia-solution .ia-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem 7rem;
  align-items: center;
  position: relative;
}
.ia-sol-content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.ia-sol-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.ia-sol-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--g-accent);
}
.ia-sol-desc {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--g-muted);
}
.ia-sol-desc strong {
  color: rgba(240, 237, 232, 0.75);
  font-weight: 600;
}
.ia-check {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.ia-check li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.87rem;
  color: var(--g-muted);
  line-height: 1.55;
  transition: color 0.25s;
}
.ia-check li:hover {
  color: var(--g-text);
}
.ia-check li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(var(--g-ar), 0.1)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2.5 5l2 2 3-3' stroke='%233e8fff' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/10px no-repeat;
  border: 1px solid rgba(var(--g-ar), 0.3);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Flux IA visuel */
.ia-flow {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: stretch;
}
.ia-flow-node {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--g-border);
  border-radius: 12px;
  padding: 1rem 1.3rem;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.ia-flow-node:hover {
  border-color: rgba(var(--g-ar), 0.22);
  background: rgba(var(--g-ar), 0.04);
}
.ia-flow-node.input {
  border-color: rgba(var(--g-ar), 0.2);
  background: rgba(var(--g-ar), 0.05);
}
.ia-flow-node.process {
  border-color: rgba(138, 92, 255, 0.2);
  background: rgba(138, 92, 255, 0.04);
}
.ia-flow-node.output {
  border-color: rgba(62, 255, 200, 0.2);
  background: rgba(62, 255, 200, 0.04);
}
.ia-flow-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.ia-flow-node.input .ia-flow-label {
  color: rgba(var(--g-ar), 0.6);
}
.ia-flow-node.process .ia-flow-label {
  color: rgba(138, 92, 255, 0.7);
}
.ia-flow-node.output .ia-flow-label {
  color: rgba(62, 255, 200, 0.7);
}
.ia-flow-text {
  font-size: 0.8rem;
  color: var(--g-muted);
}
.ia-flow-arrow {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(var(--g-ar), 0.3);
}

/* 3. PRESTATIONS */
.ia-prestations {
  padding: 6rem 5vw;
  border-bottom: 1px solid var(--g-border);
}
.ia-prest-hd {
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
}
.ia-prest-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.ia-prest-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--g-accent);
}
.ia-pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.ia-pcard {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--g-border);
  border-radius: var(--g-radius);
  padding: 1.8rem;
  transition:
    border-color 0.35s,
    background 0.35s,
    transform 0.35s;
  position: relative;
  overflow: hidden;
}
.ia-pcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--g-accent);
  opacity: 0;
  transition: opacity 0.35s;
}
.ia-pcard:hover {
  border-color: rgba(var(--g-ar), 0.2);
  background: rgba(var(--g-ar), 0.03);
  transform: translateY(-3px);
}
.ia-pcard:hover::before {
  opacity: 0.7;
}
.ia-pcard-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(var(--g-ar), 0.6);
  background: rgba(var(--g-ar), 0.08);
  border: 1px solid rgba(var(--g-ar), 0.15);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1.2rem;
}
.ia-pcard-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--g-text);
  margin-bottom: 0.7rem;
}
.ia-pcard-desc {
  font-size: 0.83rem;
  line-height: 1.75;
  color: var(--g-muted);
}
.ia-pcard-list {
  list-style: none;
  margin-top: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.ia-pcard-list li {
  font-size: 0.76rem;
  color: var(--g-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ia-pcard-list li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--g-accent);
  opacity: 0.7;
  flex-shrink: 0;
}

/* 4. POURQUOI MOI */
.ia-why {
  background: var(--g-bg2);
  padding: 6rem 5vw;
  border-bottom: 1px solid var(--g-border);
}
.ia-why-hd {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 560px;
}
.ia-why-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.ia-why-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--g-accent);
}
.ia-wlist {
  list-style: none;
}
.ia-witem {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  align-items: center;
  gap: 0 2.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--g-border);
  transition: padding-left 0.35s;
  cursor: default;
}
.ia-witem:last-child {
  border-bottom: 1px solid var(--g-border);
}
.ia-witem:hover {
  padding-left: 1rem;
}
.ia-wn {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(var(--g-ar), 0.35);
  transition: color 0.3s;
}
.ia-witem:hover .ia-wn {
  color: var(--g-accent);
}
.ia-wname {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--g-text);
  margin-bottom: 0.25rem;
}
.ia-wdesc {
  font-size: 0.83rem;
  color: var(--g-muted);
  line-height: 1.6;
}
.ia-wbadge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(var(--g-ar), 0.5);
  background: rgba(var(--g-ar), 0.07);
  border: 1px solid rgba(var(--g-ar), 0.14);
  border-radius: 100px;
  padding: 0.3rem 0.8rem;
  white-space: nowrap;
  transition: all 0.3s;
}
.ia-witem:hover .ia-wbadge {
  background: rgba(var(--g-ar), 0.13);
  color: var(--g-accent);
  border-color: rgba(var(--g-ar), 0.28);
}

/* 5. BÉNÉFICES */
.ia-benefits {
  padding: 6rem 5vw;
  border-bottom: 1px solid var(--g-border);
}
.ia-benefits .ia-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem 7rem;
  align-items: start;
}
.ia-ben-left {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.ia-ben-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.ia-ben-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--g-accent);
}
.ia-ben-desc {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--g-muted);
}
.ia-ben-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ia-bitem {
  border: 1px solid var(--g-border);
  border-radius: var(--g-radius);
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.015);
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.35s;
}
.ia-bitem:hover {
  border-color: rgba(var(--g-ar), 0.2);
  background: rgba(var(--g-ar), 0.03);
  transform: translateY(-2px);
}
.ia-bicon {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
  display: block;
}
.ia-bname {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--g-text);
  margin-bottom: 0.3rem;
}
.ia-btext {
  font-size: 0.78rem;
  color: var(--g-muted);
  line-height: 1.6;
}

/* 6. PROCESS */
.ia-process {
  background: var(--g-bg2);
  padding: 6rem 5vw;
  border-bottom: 1px solid var(--g-border);
}
.ia-proc-hd {
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 560px;
}
.ia-proc-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.ia-proc-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--g-accent);
}
.ia-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}
.ia-steps::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(var(--g-ar), 0.3),
    transparent
  );
}
.ia-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 0 1rem;
}
.ia-step-dot {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--g-bg2);
  border: 1px solid rgba(var(--g-ar), 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--g-accent);
  position: relative;
  z-index: 1;
  transition:
    background 0.35s,
    border-color 0.35s,
    transform 0.35s;
}
.ia-step:hover .ia-step-dot {
  background: rgba(var(--g-ar), 0.1);
  border-color: rgba(var(--g-ar), 0.5);
  transform: scale(1.1);
}
.ia-step-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--g-text);
  margin-bottom: 0.3rem;
}
.ia-step-desc {
  font-size: 0.74rem;
  color: var(--g-muted);
  line-height: 1.55;
}

/* 7. CTA */
.ia-cta {
  padding: 7rem 5vw;
  position: relative;
  overflow: hidden;
}
.ia-cta::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(138, 92, 255, 0.05) 0%,
    rgba(var(--g-ar), 0.05) 50%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  pointer-events: none;
}
.ia-cta .ia-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  max-width: 680px;
}
.ia-cta-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.ia-cta-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--g-accent);
}
.ia-cta-desc {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--g-muted);
  max-width: 500px;
}
.ia-cta-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}
.ia-guarantees {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.ia-guarantee {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  color: rgba(240, 237, 232, 0.28);
  letter-spacing: 0.04em;
}
.ia-guarantee::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(var(--g-ar), 0.08)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2.5 5l2 2 3-3' stroke='%233e8fff' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/9px no-repeat;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .ia-problem .ia-inner,
  .ia-solution .ia-inner,
  .ia-benefits .ia-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .ia-pgrid {
    grid-template-columns: 1fr 1fr;
  }
  .ia-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .ia-steps::before {
    display: none;
  }
}
@media (max-width: 640px) {
  .ia-problem,
  .ia-solution,
  .ia-prestations,
  .ia-why,
  .ia-benefits,
  .ia-process,
  .ia-cta {
    padding: 4rem 5vw;
  }
  .ia-pgrid,
  .ia-ben-grid {
    grid-template-columns: 1fr;
  }
  .ia-steps {
    grid-template-columns: 1fr;
  }
  .ia-witem {
    grid-template-columns: 2.5rem 1fr;
  }
  .ia-wbadge {
    display: none;
  }
}
