/* ============================================================
   Homepage-specific styles
   ============================================================ */

/* ---- HERO ---- */
.hero { padding-top: clamp(56px, 9vw, 110px); padding-bottom: clamp(64px, 9vw, 120px); overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-copy .h-display { margin-top: 22px; }
.hero-copy .lead { margin-top: 22px; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 40px; }
.hero-trust p { font-size: 14.5px; color: #94A3B8; }
.hero-trust strong { color: #fff; }
.avatars { display: flex; }
.avatars span { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--ink); margin-left: -10px; background: var(--grad); }
.avatars span:first-child { margin-left: 0; }
.avatars span:nth-child(2) { background: linear-gradient(120deg,#06B6D4,#22D3EE); }
.avatars span:nth-child(3) { background: linear-gradient(120deg,#3B82F6,#2563EB); }
.avatars span:nth-child(4) { background: linear-gradient(120deg,#0EA5E9,#06B6D4); }

/* Hero visual card */
.hero-visual { position: relative; }
.glass {
  background: linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-xl);
  backdrop-filter: blur(8px); box-shadow: var(--sh-lg); overflow: hidden;
}
.hc-head { display: flex; align-items: center; gap: 7px; padding: 15px 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
.hc-head .dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.2); }
.hc-head .dot:first-child { background: #FF5F57; } .hc-head .dot:nth-child(2){ background:#FEBC2E;} .hc-head .dot:nth-child(3){ background:#28C840;}
.hc-title { font-family: var(--font-mono); font-size: 12px; color: #94A3B8; margin-left: 8px; }
.hc-body { padding: 22px; display: grid; gap: 16px; }
.hc-stat { display: flex; align-items: baseline; gap: 10px; }
.hc-stat .hc-label { font-size: 13px; color: #94A3B8; flex: 1; }
.hc-stat strong { font-family: var(--font-display); font-size: 1.5rem; color: #fff; }
.hc-stat em { font-style: normal; font-size: 12px; font-weight: 600; color: #34D399; background: rgba(52,211,153,.12); padding: 3px 8px; border-radius: var(--r-pill); }
.hc-bars { display: flex; align-items: flex-end; gap: 8px; height: 92px; padding: 8px 0; }
.hc-bars i { flex: 1; height: var(--h); border-radius: 5px 5px 0 0; background: var(--grad); opacity: .85; }
.hc-row { display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: #CBD5E1; padding-top: 4px; border-top: 1px solid rgba(255,255,255,.07); }
.hc-row .badge { font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: var(--r-pill); }
.badge.ok { background: rgba(52,211,153,.15); color: #6EE7B7; }
.badge.run { background: rgba(6,182,212,.15); color: #67E8F9; }
.hero-float { position: absolute; background: #fff; color: var(--ink); font-size: 13px; font-weight: 600; padding: 11px 16px; border-radius: var(--r-md); box-shadow: var(--sh-lg); }
.hero-float strong { color: var(--blue); }
.hero-float.f1 { top: 18px; right: -14px; animation: floaty 5s ease-in-out infinite; }
.hero-float.f2 { bottom: 26px; left: -22px; animation: floaty 6s ease-in-out infinite .6s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (prefers-reduced-motion: reduce) { .hero-float { animation: none; } }

/* ---- STRIP ---- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); padding-block: 34px; }
.strip-label { text-align: center; font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 22px; }
.strip-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 22px; }
.strip-logos span:not(.sep) { font-family: var(--font-display); font-weight: 600; font-size: clamp(15px, 2vw, 20px); color: #94A3B8; letter-spacing: -.01em; }
.strip-logos .sep { width: 5px; height: 5px; border-radius: 50%; background: var(--line); }
@media (max-width: 640px){ .strip-logos .sep { display: none; } }

/* ---- SERVICES GRID ---- */
.services-grid { grid-template-columns: repeat(3, 1fr); }
.service-card { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.service-card .h3 { margin-top: 2px; }
.service-card p { color: var(--muted); font-size: 15.5px; flex: 1; }
.service-card .link-arrow { margin-top: 2px; }
.service-card .icon-chip { transition: transform .3s cubic-bezier(.2,.7,.3,1); }
.service-card:hover .icon-chip { transform: rotate(-6deg) scale(1.06); }
.service-card--wide { grid-column: span 2; flex-direction: row; align-items: center; gap: 24px; }
.service-card--wide .sc-wide-body { flex: 1; }
.service-card--wide p { margin-top: 8px; }
@media (max-width: 900px){ .services-grid { grid-template-columns: repeat(2,1fr); } .service-card--wide { grid-column: span 2; } }
@media (max-width: 600px){ .services-grid { grid-template-columns: 1fr; } .service-card--wide { grid-column: span 1; flex-direction: column; align-items: flex-start; } }

/* ---- WHY + STATS ---- */
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.why-copy .h2 { margin-top: 20px; } .why-copy .lead { margin-top: 18px; }
.why-list { list-style: none; margin: 36px 0 0; padding: 0; display: grid; gap: 22px; }
.why-list li { display: flex; gap: 16px; }
.why-list .tick { width: 38px; height: 38px; border-radius: 11px; background: rgba(6,182,212,.14); color: var(--cyan); display: grid; place-items: center; flex: none; }
.why-list .tick svg { width: 20px; height: 20px; }
.why-list strong { color: #fff; font-family: var(--font-display); font-size: 1.08rem; display: block; margin-bottom: 3px; }
.why-list p { font-size: 15px; color: #94A3B8; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat-card { background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-lg); padding: 30px 26px; }
.stat-num { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); color: #fff; display: block; line-height: 1; letter-spacing: -.03em; }
.stat-card span { font-size: 14px; color: #94A3B8; margin-top: 10px; display: block; }
@media (max-width: 880px){ .why-inner { grid-template-columns: 1fr; } }

/* ---- PROCESS ---- */
.process-grid { grid-template-columns: repeat(4,1fr); }
.process-step { position: relative; padding: 30px 26px; border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; transition: box-shadow .28s, transform .28s; }
.process-step:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.process-step .step-no { font-family: var(--font-mono); font-size: 14px; color: var(--blue); font-weight: 500; }
.process-step .h3 { margin: 16px 0 8px; }
.process-step p { font-size: 14.5px; color: var(--muted); }
@media (max-width: 880px){ .process-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px){ .process-grid { grid-template-columns: 1fr; } }

/* ---- WORK ---- */
.surface-section { background: var(--surface); }
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.work-grid { grid-template-columns: repeat(3,1fr); }
.work-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform .28s cubic-bezier(.2,.7,.3,1), box-shadow .28s; }
.work-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.work-thumb { min-height: 200px; border: none; border-radius: 0; }
.work-meta { padding: 24px; display: grid; gap: 12px; }
.work-meta .h3 { font-size: 1.18rem; }
.work-meta p { font-size: 14.5px; color: var(--muted); }
@media (max-width: 880px){ .work-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* ---- TESTIMONIALS ---- */
.quote-card { display: flex; flex-direction: column; gap: 16px; }
.quote-card .stars { color: #FBBF24; letter-spacing: 3px; font-size: 15px; }
.quote-card blockquote { margin: 0; font-size: 16.5px; line-height: 1.6; color: var(--ink-2); font-weight: 500; flex: 1; }
.quote-card figcaption { display: flex; align-items: center; gap: 13px; }
.quote-card .qa { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-soft); border: 1px solid var(--line); flex: none; }
.quote-card strong { display: block; font-size: 15px; color: var(--ink); }
.quote-card small { color: var(--muted); font-size: 13.5px; }
@media (max-width: 880px){ .quote-card { } .g-3 { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

/* ---- CTA BAND ---- */
.cta-band { position: relative; background: var(--ink); border-radius: var(--r-xl); padding: clamp(40px, 6vw, 72px); overflow: hidden; text-align: center; }
.cta-band .cta-content { position: relative; z-index: 1; max-width: 640px; margin-inline: auto; }
.cta-band .eyebrow { color: var(--cyan); justify-content: center; }
.cta-band .h1 { color: #fff; margin: 18px 0; }
.cta-band .lead { color: #94A3B8; }
.cta-band .hero-actions { justify-content: center; margin-top: 32px; }
.cta-glow { position: absolute; inset: 0; background: radial-gradient(circle at 50% 120%, rgba(37,99,235,.55), transparent 60%), radial-gradient(circle at 15% -10%, rgba(6,182,212,.4), transparent 50%); }

/* General two-up responsive */
@media (max-width: 880px){ .hero-inner { grid-template-columns: 1fr; } .hero-visual { max-width: 460px; } .why-stats { grid-template-columns: 1fr 1fr; } }
