/* ============================================================
   exp-extra.css — extra components for the expanded experience
   (loaded after styles.css + cinema.css)
   ============================================================ */

/* ---- Trust band ---- */
.trust-head { text-align: center; margin-bottom: 44px; }
.trust-head .t-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--muted);
  letter-spacing: -0.01em;
}
.trust-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(22px, 4vw, 60px);
  max-width: 980px;
  margin-inline: auto;
}
.tlogo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--muted);
  opacity: 0.5;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.5vw, 1.18rem);
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out), color 0.45s, filter 0.45s;
}
.tlogo svg { flex-shrink: 0; }
.tlogo:hover {
  opacity: 1;
  color: var(--text);
  transform: scale(1.05);
  filter: drop-shadow(0 6px 18px rgba(224,112,63,0.35));
}
.tlogo:hover svg { color: var(--accent-hot); }

/* framed divider logo wall (premium agency feel) */
.logo-frame {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 940px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,0.022);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 40px 90px -50px rgba(0,0,0,0.8);
}
.logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  opacity: 0.62;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.92rem, 1.4vw, 1.12rem);
  letter-spacing: -0.01em;
  white-space: nowrap;
  will-change: transform, opacity;
  transition: color 0.45s, background 0.45s;
}
.logo-cell svg { flex-shrink: 0; transition: color 0.45s, transform 0.45s var(--ease-out); }
.logo-cell:nth-child(3n) { border-right: none; }
.logo-cell:nth-last-child(-n+3) { border-bottom: none; }
.logo-cell:hover {
  opacity: 1;
  color: var(--text);
  background: radial-gradient(120% 120% at 50% 0%, rgba(194,86,47,0.12), transparent 70%);
}
.logo-cell:hover svg { color: var(--accent-hot); transform: scale(1.12); }
.trust-foot {
  text-align: center;
  margin: 30px auto 0;
  max-width: 540px;
  color: var(--muted-dim);
  font-size: 0.98rem;
  line-height: 1.55;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 26px auto 0;
  max-width: 760px;
}
.tbadge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.025);
  font-weight: 500;
  font-size: 13.5px;
  color: var(--muted);
  transition: color 0.35s, border-color 0.35s, background 0.35s;
}
.tbadge svg { color: var(--accent-hot); flex-shrink: 0; }
.tbadge:hover { color: var(--text); border-color: var(--line-strong); background: rgba(194,86,47,0.08); }

/* reviews stars (act 7) */.stars { display: flex; gap: 12px; margin-bottom: 8px; }
.act.right .stars { justify-content: flex-end; }
.star { color: var(--accent-hot); display: inline-flex; will-change: transform, opacity; transform-origin: center; filter: drop-shadow(0 4px 12px rgba(224,112,63,0.4)); }

/* service cards (act 5) */
.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 42px auto 0;
  max-width: 920px;
}
.svc-card {
  position: relative;
  text-align: left;
  padding: 28px 24px 30px;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.5s var(--ease-out);
}
.svc-card::before {
  content: "";
  position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(320px circle at 50% 0%, rgba(224,112,63,0.14), transparent 60%);
  opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.svc-card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7); }
.svc-card:hover::before { opacity: 1; }
.svc-card .sn { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--accent-hot); }
.svc-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; margin-top: 12px; }
.svc-card p { color: var(--muted); font-size: 0.96rem; margin-top: 8px; line-height: 1.5; }
.svc-card .ex { display: inline-block; margin-top: 14px; font-size: 12px; color: var(--muted-dim); border: 1px dashed var(--line-strong); border-radius: 8px; padding: 5px 10px; letter-spacing: 0.01em; }

/* stat ring (act 3) */
.stat-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(250px, 33vw, 350px);
  height: clamp(250px, 33vw, 350px);
  margin: 14px auto 6px;
}
.stat-ring {
  position: absolute;
  width: clamp(250px, 33vw, 350px);
  height: clamp(250px, 33vw, 350px);
  transform: rotate(-90deg);
  pointer-events: none;
}
.stat-ring circle { fill: none; stroke-width: 2; }
.stat-ring .track { stroke: var(--line-strong); }
.stat-ring .prog {
  stroke: var(--accent-hot);
  stroke-linecap: round;
  stroke-dasharray: 628;
  stroke-dashoffset: 628;
  filter: drop-shadow(0 0 7px rgba(224,112,63,0.6));
}

