/* =============================================================================
   PAGE — Home
   Loaded only on the home page template.
   ============================================================================= */

/* -----------------------------------------------------------------------------
   Hero
   ----------------------------------------------------------------------------- */
.hero {
  padding: 80px 64px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  height: 92dvh;
}

.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }

.hero h1 {
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.8px;
  color: var(--dark-text);
  margin-bottom: 22px;
}
.hero h1 em {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
  letter-spacing: -0.5px;
}

.hero-sub    { font-size: 16px; color: var(--mid); line-height: 1.75; max-width: 440px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 14px; align-items: center; margin-bottom: 48px; flex-wrap: wrap; }
.hero-trust  { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.trust-avatars { display: flex; }

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.avatar:first-child { margin-left: 0; }
.a1 { background: #2d6a4f; }
.a2 { background: #1d3557; }
.a3 { background: #6d597a; }
.a4 { background: #b5451b; }

.trust-text          { font-size: 13px; color: var(--mid); font-weight: 500; }
.trust-text strong   { color: var(--dark-text); font-weight: 700; }

/* Hero metric cards */
.hero-card-main {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
  margin-bottom: 16px;
}
.hcard-label   { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--mid); font-weight: 700; margin-bottom: 14px; }
.hcard-metric  { font-size: 52px; font-weight: 800; letter-spacing: -2px; color: var(--dark-text); line-height: 1; }
.hcard-metric span { color: var(--orange); }
.hcard-sub     { font-size: 13px; color: var(--mid); margin-top: 8px; }
.hcard-bar-wrap { margin-top: 20px; }
.hcard-bar-bg  { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.hcard-bar-fill { height: 100%; width: 78%; background: var(--orange); border-radius: 3px; }
.hcard-bar-label { display: flex; justify-content: space-between; margin-top: 8px; font-size: 12px; color: var(--mid); }

.hero-cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-card-sm {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}
.hcsm-icon  { font-size: 20px; margin-bottom: 10px; }
.hcsm-num   { font-size: 28px; font-weight: 800; letter-spacing: -1px; color: var(--dark-text); }
.hcsm-num span { color: var(--orange); }
.hcsm-label { font-size: 12px; color: var(--mid); margin-top: 4px; font-weight: 500; }

/* -----------------------------------------------------------------------------
   Clients Bar
   ----------------------------------------------------------------------------- */
.clients-bar {
  padding: 24px 64px;
  display: flex;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid var(--border);
  background: var(--off-white);
  overflow-x: auto;
}
.clients-label   { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--mid-strong); white-space: nowrap; }
.clients-divider { width: 1px; height: 24px; background: var(--border); flex-shrink: 0; }
.clients-logos   { display: flex; gap: 40px; align-items: center; }
.client-name {
  font-size: 15px;
  font-weight: 700;
  color: #c5bdb4;
  letter-spacing: -0.3px;
  transition: color 0.2s;
  cursor: default;
  white-space: nowrap;
}
.client-name:hover { color: var(--mid); }

/* -----------------------------------------------------------------------------
   Services Section (homepage preview)
   ----------------------------------------------------------------------------- */
.services {
  padding: 96px 64px;
  border-bottom: 1px solid var(--border);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.svc-card {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.2s;
  cursor: default;
}
.svc-card:last-child       { border-right: none; }
.svc-card:nth-child(n+4)   { border-top: 1px solid var(--border); }
.svc-card:hover            { background: var(--off-white); }
.svc-num  { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #d8d0c8; margin-bottom: 28px; }
.svc-card h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.3px; color: var(--dark-text); margin-bottom: 10px; }
.svc-card p  { font-size: 13px; color: var(--mid); line-height: 1.7; padding-bottom: 48px; }
.svc-arrow {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1.5px solid var(--orange);
  transition: all 0.2s ease;
}
.svc-arrow svg       { width: 14px; height: 14px; display: block; }
.svc-arrow svg path  { stroke: var(--orange); transition: stroke 0.2s ease; }
.svc-card:hover .svc-arrow           { background: var(--orange); }
.svc-card:hover .svc-arrow svg path  { stroke: #fff; }

/* -----------------------------------------------------------------------------
   Process Section
   ----------------------------------------------------------------------------- */
.process {
  padding: 96px 64px;
  background: var(--dark-text);
  border-bottom: 1px solid #222;
}
.process .section-title  { color: #fff; }
.process .section-desc   { color: #777; }
.process .eyebrow-text   { color: var(--orange); }
.process .eyebrow-line   { background: var(--orange); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #242424;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 56px;
}
.proc-step {
  padding: 36px 28px;
  border-right: 1px solid #242424;
  transition: background 0.2s;
}
.proc-step:last-child { border-right: none; }
.proc-step:hover      { background: rgba(255, 255, 255, 0.03); }
.proc-num { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 24px; }
.proc-step h3 { font-size: 16px; font-weight: 700; color: #fff; letter-spacing: -0.3px; margin-bottom: 10px; }
.proc-step p  { font-size: 13px; color: #777; line-height: 1.7; }
.proc-duration {
  display: inline-block;
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #2e2e2e;
  color: #555;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 4px;
}

/* -----------------------------------------------------------------------------
   Work Grid (homepage preview)
   ----------------------------------------------------------------------------- */
.work {
  padding: 96px 64px;
  border-bottom: 1px solid var(--border);
}
.work-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
}
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* -----------------------------------------------------------------------------
   Why Section
   ----------------------------------------------------------------------------- */
.why {
  padding: 96px 64px;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-list { margin-top: 36px; }
.why-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.why-item:first-child { border-top: 1px solid var(--border); }
.why-check {
  width: 26px;
  height: 26px;
  background: rgba(251, 91, 33, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item h4 { font-size: 15px; font-weight: 700; color: var(--dark-text); margin-bottom: 4px; }
.why-item p  { font-size: 13px; color: var(--mid); line-height: 1.65; }

.why-testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
  margin-bottom: 20px;
}
.quote-mark      { font-family: 'Lora', serif; font-size: 44px; color: var(--orange); line-height: 1; margin-bottom: 6px; }
.testimonial-text { font-size: 15px; line-height: 1.72; color: var(--dark-text); margin-bottom: 22px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 700; color: var(--dark-text); }
.author-role { font-size: 12px; color: var(--mid); margin-top: 2px; }

.why-stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
}
.why-stat-num       { font-size: 32px; font-weight: 800; letter-spacing: -1px; color: var(--dark-text); }
.why-stat-num span  { color: var(--orange); }
.why-stat-label     { font-size: 12px; color: var(--mid); margin-top: 4px; font-weight: 500; }
