/* =========================================================================
   STANDLY STUDIO — landing-specific styles
   ========================================================================= */

/* ---- HERO ---- */
.hero {
  position: relative;
  padding-top: clamp(64px, 10vw, 120px);
  padding-bottom: clamp(56px, 8vw, 100px);
  overflow: hidden;
}
.hero-decor {
  position: absolute; inset: 0; pointer-events: none;
  z-index: 0;
}
.hero-decor .ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(224,185,107,.10);
}
.hero-decor .ring-1 { width: 360px; height: 360px; top: 8%; right: 4%; animation: floaty 9s ease-in-out infinite; }
.hero-decor .ring-2 { width: 180px; height: 180px; bottom: 14%; right: 18%; animation: floaty 7s ease-in-out infinite 1.5s; }
.hero-decor .glow {
  position: absolute; width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(224,185,107,.08), transparent 65%);
  top: -200px; right: -200px;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-decor .ring-1, .hero-decor .ring-2 { animation: none; }
}
.hero-inner { position: relative; z-index: 1; max-width: 1000px; }
.hero h1 .line { display: block; }
.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold-light) 50%, var(--gold-deep) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer {
  to { background-position: 200% center; }
}
@media (prefers-reduced-motion: reduce) {
  .hero h1 em { animation: none; }
}
.hero-lede {
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 600px;
  margin-top: 32px;
}
.hero-lede a { color: var(--gold-light); text-underline-offset: 4px; }
.hero-cta-row { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }
.hero-meta {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--line);
  color: var(--fg-muted); font-size: 13px;
}
.hero-meta strong { color: var(--fg); font-weight: 600; }

/* ---- POUR QUI ---- */
.cibles {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.cible {
  padding: 28px 26px; border-radius: var(--radius);
  background: var(--bg-2); border: 1px solid var(--line);
  transition: border-color .35s var(--ease), transform .35s var(--ease), background .35s var(--ease);
}
.cible:hover, .cible:focus-within {
  border-color: rgba(224,185,107,.3);
  background: rgba(224,185,107,.04);
  transform: translateY(-3px);
}
.cible-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(224,185,107,.12);
  color: var(--gold-light);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.cible h3 { font-family: var(--sans); font-weight: 700; font-size: 16px; line-height: 1.3; }
.cible p { font-size: 14px; color: var(--fg-muted); margin-top: 8px; line-height: 1.6; }

/* ---- SERVICES ROWS ---- */
.svc-list { border-top: 1px solid var(--line); }
.svc-row {
  display: grid; grid-template-columns: 60px 1fr auto 28px;
  align-items: center; gap: 24px;
  padding: 28px 8px;
  border-bottom: 1px solid var(--line);
  text-decoration: none; color: inherit;
  position: relative;
  transition: padding .35s var(--ease), background .35s var(--ease);
}
.svc-row::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: linear-gradient(90deg, rgba(224,185,107,.08), transparent);
  transition: width .45s var(--ease);
  pointer-events: none;
}
.svc-row:hover, .svc-row:focus-visible { padding-left: 24px; }
.svc-row:hover::before, .svc-row:focus-visible::before { width: 100%; }
.svc-num {
  font-family: var(--mono); font-size: 12px;
  color: var(--fg-muted-2);
  transition: color .25s var(--ease);
}
.svc-row:hover .svc-num, .svc-row:focus-visible .svc-num { color: var(--gold); }
.svc-body {
  display: grid; gap: 6px;
}
.svc-title {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  font-family: var(--serif); font-size: clamp(22px, 3vw, 32px); font-weight: 400;
  line-height: 1.2;
}
.svc-sub {
  font-family: var(--sans); font-size: 13px; font-weight: 400;
  color: var(--fg-muted);
}
.svc-desc {
  font-family: var(--sans); font-size: 14px; color: var(--fg-muted);
  line-height: 1.6; max-width: 640px;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .45s var(--ease), opacity .35s var(--ease), margin-top .35s var(--ease);
}
.svc-row:hover .svc-desc, .svc-row:focus-visible .svc-desc { max-height: 100px; opacity: 1; margin-top: 8px; }
.svc-tag {
  font-family: var(--mono); font-size: 12px; color: var(--gold-light);
  white-space: nowrap;
}
.svc-arrow {
  color: var(--gold);
  opacity: 0; transform: translateX(-8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.svc-row:hover .svc-arrow, .svc-row:focus-visible .svc-arrow { opacity: 1; transform: translateX(0); }
@media (max-width: 700px) {
  .svc-row { grid-template-columns: 50px 1fr; }
  .svc-tag { grid-column: 2; font-size: 11px; }
  .svc-arrow { display: none; }
  .svc-row .svc-desc { max-height: 200px; opacity: 1; margin-top: 8px; } /* always show on mobile */
}

/* ---- STATS ---- */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat {
  text-align: center; padding: 44px 24px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--serif); font-size: clamp(44px, 6vw, 76px);
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-light));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.stat p { font-size: 13px; color: var(--fg-muted); margin-top: 10px; }
@media (max-width: 700px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
}