/* ---- Outcomes (results) ---- */
.outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
  max-width: 880px;
  margin-inline: auto;
}
.outcome {
  text-align: center;
  padding: 26px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.outcome .oa {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  color: var(--accent-hot);
  line-height: 1;
}
.outcome h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; margin-top: 12px; }
.outcome p { color: var(--muted); font-size: 0.95rem; margin-top: 8px; }
.outcomes-cap { text-align: center; margin-top: 22px; font-size: 13px; color: var(--muted-dim); }

/* ---- Advantage compare strip ---- */
.versus {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 38px;
  max-width: 760px;
  margin-inline: auto;
}
.vs-col { text-align: center; padding: 22px 16px; border-radius: 16px; border: 1px solid var(--line); }
.vs-col .vl { display: block; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-dim); }
.vs-col .vv { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin-top: 10px; color: var(--muted); }
.vs-col.you { background: linear-gradient(160deg, rgba(194,86,47,0.16), rgba(255,255,255,0.03)); border-color: rgba(194,86,47,0.4); }
.vs-col.you .vl { color: var(--accent-hot); }
.vs-col.you .vv { color: var(--text); }
.vs-mid { font-family: var(--font-display); font-weight: 600; color: var(--muted-dim); font-size: 0.9rem; }

/* ---- timeline inside the experience (reuses styles.css .timeline) ---- */
.act .timeline { margin-top: 44px; max-width: 920px; margin-inline: auto; }
.act .timeline.lit .timeline-track .fill { width: 100%; }

.act .g-badge { margin-top: 28px; }

/* ---- footer: Google band + nav columns ---- */.g-band {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 42px;
  margin-bottom: 46px;
  border-bottom: 1px solid var(--line);
}
.g-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.03);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  white-space: nowrap;
}
.g-dots { display: inline-flex; gap: 3px; }
.g-dots i { width: 8px; height: 8px; border-radius: 50%; display: block; }
.g-band p { color: var(--muted); font-size: 1.02rem; max-width: 520px; line-height: 1.5; }

.footer-top { grid-template-columns: 1fr 1.15fr; }
.footer-btn { margin-top: 26px; padding: 13px 22px; font-size: 15px; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding-top: 6px; }
.fcol h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-dim);
  margin-bottom: 14px;
}
.fcol a { display: block; color: var(--muted); font-size: 1rem; padding: 7px 0; transition: color 0.3s, transform 0.3s var(--ease-out); }
.fcol a:hover { color: var(--accent-hot); transform: translateX(4px); }
.footer-base a { color: var(--muted-dim); transition: color 0.3s; }
.footer-base a:hover { color: var(--accent-hot); }

/* keep content above canvas */
.act .pieces, .act .timeline, .act .outcomes, .act .versus, .act .svc-cards, .act .stat-wrap, .act .stars, .trust-wall, .trust-head, .logo-frame, .trust-foot, .trust-badges { position: relative; z-index: 2; }

@media (max-width: 900px) {
  .outcomes { grid-template-columns: 1fr; max-width: 420px; }
  .versus { grid-template-columns: 1fr; }
  .versus .vs-mid { display: none; }
  .svc-cards { grid-template-columns: 1fr; max-width: 420px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-nav { gap: 24px; }
  .logo-frame { grid-template-columns: 1fr 1fr; }
  .act.right .stars { justify-content: flex-start; }
}
@media (max-width: 560px) {
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .logo-frame { grid-template-columns: 1fr 1fr; }
  .logo-cell { padding: 22px 10px; font-size: 0.84rem; gap: 8px; white-space: normal; text-align: center; }
  .logo-cell svg { width: 18px; height: 18px; }
}

/* ---- always-available docked CTA ---- */.cta-dock {
  position: fixed;
  right: var(--gutter);
  bottom: 24px;
  z-index: 55;
  padding: 13px 22px;
  font-size: 15px;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), background 0.3s, box-shadow 0.45s var(--ease-out);
}
.cta-dock.show { opacity: 1; transform: none; pointer-events: auto; }
@media (max-width: 560px) {
  .cta-dock { right: 16px; left: 16px; bottom: 16px; justify-content: center; }
}

