/* award-redesign.css — Phase 1 of the "award-worthy" evolution pass:
 * Hero trust row, Process vertical timeline, Services card upgrade,
 * Testimonials polish. Kept in its own file (loaded last) so it layers
 * cleanly on top of the existing design without touching the original
 * rules — same convention as services.css/skills.css/contact.css.
 */

/* ---------- Hero: eyebrow clearance ----------
   The hero's decorative background glow arc crosses right where the
   eyebrow sits, making the text look struck-through. Push it down a bit
   so it clears the arc. Scoped to .hero-eyebrow (not .eyebrow generally)
   so every other section's eyebrow is untouched. */
.hero-eyebrow { margin-top: 28px; }
@media (max-width: 640px) { .hero-eyebrow { margin-top: 16px; } }

/* ---------- Hero: trust row ---------- */
.hero-trust-row {
  display: grid;
  grid-template-columns: max-content max-content;
  column-gap: 22px;
  row-gap: 10px;
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--color-gray-300);
}
.hero-stat-check {
  color: var(--color-accent);
  flex-shrink: 0;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-white);
}
.hero-stat-label {
  color: var(--color-gray-500);
}
@media (max-width: 640px) {
  .hero-trust-row { gap: 8px 16px; }
  .hero-stat { font-size: 12px; }
}

/* ---------- About: premium card layout ---------- */
.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: var(--space-8);
}
.about-card-intro { grid-column: 1 / -1; }
.about-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: border-color var(--dur-mid) var(--ease-out);
}
.about-card:hover { border-color: var(--color-border-strong); }
.about-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}
.about-card-intro .about-card-label { margin-bottom: 14px; }
.about-card-text { font-size: 14px; line-height: 1.7; color: var(--color-gray-400); margin: 0; }
.about-card .counters-grid { gap: var(--space-4); }
.about-card .counter-card { padding: var(--space-4); }
.about-card .counter-num { font-size: 30px; }

@media (max-width: 780px) {
  .about-cards-grid { grid-template-columns: 1fr; }
  .about-card-intro { grid-column: auto; }
}

/* ---------- Why Work With Me: horizontal cards ----------
   Replaces the numbered .timeline list — .timeline* rules in site.css
   are now unused, left in place (same convention as elsewhere). */
.whyme-cards { display: flex; flex-direction: column; gap: 14px; margin-top: var(--space-8); }
.whyme-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 26px;
  background: #131316;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  transition: border-color .35s var(--ease-out, ease), transform .35s var(--ease-out, ease), background .35s ease;
}
.whyme-card:hover { border-color: rgba(143, 218, 250, .35); background: #17181c; transform: translateX(6px); }
.whyme-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(143, 218, 250, .08);
  color: var(--color-accent);
  transition: background .35s ease, transform .35s var(--ease-out, ease);
}
.whyme-card:hover .whyme-icon { background: rgba(143, 218, 250, .16); transform: scale(1.08); }
.whyme-title { font-family: var(--font-display); font-weight: 800; font-size: 17px; color: #fff; margin-bottom: 4px; }
.whyme-desc { font-size: 13.5px; line-height: 1.55; color: var(--color-gray-500); }

@media (max-width: 620px) {
  .whyme-card { padding: 16px 18px; gap: 16px; }
  .whyme-icon { width: 44px; height: 44px; }
  .whyme-icon svg { width: 18px; height: 18px; }
  .whyme-title { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .whyme-card, .whyme-icon { transition: none; }
}

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin: var(--space-8) auto 0; max-width: 760px; }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-card-bg);
  overflow: hidden;
  transition: border-color var(--dur-mid) var(--ease-out);
}
.faq-item.is-open, .faq-item:hover { border-color: var(--color-border-strong); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  color: #fff;
  cursor: pointer;
}
.faq-chevron { flex-shrink: 0; color: var(--color-accent); transition: transform var(--dur-mid) var(--ease-out); }
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }
.faq-answer-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease-out); }
.faq-item.is-open .faq-answer-wrap { grid-template-rows: 1fr; }
.faq-answer { overflow: hidden; }
.faq-answer p { margin: 0; padding: 0 24px 20px; font-size: 14px; line-height: 1.65; color: var(--color-gray-400); }

