/* GothamDev — Conversion & parcours premium v1 */

/* Sections secondaires (moins prioritaires au scroll) */
.section-deemphasized {
  display: none;
}

.hero-trust-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: 20px;
  margin-bottom: 16px;
  max-width: 520px;
  font-size: 0.82rem;
  color: var(--text-2);
}
.hero-trust-line span:not(.ht-dot) {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.hero-trust-line .ht-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.9;
  flex-shrink: 0;
}

/* Hero metrics — alignement colonnes */
.hero-metrics {
  align-items: stretch;
}
.hero-metrics .hm-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
  min-height: 100%;
}
.hero-metrics .hm-value {
  display: flex;
  align-items: baseline;
  gap: 3px;
  min-height: 2.05rem;
  line-height: 1;
}
.hero-metrics .hm-num {
  line-height: 1;
  -webkit-text-fill-color: unset;
  color: var(--text-0);
}
.hero-metrics .hm-unit {
  display: inline-block;
  line-height: 1;
  flex-shrink: 0;
}
.hero-metrics .hm-unit--spacer {
  width: 0.65em;
  visibility: hidden;
}
.hero-metrics .hm-label {
  display: block;
  margin-top: auto;
  min-height: 2.4em;
  line-height: 1.25;
  font-size: 0.72rem;
  color: var(--text-3);
}
.hero-actions--focus {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.hero-actions--focus .hero-actions-main {
  min-width: min(100%, 220px);
}

/* ── Parcours : 4 portes d'entrée ── */
.section-paths {
  padding: 72px 0 80px;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.paths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .paths-grid { grid-template-columns: 1fr; }
}
.path-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 26px;
  border-radius: var(--radius-xl, 18px);
  border: 1px solid var(--border-md);
  background: linear-gradient(145deg, rgba(17, 19, 24, 0.95), rgba(10, 12, 18, 0.98));
  background-clip: padding-box;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.path-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 80% 60% at 0% 0%, rgba(91, 140, 255, 0.12), transparent 55%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.path-card:hover {
  border-color: rgba(91, 140, 255, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.path-card:hover::before { opacity: 1; }
.path-card-icon {
  font-size: 1.75rem;
  line-height: 1;
}
.path-card h3 {
  font-size: 1.15rem;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--text-0);
}
.path-card-desc {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
}
.path-card-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.path-card-list li {
  font-size: 0.84rem;
  color: var(--text-1);
  padding-left: 18px;
  position: relative;
}
.path-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.75;
}
.path-card-cta {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.path-card--web:hover .path-card-cta { color: #8eb8ff; }
.path-card--apps::before { background: radial-gradient(ellipse 80% 60% at 0% 0%, rgba(139, 107, 255, 0.14), transparent 55%); }
.path-card--gaming::before { background: radial-gradient(ellipse 80% 60% at 0% 0%, rgba(245, 158, 11, 0.12), transparent 55%); }
.path-card--it::before { background: radial-gradient(ellipse 80% 60% at 0% 0%, rgba(6, 182, 212, 0.12), transparent 55%); }

/* ── Pourquoi GothamDev ── */
.section-why {
  padding: 80px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.why-item {
  padding: 22px 20px;
  border: 1px solid var(--border-md);
  border-radius: 14px;
  background: var(--bg-card);
  background-clip: padding-box;
  overflow: hidden;
}
.why-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-0);
  margin-bottom: 8px;
}
.why-item p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-2);
  line-height: 1.55;
}

/* ── Apporteurs d'affaires ── */
.section-referral {
  padding: 72px 0;
  background: linear-gradient(135deg, rgba(91, 140, 255, 0.08), rgba(16, 132, 116, 0.06));
  border-top: 1px solid var(--border-md);
  border-bottom: 1px solid var(--border-md);
}
.referral-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 36px 40px;
  border-radius: var(--radius-xl, 18px);
  border: 1px solid rgba(91, 140, 255, 0.25);
  background: var(--bg-card);
}
@media (max-width: 768px) {
  .referral-box {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }
}
.referral-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 16px;
}
.referral-perks span {
  font-size: 0.8rem;
  color: var(--text-1);
}
.referral-perks span::before {
  content: "✓ ";
  color: #4ade80;
}
.referral-copy h2 {
  margin: 12px 0 10px;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.25;
  color: var(--text-0);
}
.referral-copy p {
  margin: 0;
  color: var(--text-1);
  line-height: 1.65;
  max-width: 52ch;
}
.referral-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: min(100%, 260px);
}
.referral-cta .btn-full {
  justify-content: center;
  white-space: nowrap;
}

/* ── CTA final ── */
.section-final-cta {
  padding: 88px 0;
  text-align: center;
}
.page-final-cta {
  border-top: 1px solid var(--border-md);
}
.page-final-cta .final-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-xl, 18px);
  background: linear-gradient(165deg, rgba(18, 21, 30, 0.96), rgba(10, 12, 18, 0.98));
  background-clip: padding-box;
}
.page-final-cta .proof-cta {
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.final-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}
.final-cta-inner h2 { margin-bottom: 16px; }
.final-cta-inner > p {
  font-size: 1.05rem;
  color: var(--text-1);
  line-height: 1.7;
  margin-bottom: 28px;
}
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* ── Tarifs résumé ── */
.pricing-section {
  position: relative;
  overflow: hidden;
}
.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(91, 140, 255, 0.08), transparent 65%),
    radial-gradient(ellipse 40% 30% at 80% 60%, rgba(139, 107, 255, 0.05), transparent 55%);
  pointer-events: none;
}
.pricing-section > .container {
  position: relative;
  z-index: 1;
}

