/* Visibilité Google — styles page service */

.page-visibilite-google {
  overflow-x: hidden;
}

/* ── HERO ── */
.vg-hero {
  position: relative;
  background: linear-gradient(145deg, var(--cream) 0%, #f5f2ec 45%, var(--smoke) 100%);
  padding: 5rem 8% 4.5rem;
  border-bottom: 1px solid var(--light);
  overflow: hidden;
}

.vg-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 169, 138, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.vg-hero::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 169, 138, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.vg-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.vg-hero-left .section-label {
  margin-bottom: 1.2rem;
}

.vg-hero-left .section-h2 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  margin-bottom: 0.4rem;
}

.vg-hero-left .section-intro {
  max-width: 520px;
  margin-top: 1.2rem;
}

.vg-hero-cta {
  display: inline-flex;
  margin-top: 2rem;
}

.vg-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(26, 28, 32, 0.08);
  list-style: none;
}

.vg-hero-trust li {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vg-hero-trust li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── HERO VISUAL ── */
.vg-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
  padding: 1rem 0;
}

.google-pc {
  position: relative;
  width: 100%;
  max-width: 460px;
  z-index: 2;
  filter: drop-shadow(0 24px 48px rgba(26, 28, 32, 0.12));
  will-change: transform;
  animation: googlePcFloat 3s ease-in-out infinite;
}

@keyframes googlePcFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.google-pc-laptop {
  width: 100%;
  height: auto;
  display: block;
}

.google-floating-icon {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--white);
  border: 1px solid rgba(184, 169, 138, 0.35);
  border-radius: 0.45rem;
  padding: 0.55rem 0.75rem;
  box-shadow: 0 8px 24px rgba(26, 28, 32, 0.08);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  z-index: 3;
  will-change: transform;
  animation: googleIconBounce 2.4s ease-in-out infinite;
}

.google-floating-icon svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.google-floating-icon.icon-1 {
  top: 8%;
  left: 0;
  animation-delay: 0s;
}

.google-floating-icon.icon-2 {
  top: 4%;
  right: 0;
  animation-delay: 0.35s;
}

.google-floating-icon.icon-3 {
  bottom: 14%;
  left: -2%;
  animation-delay: 0.7s;
}

.google-floating-icon.icon-4 {
  bottom: 10%;
  right: -2%;
  animation-delay: 1.05s;
}

@keyframes googleIconBounce {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ── POURQUOI ── */
.vg-why {
  padding: 5rem 8%;
  background: var(--white);
}

.vg-why-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.vg-why-header .section-label {
  margin-bottom: 1rem;
}

.vg-why-header .section-h2 {
  margin-bottom: 1rem;
}

.vg-why-header .section-intro {
  max-width: 640px;
  margin: 0 auto;
}

.vg-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.vg-why-card {
  background: var(--cream);
  border: 1px solid rgba(184, 169, 138, 0.2);
  border-radius: 0.4rem;
  padding: 1.75rem 1.5rem;
  transition: box-shadow 0.25s, transform 0.25s;
}

.vg-why-card:hover {
  box-shadow: 0 12px 36px rgba(26, 28, 32, 0.07);
  transform: translateY(-3px);
}

.vg-why-card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  margin-bottom: 1.1rem;
}

.vg-why-card-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.65rem;
  line-height: 1.25;
}

.vg-why-card-text {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
}

/* ── ACCOMPAGNEMENT ── */
.vg-process {
  background: linear-gradient(180deg, var(--smoke) 0%, var(--cream) 100%);
  border-top: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
  padding: 5rem 8%;
}

.vg-process-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.vg-process-header .section-h2 {
  margin-bottom: 0.6rem;
}

.vg-process-header .section-intro {
  max-width: 520px;
  margin: 0 auto;
}

.vg-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.vg-process-step {
  text-align: center;
  padding: 0 0.5rem;
}

.vg-process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.vg-process-step-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.vg-process-step-text {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65;
}

/* ── FAQ ── */
.vg-faq {
  padding: 5rem 8%;
  border-top: 1px solid var(--light);
}

/* ── CTA FINAL ── */
.vg-cta {
  padding: 4.5rem 8%;
  background: var(--ink);
  color: var(--white);
}

.vg-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.vg-cta-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.vg-cta-text {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 520px;
}

.vg-cta-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.25rem;
}

.vg-cta-action .btn-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  white-space: nowrap;
}

.vg-cta-action .btn-primary:hover {
  background: #c9bb9e;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.vg-cta-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: flex-end;
}

.vg-cta-perks li {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.vg-cta-perks li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .vg-why-grid,
  .vg-process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 900px) {
  .vg-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .vg-hero-visual {
    min-height: 340px;
    order: 2;
  }

  .vg-hero-left {
    order: 1;
  }

  .vg-hero-left .section-intro {
    max-width: none;
  }

  .google-floating-icon.icon-1 { left: 2%; }
  .google-floating-icon.icon-2 { right: 2%; }
  .google-floating-icon.icon-3 { left: 0; }
  .google-floating-icon.icon-4 { right: 0; }

  .vg-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .vg-cta-text {
    max-width: none;
    margin: 0 auto;
  }

  .vg-cta-action {
    align-items: center;
  }

  .vg-cta-perks {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .vg-hero {
    padding: 4rem 6% 3rem;
  }

  .vg-why,
  .vg-process,
  .vg-faq {
    padding: 3.5rem 6%;
  }

  .vg-cta {
    padding: 3.5rem 6%;
  }

  .vg-why-grid,
  .vg-process-steps {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .google-pc {
    max-width: 340px;
    animation-name: googlePcFloatMobile;
  }

  @keyframes googlePcFloatMobile {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }

  .google-floating-icon {
    padding: 0.4rem 0.55rem;
    font-size: 0.55rem;
    animation-name: googleIconBounceMobile;
  }

  @keyframes googleIconBounceMobile {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
  }

  .google-floating-icon svg {
    width: 14px;
    height: 14px;
  }

  .google-floating-icon.icon-4 {
    display: none;
  }
}

@media (max-width: 480px) {
  .google-floating-icon.icon-3 {
    display: none;
  }

  .vg-hero-visual {
    min-height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .google-pc,
  .google-floating-icon {
    animation: none !important;
    will-change: auto;
  }
}
