/* Home-page + shared section styles. */

/* Shared grid + step helpers */
.grid { display: grid; gap: 22px; }
.grid--180 { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.grid--238 { grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); }
.grid--260 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.grid--280 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--300 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.steps { display: flex; flex-direction: column; gap: 18px; }
.step { display: flex; gap: 16px; }
.step__num { font-family: var(--mono); color: var(--accent); font-size: 14px; flex: none; padding-top: 2px; }
.step__title { font-weight: 600; margin-bottom: 4px; }
.step__text { font-size: 15px; color: var(--text-mute); }

.mini-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 30px 26px; }
.mini-card h3 { font-family: var(--serif); font-weight: 600; font-size: 20px; margin-bottom: 10px; }
.mini-card p { font-size: 15.5px; color: var(--text-mute); text-wrap: pretty; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; min-height: clamp(560px, 70vh, 800px); display: flex; align-items: center; padding: clamp(60px, 8vw, 100px) 0; }
.hero__bg { position: absolute; inset: 0; background-image: url(/assets/images/hero-team.png); background-size: cover; background-position: right 15% top 20%; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(108deg, rgba(20,6,10,0.97) 0%, rgba(20,6,10,0.91) 36%, rgba(20,6,10,0.52) 62%, rgba(20,6,10,0.1) 100%); }
.hero__grid { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(184,144,76,0.08) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none; }
.hero__inner { position: relative; z-index: 1; }
.hero__content { max-width: 660px; }
.hero__eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 20px; }
.hero__title { font-family: var(--serif); font-weight: 600; font-size: clamp(36px, 5.4vw, 64px); line-height: 1.04; letter-spacing: -0.018em; margin-bottom: 18px; color: #fff; text-shadow: 0 0 80px rgba(184,144,76,0.1); text-wrap: balance; }
.hero__accent { height: 1px; background: linear-gradient(to right, var(--gold), transparent); width: 0; margin-bottom: 22px; transition: width 0.9s ease; }
.hero__tags { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.hero__tag { font-family: var(--display); font-size: 11px; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; }
.hero__dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); flex: none; }
.hero__lead { font-size: clamp(17px, 1.5vw, 19px); color: rgba(255,255,255,0.88); max-width: 520px; margin-bottom: 34px; text-wrap: pretty; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__fine { font-size: 13.5px; color: rgba(255,255,255,0.6); margin-top: 18px; max-width: 460px; }
.hero__title span { display: inline-block; }

/* ---------- Trust bar ---------- */
.trust { background: var(--maroon); border-top: 1px solid rgba(184,144,76,0.2); border-bottom: 1px solid rgba(184,144,76,0.2); }
.trust__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.trust__cell { padding: 28px 22px; border-right: 1px solid rgba(184,144,76,0.12); }
.trust__cell:last-child { border-right: 0; }
.trust__num { font-family: var(--serif); font-weight: 700; font-size: 32px; letter-spacing: -0.01em; color: #fff; }
.trust__unit { font-size: 20px; color: var(--gold); }
.trust__unit--sm { font-size: 18px; }
.trust__label { font-size: 13px; color: var(--cream-dim); margin-top: 5px; }

/* ---------- Options / comparison table ---------- */
.compare { overflow-x: auto; border: 1px solid var(--border-2); border-radius: var(--r); background: #fff; box-shadow: 0 2px 20px rgba(28,8,16,0.08); }
.compare table { width: 100%; border-collapse: collapse; min-width: 640px; font-size: 15px; }
.compare thead tr { background: var(--maroon); }
.compare th { padding: 18px 14px; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; font-weight: 500; border-bottom: 1px solid rgba(184,144,76,0.25); }
.compare th:first-child { text-align: left; padding: 18px 20px; letter-spacing: 0.08em; }
.compare td { border-bottom: 1px solid #E8D8D8; text-align: center; }
.compare td:first-child { padding: 18px 20px; text-align: left; }
.compare tr:last-child td { border-bottom: 0; }
.compare__row--hi { background: rgba(184,144,76,0.1); }
.compare__row--hi td { padding-top: 20px; padding-bottom: 20px; }
.opt-name { font-weight: 600; color: var(--ink); }
.opt-name--brand { font-family: var(--serif); font-weight: 700; font-size: 18px; }
.opt-sub { font-size: 13px; color: #7a7060; margin-top: 3px; }
.opt-sub--gold { color: var(--amber); font-weight: 600; }
.mark { font-size: 20px; font-weight: 700; }
.mark--yes { color: var(--green); }
.mark--no { color: var(--red); }
.mark--big { font-size: 22px; }
.mark--partial { font-size: 13px; color: var(--amber); font-family: var(--mono); font-weight: 600; }

/* ---------- How it works ---------- */
.how__icon { width: 80px; height: 80px; object-fit: contain; margin-bottom: 16px; opacity: 0.9; }
.how__title { font-family: var(--serif); font-weight: 600; font-size: 22px; margin-bottom: 10px; color: #fff; }
.how__text { font-size: 16px; color: var(--cream-dim); text-wrap: pretty; }

/* ---------- Proof ---------- */
.quote { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 30px 28px; display: flex; flex-direction: column; transition: box-shadow 0.2s ease; }
.quote:hover { box-shadow: 0 4px 24px rgba(28,8,16,0.08); }
.quote__stars { color: var(--accent); font-size: 15px; letter-spacing: 2px; margin-bottom: 16px; }
.quote__text { font-family: var(--serif); font-size: 18px; line-height: 1.5; color: #2a2620; flex: 1; }
.quote__cite { margin-top: 20px; font-size: 13.5px; color: #8a8475; }
.quote__cite strong { font-weight: 600; color: var(--ink); }
.logos { border: 1px dashed #D3BFBF; border-radius: var(--r); padding: 26px; display: flex; flex-direction: column; gap: 18px; }
.logos__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 14px; }
.logo-ph { height: 46px; border-radius: 7px; background: repeating-linear-gradient(135deg, #EFE5E5, #EFE5E5 9px, #F2EDE5 9px, #F2EDE5 18px); display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 10.5px; color: #b4ac9b; }

/* ---------- Case study ---------- */
.case { background: var(--red); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-wrap: wrap; border: 1px solid rgba(184,144,76,0.2); }
.case__body { flex: 1 1 380px; min-width: 300px; padding: clamp(36px, 4vw, 56px); color: #fff; }
.case__eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 20px; }
.case__title { font-family: var(--serif); font-weight: 600; font-size: clamp(26px, 3vw, 40px); line-height: 1.14; letter-spacing: -0.01em; margin-bottom: 18px; text-wrap: balance; }
.case__text { font-size: 17px; color: rgba(255,255,255,0.82); max-width: 480px; margin-bottom: 14px; text-wrap: pretty; }
.case__media { flex: 1 1 300px; min-width: 260px; overflow: hidden; min-height: 280px; }
.case__media img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.case__stats { display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 22px; }
.case__stat-num { font-family: var(--serif); font-weight: 700; font-size: 30px; }
.case__stat-label { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ---------- Final CTA band ---------- */
.cta-band { background: var(--maroon); background-image: radial-gradient(circle, rgba(184,144,76,0.055) 1px, transparent 1px); background-size: 28px 28px; border-top: 1px solid rgba(184,144,76,0.15); }
.cta-band__inner { text-align: center; color: #fff; }
.cta-band__title { font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 3.8vw, 46px); line-height: 1.1; letter-spacing: -0.012em; margin-bottom: 20px; text-wrap: balance; }
.cta-band__text { font-size: 18px; color: var(--cream-dim); max-width: 560px; margin: 0 auto 34px; text-wrap: pretty; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