.pricing-teaser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 28px;
}
@media (min-width: 901px) {
  .pricing-teaser-card.featured {
    transform: translateY(-10px);
  }
}
@media (max-width: 900px) {
  .pricing-teaser { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-teaser-card.featured { transform: none; }
}

.pricing-teaser-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  padding: 24px 22px;
  border: 1px solid var(--border-md);
  border-radius: var(--radius-xl, 16px);
  background: linear-gradient(165deg, rgba(18, 21, 30, 0.95), rgba(10, 12, 18, 0.98));
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.pricing-teaser-card:hover {
  border-color: var(--border-lg);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.pricing-teaser-card.featured {
  border-color: rgba(91, 140, 255, 0.45);
  box-shadow:
    0 0 0 1px rgba(91, 140, 255, 0.12),
    0 20px 50px rgba(91, 140, 255, 0.14);
  background: linear-gradient(165deg, rgba(22, 28, 48, 0.98), rgba(12, 14, 24, 0.99));
}
.pricing-teaser-card.featured:hover {
  border-color: rgba(91, 140, 255, 0.6);
  box-shadow:
    0 0 0 1px rgba(91, 140, 255, 0.2),
    0 24px 56px rgba(91, 140, 255, 0.18);
}
@media (min-width: 901px) {
  .pricing-teaser-card.featured:hover {
    transform: translateY(-14px);
  }
}

.pricing-teaser-card .pc-badge {
  align-self: flex-start;
  margin-bottom: 14px;
}
.pricing-teaser-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--text-0);
  letter-spacing: -0.02em;
}

.pt-price-wrap {
  margin-bottom: 10px;
}
.pt-from {
  display: block;
  font-size: 0.72rem;
  color: var(--text-3);
  margin-bottom: 2px;
}
.pricing-teaser-card .pt-price {
  font-family: var(--font-display, inherit);
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-0);
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.pricing-teaser-card .pt-price span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-2);
}
.pt-price--quote {
  font-size: 1.65rem !important;
}

.pt-desc {
  font-size: 0.82rem;
  color: var(--text-2);
  margin: 0 0 16px;
  line-height: 1.55;
  min-height: 2.5em;
}

.pt-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0 0 16px;
  padding: 0;
  flex: 1;
}
.pt-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-1);
  line-height: 1.4;
}

.pt-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.pt-meta-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-2);
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}
.pt-meta-pill--accent {
  color: var(--accent);
  border-color: rgba(91, 140, 255, 0.25);
  background: rgba(91, 140, 255, 0.08);
}

.pricing-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  margin-bottom: 24px;
  font-size: 0.82rem;
  color: var(--text-2);
}
.pricing-trust-dot {
  color: var(--text-3);
  user-select: none;
}

.pricing-teaser-cta {
  text-align: center;
  margin: 0;
}
.pricing-teaser-cta .btn {
  min-width: min(100%, 320px);
}

/* Process 7 étapes — grille compacte */
.process-steps-grid--7 {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* Services : textes un peu plus aérés */
.service-card p {
  max-width: 62ch;
}

/* CTA inter-section */
.section-cta-strip {
  text-align: center;
  padding: 32px 0 8px;
}
.section-cta-strip .proof-cta { justify-content: center; }

/* Section SEO local — référencement Google */
.seo-local-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin: 28px 0 32px;
}
.seo-local-card {
  padding: 22px;
  border: 1px solid var(--border-md);
  border-radius: 16px;
  background: var(--bg-card);
}
.seo-local-card h3 {
  font-size: 1rem;
  margin: 0 0 10px;
  color: var(--text-0);
}
.seo-local-card p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0 0 12px;
}
.seo-local-card a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.seo-local-card a:hover { text-decoration: underline; }
.seo-cities {
  margin: 8px 0 28px;
  padding: 22px 24px;
  border: 1px solid var(--border-md);
  border-radius: 16px;
  background: rgba(91, 140, 255, 0.04);
}
.seo-cities-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin: 0 0 14px;
}
.seo-cities-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}
.seo-cities-links a {
  font-size: 0.86rem;
  color: var(--text-1);
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid var(--border-md);
  border-radius: 999px;
  background: var(--bg-card);
  transition: border-color 0.2s, color 0.2s;
}
.seo-cities-links a:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.seo-local-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ── Nav : badge note avis ── */
.nav-rating {
  display: inline-block;
  margin-left: 3px;
  font-size: 0.78em;
  font-weight: 800;
  color: #f59e0b;
  letter-spacing: -0.02em;
  vertical-align: baseline;
}

/* ── Avis accueil : bandeau score ── */
.testi-score-bar {
  max-width: 720px;
  margin: 0 auto 28px;
}
.shop-custom--compact {
  padding: 18px 22px;
  gap: 16px;
}
.shop-custom--compact .shop-custom-brand {
  font-size: 0.95rem;
}
.shop-custom--compact .shop-custom-score {
  font-size: 1.75rem;
}
.shop-custom--compact .shop-custom-actions {
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .shop-custom--compact {
    flex-direction: column;
    align-items: stretch;
  }
  .shop-custom--compact .shop-custom-actions {
    width: 100%;
    display: flex;
    gap: 8px;
  }
  .shop-custom--compact .shop-custom-actions .btn {
    flex: 1;
    justify-content: center;
  }
}

.testimonials .testi-card blockquote {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-1);
  margin: 0;
  flex: 1;
}
.testimonials .testi-actions {
  margin-top: 32px;
}