@media (prefers-reduced-motion: reduce) {
  .faq-answer-wrap, .faq-chevron, .faq-item { transition: none; }
}

/* ---------- Logo motion-graphic (above Footer) ---------- */
.logo-video-section { display: flex; justify-content: center; padding-top: var(--space-8); padding-bottom: var(--space-8); }
.logo-video-frame {
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--color-border);
  cursor: pointer;
}
.logo-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.logo-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .35);
  color: #fff;
}
.logo-video-play svg { filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .5)); }

@media (max-width: 620px) {
  .logo-video-frame { max-width: 100%; }
}

/* ---------- Work: case-study "Results" block ----------
   Additive only — Challenge/Approach/Deliverables in the lightbox
   (css/site.css .case-*) are untouched. Styled as a quoted client
   outcome (it IS one — see js/data.js), not a plain paragraph. */
.case-results {
  margin: 6px 0 0;
  padding-left: 14px;
  border-left: 2px solid var(--color-accent);
  font-size: 14px;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

/* ---------- Process: vertical timeline ---------- */
.proc-timeline { position: relative; margin-top: var(--space-10); padding: var(--space-4) 0; }
.proc-line-track {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, .08);
  transform: translateX(-50%);
}
.proc-line-fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(var(--color-accent), var(--color-accent));
  transform-origin: top;
  transform: scaleY(0);
}
.proc-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: center;
  column-gap: 32px;
  margin-bottom: 52px;
}
.proc-step:last-child { margin-bottom: 0; }
.proc-step-left .proc-step-body { grid-column: 1; text-align: right; }
.proc-step-right .proc-step-body { grid-column: 3; text-align: left; }
.proc-step-icon {
  grid-column: 2;
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  background: #0c0c0d;
  border: 2px solid var(--color-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  transition: border-color var(--dur-mid) var(--ease-out), box-shadow var(--dur-mid) var(--ease-out), transform var(--dur-mid) var(--ease-out);
}
.proc-step:hover .proc-step-icon {
  border-color: var(--color-accent);
  box-shadow: 0 0 24px rgba(143, 218, 250, .35);
  transform: scale(1.08);
}
.proc-step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--color-accent);
  opacity: .8;
  margin-bottom: 6px;
}
.proc-step-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  color: #fff;
  margin-bottom: 8px;
}
.proc-step-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-gray-400);
  max-width: 340px;
}
.proc-step-left .proc-step-desc { margin-left: auto; }

@media (max-width: 780px) {
  .proc-timeline { margin-top: var(--space-8); }
  .proc-line-track { left: 27px; }
  .proc-step { grid-template-columns: 56px 1fr; column-gap: 20px; margin-bottom: 40px; }
  .proc-step-icon { grid-column: 1; width: 56px; height: 56px; }
  .proc-step-left .proc-step-body,
  .proc-step-right .proc-step-body { grid-column: 2; text-align: left; }
  .proc-step-left .proc-step-desc,
  .proc-step-desc { margin-left: 0; max-width: none; }
  .proc-step-title { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .proc-line-fill { transform: scaleY(1); }
}

/* ---------- Testimonials: premium touch ----------
   Purely additive (no JS/drag logic touched) — a large decorative quote
   glyph and a slightly stronger top-card border, to match the new
   Services/Process card language without risking the carefully-tuned
   drag mechanics in testimonials.css/Testimonials.jsx. */
.testi-card-top {
  border-color: rgba(143, 218, 250, .18);
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, .6), 0 0 0 1px rgba(143, 218, 250, .06);
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 6px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  color: var(--color-accent);
  opacity: .12;
  pointer-events: none;
}
