/* ============================================
   HOME PAGE
   ============================================ */

/* === Hero === */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + var(--sp-9)) 0 var(--sp-9);
  overflow: hidden;
}
.hero .blob-1 { width:480px; height:480px; background:radial-gradient(circle, #ff8c42, transparent 65%); top:-100px; left:-150px; }
.hero .blob-2 { width:560px; height:560px; background:radial-gradient(circle, #4a90e2, transparent 65%); top:30%; right:-200px; animation-delay:-6s; }
.hero .blob-3 { width:420px; height:420px; background:radial-gradient(circle, #ff6b35, transparent 65%); bottom:-100px; left:40%; animation-delay:-3s; }

.hero-inner {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 1080px;
}
.hero-title {
  font-size: clamp(44px, 8vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: var(--sp-6) 0 var(--sp-5);
}
.hero-stagger { display: block; }
.hero-sub {
  max-width: 680px;
  margin: 0 auto;
  font-size: var(--fs-md);
  color: var(--text-muted);
}
.hero-cta {
  display: inline-flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--sp-6);
}

.hero-trust {
  margin-top: var(--sp-8);
  text-align: center;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  margin-top: var(--sp-3);
  opacity: 0.55;
}
.trust-row span {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.2em;
  font-size: var(--fs-sm);
  color: var(--cream-100);
}

.scroll-cue {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-cue span {
  width: 24px; height: 40px;
  border: 2px solid var(--cream-100);
  border-radius: var(--r-pill);
  position: relative;
}
.scroll-cue span::before {
  content: '';
  position: absolute;
  width: 4px; height: 8px;
  background: var(--orange-500);
  border-radius: 2px;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  animation: float 1.6s var(--ease-in-out) infinite;
}

/* === Stats === */
.stats-section {
  padding: var(--sp-8) 0;
  background: linear-gradient(180deg, transparent, rgba(30,58,95,.2), transparent);
  border-top: 1px solid rgba(245,230,211,.06);
  border-bottom: 1px solid rgba(245,230,211,.06);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* === Services === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }
@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

/* === Featured projects === */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 900px) { .featured-grid { grid-template-columns: 1fr; } }
@media (max-width: 1100px) { .featured-grid { grid-template-columns: repeat(2, 1fr); } }

.featured-card {
  position: relative;
  height: 360px;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(245, 230, 211, 0.08);
  transition: all var(--t-med) var(--ease-out);
}
.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: var(--orange-500);
}
.ph-gradient {
  position: absolute;
  inset: 0;
}
.ph-1 { background: linear-gradient(135deg, #1e3a5f 0%, #ff8c42 70%, #ff6b35 100%); }
.ph-2 { background: linear-gradient(135deg, #0f2942 0%, #4a90e2 60%, #6ba6e8 100%); }
.ph-3 { background: linear-gradient(135deg, #f5e6d3 0%, #ff8c42 60%, #ff6b35 100%); }

.featured-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-5);
  background: linear-gradient(0deg, rgba(10, 25, 41, 0.95) 0%, transparent 100%);
  color: var(--cream-100);
}
.featured-info h3 {
  font-size: var(--fs-lg);
  margin: var(--sp-2) 0 4px;
}
.featured-info p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

/* === Testimonials === */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
@media (max-width: 1100px) { .testi-grid { grid-template-columns: 1fr; } }

.testi-card {
  background: var(--gradient-card);
  border: 1px solid rgba(245, 230, 211, 0.08);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  position: relative;
  transition: all var(--t-med);
}
.testi-card:hover { border-color: var(--orange-500); transform: translateY(-3px); }
.testi-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 18px;
  font-size: 100px;
  color: var(--orange-500);
  opacity: 0.35;
  font-family: Georgia, serif;
  line-height: 1;
}
.testi-stars { color: var(--orange-500); margin-bottom: var(--sp-3); letter-spacing: 2px; }
.testi-card p { color: var(--cream-200); margin-bottom: var(--sp-5); }
.testi-author { display: flex; align-items: center; gap: var(--sp-3); }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #0a1929;
}
.testi-author strong { display: block; color: var(--cream-100); }
.testi-author span { font-size: var(--fs-xs); color: var(--text-muted); }

/* === CTA Final === */
.cta-final-section {
  padding-bottom: var(--sp-9);
}
.cta-final {
  position: relative;
  text-align: center;
  padding: var(--sp-9) var(--sp-5);
  border-radius: var(--r-xl);
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255,140,66,0.25), transparent 60%),
    linear-gradient(160deg, #0f2942 0%, #1e3a5f 100%);
  border: 1px solid rgba(255, 140, 66, 0.25);
  overflow: hidden;
}
.cta-final h2 { font-size: clamp(36px, 6vw, 64px); margin-bottom: var(--sp-4); }
.cta-final p { color: var(--text-muted); font-size: var(--fs-md); max-width: 540px; margin: 0 auto var(--sp-6); }
.cta-final-row { display: flex; justify-content: center; flex-wrap: wrap; gap: var(--sp-3); }
