/* ============================================================
   HOME PAGE — css/home.css
   ============================================================ */

/* ── Hero ── */
.hero {
  padding: 80px 0 100px;
  background: linear-gradient(160deg, #f8f7f4 60%, var(--teal-light) 100%);
  position: relative; overflow: hidden;
}
.hero-blob {
  position: absolute; top: -120px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,122,122,.12) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-blob2 {
  position: absolute; bottom: -100px; left: -60px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(224,123,57,.1) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-eyebrow {
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal); display: flex; align-items: center; gap: 8px; margin-bottom: 22px;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--teal); }
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--teal); }
.hero-sub { font-size: 1.15rem; color: var(--ink-light); line-height: 1.75; margin-bottom: 40px; }
.hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-trust { margin-top: 48px; display: flex; align-items: center; gap: 16px; }
.trust-avatars { display: flex; }
.trust-avatars span {
  width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--white);
  background: var(--teal-light); display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; color: var(--teal); margin-left: -8px;
}
.trust-avatars span:first-child { margin-left: 0; }
.trust-text { font-size: .85rem; color: var(--ink-light); }
.trust-text strong { color: var(--ink); }

/* Hero mockup */
.hero-visual { position: relative; }
.mockup-card {
  background: var(--white); border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  overflow: hidden; border: 1px solid var(--border);
}
.mockup-bar {
  background: #f1f0ed; padding: 12px 16px;
  display: flex; align-items: center; gap: 6px;
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-body { padding: 24px; }
.mockup-line {
  height: 20px; background: linear-gradient(90deg, var(--teal-light) 60%, transparent);
  border-radius: 4px; margin-bottom: 10px;
}
.mockup-line.short { width: 70%; }
.mockup-line.xs { width: 45%; height: 14px; }
.mockup-btn-demo {
  display: inline-block; background: var(--teal); color: var(--white);
  font-size: .7rem; font-weight: 700; padding: 8px 18px; border-radius: 50px; margin-top: 10px;
}
.mockup-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.mockup-cards div:nth-child(odd) { background: var(--teal-light); border-radius: 8px; height: 60px; }
.mockup-cards div:nth-child(even) { background: var(--warm-light); border-radius: 8px; height: 60px; }

.floating-badge {
  position: absolute; background: var(--white); border-radius: 14px;
  padding: 14px 18px; box-shadow: 0 8px 32px rgba(0,0,0,.13);
  border: 1px solid var(--border); display: flex; align-items: center; gap: 10px;
}
.badge-icon { font-size: 1.4rem; }
.badge-sub { font-size: .75rem; color: var(--ink-light); }
.badge-main { font-size: .85rem; font-weight: 700; }
.badge-1 { top: -20px; right: -24px; }
.badge-2 { bottom: -16px; left: -24px; }

/* ── Outcomes ── */
.outcome-card {
  background: var(--white); border-radius: var(--r); padding: 36px 28px;
  border: 1px solid var(--border); text-align: center;
  transition: box-shadow .25s, transform .25s;
}
.outcome-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); transform: translateY(-3px); }
.outcome-card.featured { border-top: 3px solid var(--teal); }
.outcome-num { font-size: 2rem; font-weight: 800; color: var(--teal); font-family: 'Lora', serif; margin-bottom: 10px; }
.outcome-card h3 { margin-bottom: 10px; }

/* ── Services cards ── */
.section-white { background: var(--white); }
.service-card {
  background: var(--bg); border-radius: var(--r); padding: 40px;
  border: 1px solid var(--border); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.service-card.card-teal::before { background: linear-gradient(90deg, var(--teal), var(--teal-mid)); }
.service-card.card-warm::before { background: linear-gradient(90deg, var(--warm), var(--warm-mid)); }
.service-card h3 { margin-bottom: 12px; }
.service-card .p-body { margin-bottom: 20px; }

/* ── Case Study ── */
.case-study-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cs-visual {
  background: linear-gradient(135deg, var(--teal-light), #d0eded);
  border-radius: 20px; padding: 40px; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; border: 1px solid rgba(26,122,122,.2);
  position: relative; overflow: hidden;
}
.cs-location-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--white); border-radius: 10px; padding: 10px 16px;
  font-size: .8rem; font-weight: 700; box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.cs-tag {
  display: inline-block; background: var(--teal); color: var(--white);
  font-size: .75rem; font-weight: 700; padding: 5px 12px; border-radius: 6px; margin-bottom: 16px;
}
.case-study-grid h2 { margin-bottom: 16px; }
.case-study-grid .p-body { margin-bottom: 28px; }
.cs-step { display: flex; gap: 14px; margin-bottom: 20px; }
.cs-step-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--teal); margin-bottom: 4px; }
.cs-step-num {
  width: 32px; height: 32px; border-radius: 50%; background: var(--teal-light);
  color: var(--teal); font-weight: 700; font-size: .85rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}

/* ── About preview ── */
.about-preview { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: center; }
.avatar-wrap { position: relative; text-align: center; }
.avatar-circle {
  width: 280px; height: 280px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light), #c8e8e8);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; border: 4px solid var(--white);
  box-shadow: 0 12px 40px rgba(26,122,122,.2); margin: 0 auto;
  overflow: hidden;
}
.avatar-circle img { width: 100%; height: 100%; object-fit: cover; }
.avatar-badge {
  position: absolute; bottom: 10px; right: 10px;
  background: var(--warm); color: var(--white);
  border-radius: 50px; padding: 8px 18px; font-size: .8rem; font-weight: 700;
  border: 3px solid var(--white); box-shadow: 0 4px 14px rgba(224,123,57,.35);
}
.about-preview h2 { margin-bottom: 16px; }
.about-preview .p-lead { margin-bottom: 20px; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-inner, .case-study-grid, .about-preview { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
}
@media (max-width: 640px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