/* ---- lead-capture audit modal ---- */
.audit-modal {
  position: fixed; inset: 0; z-index: 120;
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.audit-modal.open { opacity: 1; pointer-events: auto; }
.am-backdrop {
  position: absolute; inset: 0;
  background: rgba(8, 10, 12, 0.72);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.am-dialog {
  position: relative;
  width: min(92vw, 480px);
  background: linear-gradient(160deg, #232a30, #1a2026);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 50px 120px -40px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.03) inset;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.5s var(--ease-out);
  max-height: 92vh; overflow-y: auto;
}
.audit-modal.open .am-dialog { transform: none; }
.am-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--line);
  background: rgba(255,255,255,0.03); color: var(--muted);
  cursor: pointer; transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.am-close:hover { color: var(--text); border-color: var(--line-strong); background: rgba(255,255,255,0.06); }
.am-dialog h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 1.95rem); margin-top: 16px; letter-spacing: -0.02em;
}
.am-sub { margin-top: 12px; color: var(--muted); font-size: 1rem; line-height: 1.5; }
.am-form { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.am-field { display: flex; flex-direction: column; gap: 7px; text-align: left; }
.am-field span { font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; color: var(--muted-dim); text-transform: uppercase; }
.am-field input {
  width: 100%; padding: 13px 15px;
  background: rgba(255,255,255,0.03); color: var(--text);
  border: 1px solid var(--line-strong); border-radius: 11px;
  font-family: var(--font-body); font-size: 15px;
  transition: border-color 0.3s, background 0.3s;
}
.am-field input:focus { outline: none; border-color: var(--accent-hot); background: rgba(194,86,47,0.06); }
.am-field.invalid input { border-color: #d2553a; background: rgba(210,85,58,0.08); }
.am-submit { margin-top: 8px; justify-content: center; width: 100%; }
.am-fine { margin-top: 4px; font-size: 12.5px; color: var(--muted-dim); text-align: center; }
.am-success { text-align: center; padding: 14px 0 6px; }
.am-check {
  width: 64px; height: 64px; margin: 0 auto 20px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent-hot);
  border: 1px solid rgba(194,86,47,0.4);
}
.am-success p { margin-top: 12px; color: var(--muted); line-height: 1.5; }
.am-success .am-name { color: var(--accent-hot); font-weight: 600; }
.am-done { margin-top: 24px; }
/* premium modal parity with /plans */
.am-mk { display: block; color: var(--accent-hot); margin-bottom: 12px; }
.am-mk svg { width: 32px; height: 32px; }
.am-field input::placeholder { color: var(--muted-dim); opacity: .55; }
.am-field input:focus { box-shadow: 0 0 0 3px var(--accent-soft); }
/* new version: compact, no visible scroll (kills the old scrolling popup) */
.am-dialog { padding: clamp(24px, 3vw, 32px); max-height: 94vh; scrollbar-width: none; }
.am-dialog::-webkit-scrollbar { display: none; }
.am-dialog h3 { font-size: clamp(1.3rem, 2.6vw, 1.55rem); margin-top: 8px; }
.am-sub { margin-top: 8px; font-size: .9rem; }
.am-form { margin-top: 16px; gap: 10px; }
.am-field { gap: 5px; }
.am-field span { font-size: 11px; }
.am-field input { padding: 11px 13px; font-size: 14px; }
.am-submit { margin-top: 6px; }
.am-fine { margin-top: 6px; }
@media (prefers-reduced-motion: reduce) {
  .audit-modal, .am-dialog { transition: none; }
}