/* ---- METHOD ---- */
.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 920px) { .method-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .method-grid { grid-template-columns: 1fr; } }
.method-card {
  position: relative;
  padding: 36px 28px 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color .35s var(--ease), transform .35s var(--ease), background .35s var(--ease);
}
.method-card:hover {
  border-color: rgba(224,185,107,.25);
  transform: translateY(-6px);
  background: var(--bg-3);
}
.method-num {
  position: absolute; top: 20px; right: 24px;
  font-family: var(--serif); font-size: 56px; line-height: 1;
  color: rgba(241,237,228,.08);
  transition: color .35s var(--ease);
}
.method-card:hover .method-num { color: var(--gold); }
.method-card h3 { font-family: var(--serif); font-size: 26px; font-weight: 400; }
.method-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.7; margin-top: 12px; }

/* ---- GUARANTEES ---- */
.guarantees-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
@media (max-width: 820px) { .guarantees-grid { grid-template-columns: 1fr; gap: 32px; } }
.guarantee-list { list-style: none; padding: 0; margin: 0; }
.guarantee-list li {
  display: flex; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px; color: var(--fg);
}
.guarantee-list li:last-child { border-bottom: 0; }
.guarantee-check {
  width: 24px; height: 24px; min-width: 24px; border-radius: 50%;
  background: rgba(224,185,107,.14);
  color: var(--gold-light);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0; margin-top: 2px;
}

/* ---- TESTIMONIAL ---- */
.testimonial {
  position: relative;
  max-width: 920px; margin: 0 auto;
  padding: 56px 48px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(224,185,107,.12);
}
.testimonial-quote-mark {
  position: absolute; top: 16px; left: 32px;
  font-family: var(--serif); font-size: 100px;
  color: rgba(224,185,107,.15);
  line-height: 1;
  user-select: none;
  aria-hidden: true;
}
.testimonial blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.55;
  color: var(--fg);
  margin: 0; padding-left: 16px;
  position: relative; z-index: 1;
}
.testimonial-cite {
  display: flex; align-items: center; gap: 16px;
  margin-top: 28px; padding-left: 16px;
}
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-light));
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 800; color: #08080c;
  flex-shrink: 0;
}
.testimonial-cite .name { font-weight: 700; font-size: 15px; }
.testimonial-cite .role { font-size: 13px; color: var(--fg-muted); margin-top: 2px; }
@media (max-width: 600px) {
  .testimonial { padding: 40px 28px; }
}

/* ---- LOGOS strip ---- */
.logos-strip {
  display: flex; flex-wrap: wrap; gap: 32px 56px;
  align-items: center; justify-content: center;
  padding: 24px 0;
}
.logo-pill {
  font-family: var(--serif); font-size: 22px;
  color: var(--fg-muted-2);
  letter-spacing: 0.02em;
  opacity: .8;
}

/* ---- FAQ ---- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-trigger {
  width: 100%; text-align: left;
  background: transparent; border: 0;
  padding: 22px 8px; min-height: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: var(--serif); font-size: clamp(18px, 2.2vw, 22px);
  color: var(--fg);
  border-radius: 8px;
}
.faq-trigger:hover { color: var(--gold-light); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
  color: var(--fg-muted);
}
.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  border-color: var(--gold);
  background: rgba(224,185,107,.1);
  color: var(--gold-light);
}
.faq-panel {
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .4s var(--ease), opacity .3s var(--ease), padding .3s var(--ease);
  font-size: 15px; color: var(--fg-muted); line-height: 1.7;
}
.faq-trigger[aria-expanded="true"] + .faq-panel {
  max-height: 600px; opacity: 1; padding: 0 8px 24px;
}

/* ---- CTA section ---- */
.cta-band {
  position: relative; overflow: hidden;
  border-radius: var(--radius-xl);
  margin: 0 var(--container);
  padding: clamp(56px, 8vw, 100px) clamp(28px, 5vw, 80px);
  background: linear-gradient(135deg, #141420, #1c1530);
  border: 1px solid rgba(224,185,107,.14);
  text-align: center;
}
.cta-band::before {
  content: ""; position: absolute;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(224,185,107,.12), transparent 65%);
  top: -120px; right: -120px;
  pointer-events: none;
}
.cta-band h2 { position: relative; z-index: 1; margin-bottom: 16px; }
.cta-band p {
  position: relative; z-index: 1;
  color: var(--fg-muted); font-size: 16px;
  max-width: 520px; margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-band .btn { position: relative; z-index: 1; }

/* ---- INLINE CONTACT FORM ---- */
.contact-band {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px;
  align-items: start;
}
@media (max-width: 880px) { .contact-band { grid-template-columns: 1fr; gap: 32px; } }
.contact-form {
  display: grid; gap: 18px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
[data-form-status] {
  font-size: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  display: none;
}
[data-form-status][data-state="success"] {
  display: block;
  background: rgba(143,224,168,.1);
  color: var(--success);
  border: 1px solid rgba(143,224,168,.25);
}
[data-form-status][data-state="error"] {
  display: block;
  background: rgba(255,138,122,.1);
  color: var(--danger);
  border: 1px solid rgba(255,138,122,.25);
}

/* ---- Reveal-on-scroll ---- */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); }
