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

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(140deg, #0c1930 0%, #1B2B5E 55%, #253470 100%);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-bg::before {
  content: ''; position: absolute; top: -100px; right: -60px;
  width: 580px; height: 580px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,.13) 0%, transparent 70%);
}
.hero-bg::after {
  content: ''; position: absolute; bottom: -90px; left: -50px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(230,51,41,.09) 0%, transparent 70%);
}
.hero-slash {
  position: absolute; top: 0; right: 0; width: 44%; height: 100%;
  background: rgba(245,166,35,.03);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.hero-inner {
  flex: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 56px; align-items: center;
  padding-top: 130px; padding-bottom: 90px;
  position: relative; z-index: 2;
}

/* pill badge */
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,.13); border: 1px solid rgba(245,166,35,.3);
  padding: 7px 18px; border-radius: 100px;
  font-family: 'Barlow Condensed', sans-serif; font-size: .77rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: #FFD580;
  margin-bottom: 24px;
  animation: fadeUp .7s ease both;
}
.dot {
  display: inline-block; width: 7px; height: 7px;
  border-radius: 50%; background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

/* headline */
.hero-h1 {
  font-size: clamp(3rem, 5.6vw, 5.8rem); font-weight: 900; color: #fff;
  line-height: .96; margin-bottom: 8px;
  animation: fadeUp .7s .1s ease both;
}
.hero-h1 em { color: var(--gold); font-style: italic; display: block; }

.hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.5rem); font-weight: 600;
  color: rgba(255,255,255,.42); letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 22px;
  animation: fadeUp .7s .18s ease both;
}

.hero-desc {
  font-size: 1.04rem; line-height: 1.75; color: rgba(255,255,255,.6);
  font-weight: 300; max-width: 460px; margin-bottom: 40px;
  animation: fadeUp .7s .26s ease both;
}

.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px;
  animation: fadeUp .7s .34s ease both;
}

/* stats row */
.hero-stats {
  display: flex; align-items: center; gap: 28px;
  animation: fadeUp .7s .42s ease both;
}
.hstat-n { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 900; color: var(--gold); display: block; line-height: 1; }
.hstat-l { font-size: .76rem; color: rgba(255,255,255,.44); display: block; margin-top: 3px; }
.hstat-div { width: 1px; height: 38px; background: rgba(255,255,255,.13); }

/* image mosaic */
.hero-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 260px 180px;
  gap: 12px;
  position: relative;
  animation: fadeUp .7s .2s ease both;
}
.mos { border-radius: 14px; overflow: hidden; position: relative; }
.mos img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s; }
.mos:hover img { transform: scale(1.06); }
.mos.mos-tl { grid-row: span 1; }
.mos.mos-tr { grid-row: span 1; }
.mos.mos-bot { grid-column: span 2; }
.mos-tag {
  position: absolute; bottom: 10px; left: 12px;
  font-family: 'Barlow Condensed', sans-serif; font-size: .7rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--gold); color: var(--navy-dk);
  padding: 5px 12px; border-radius: 100px; z-index: 2;
}
/* overlay on all mos */
.img-overlay::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(16,29,63,.55) 0%, transparent 50%);
  pointer-events: none;
}

/* floating badge */
.float-badge {
  position: absolute; bottom: -16px; left: -16px;
  background: var(--white);
  border-radius: 14px; padding: 14px 20px;
  box-shadow: var(--sh-lg);
  display: flex; flex-direction: column; align-items: center;
  animation: float 4s ease-in-out infinite;
  z-index: 10;
}
.fb-big  { font-family:'Barlow Condensed',sans-serif; font-size:2rem; font-weight:900; color:var(--gold); line-height:1; }
.fb-small { font-size:.72rem; color:var(--tmid); font-weight:600; text-transform:uppercase; letter-spacing:.06em; margin-top:2px; }

/* ── WHY STRIP ── */
.why-strip { padding: 52px 0; }
.why-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
}
.why-item { text-align: center; padding: 26px 28px; border-right: 1px solid rgba(255,255,255,.07); }
.why-item:last-child { border-right: none; }
.why-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.why-item h4 {
  font-family:'Barlow Condensed',sans-serif; font-size:1rem; font-weight:800;
  color:var(--gold-lt); text-transform:uppercase; letter-spacing:.04em; margin-bottom:7px;
}
.why-item p { font-size:.82rem; color:rgba(255,255,255,.44); line-height:1.65; font-weight:300; }

/* ── SECTION HEADER ── */
.pad-section { padding: 96px 0; }
.sec-head { text-align: center; max-width: 620px; margin: 0 auto 60px; }
.sec-head h2 { font-size:clamp(2.2rem,4.5vw,3.5rem); font-weight:900; color:var(--navy); margin-bottom:14px; }
.sec-head p  { font-size:1rem; color:var(--tmid); font-weight:300; line-height:1.75; }

/* ── SERVICES PREVIEW GRID ── */
.svc-preview-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 22px;
  margin-bottom: 48px;
}
.svc-preview-card {
  background: var(--white); border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--border); transition: all .35s;
}
.svc-preview-card:hover { transform: translateY(-7px); box-shadow: var(--sh-md); border-color: transparent; }
.spc-img { height: 210px; overflow: hidden; position: relative; }
.spc-img img { width:100%; height:100%; object-fit:cover; transition:transform .55s; }
.svc-preview-card:hover .spc-img img { transform:scale(1.07); }
.spc-img-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(27,43,94,.48) 0%,transparent 50%); pointer-events:none; }
.spc-body { padding:24px 26px 28px; }
.spc-body h3 { font-size:1.1rem; font-weight:800; color:var(--navy); text-transform:uppercase; letter-spacing:.03em; margin-bottom:8px; }
.spc-body p  { font-size:.87rem; line-height:1.7; color:var(--tmid); font-weight:300; margin-bottom:14px; }
.spc-link {
  font-family:'Barlow Condensed',sans-serif; font-size:.86rem; font-weight:800;
  letter-spacing:.07em; text-transform:uppercase;
  color:var(--navy); text-decoration:none;
  border-bottom:2px solid var(--gold); padding-bottom:2px; transition:color .2s;
}
.spc-link:hover { color:var(--gold-dk); }
.center-btn { text-align:center; }

/* ── ABOUT SPLIT ── */
.split-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }

.split-imgs { position:relative; }
.split-img-main { border-radius:var(--r-lg); overflow:hidden; height:460px; }
.split-img-main img { width:100%; height:100%; object-fit:cover; }
.split-img-sm {
  position:absolute; bottom:-24px; right:-24px;
  width:200px; height:148px; border-radius:var(--r-md); overflow:hidden;
  border:5px solid var(--white); box-shadow:var(--sh-lg);
}
.split-img-sm img { width:100%; height:100%; object-fit:cover; }
.photo-caption {
  position:absolute; bottom:14px; left:16px; z-index:2;
  background:var(--gold); color:var(--navy-dk);
  font-family:'Barlow Condensed',sans-serif; font-size:.72rem; font-weight:800;
  letter-spacing:.1em; text-transform:uppercase;
  padding:6px 14px; border-radius:100px;
}
.split-img-main.img-overlay::after { border-radius:var(--r-lg); }

.split-trusted-badge {
  position:absolute; top:24px; left:24px; z-index:10;
  width:100px; height:100px; border-radius:50%;
  background:var(--gold); color:var(--navy-dk);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  box-shadow:0 8px 24px rgba(245,166,35,.4);
  animation:float 4s ease-in-out infinite;
}
.stb-pct  { font-family:'Barlow Condensed',sans-serif; font-size:1.7rem; font-weight:900; line-height:1; }
.stb-word { font-family:'Barlow Condensed',sans-serif; font-size:.64rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; }

.split-copy h2 { font-size:clamp(2rem,4vw,3.2rem); font-weight:900; color:var(--navy); margin-bottom:18px; }
.split-copy p  { font-size:.98rem; line-height:1.8; color:var(--tmid); font-weight:300; margin-bottom:14px; }

.split-stats { display:flex; align-items:center; gap:22px; margin:28px 0 32px; }
.ss-n { font-family:'Barlow Condensed',sans-serif; font-size:2.2rem; font-weight:900; color:var(--navy); display:block; line-height:1; }
.ss-l { font-size:.76rem; color:var(--tmuted); display:block; margin-top:2px; }
.ss-div { width:1px; height:38px; background:var(--border); }

/* ── REVIEWS GRID ── */
.reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }

/* ── CTA BAND ── */
.cta-band { padding:72px 0; }
.cta-inner { display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap; }
.cta-copy h2 { font-size:clamp(1.9rem,3.5vw,3rem); font-weight:900; color:#fff; margin-bottom:10px; }
.cta-copy p  { font-size:1rem; color:rgba(255,255,255,.68); font-weight:300; line-height:1.7; max-width:500px; }
.cta-btns { display:flex; gap:12px; flex-wrap:wrap; flex-shrink:0; }

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .hero-inner { grid-template-columns:1fr; }
  .hero-mosaic { grid-template-columns:1fr 1fr 1fr 1fr; grid-template-rows:200px; }
  .mos.mos-bot { grid-column:span 4; grid-row:2; height:160px; }
  .float-badge { display:none; }
  .split-grid { grid-template-columns:1fr; gap:50px; }
  .split-img-sm { display:none; }
}
@media(max-width:900px) {
  .hero-inner { padding-top:110px; padding-bottom:70px; }
  .svc-preview-grid { grid-template-columns:1fr; }
  .why-grid { grid-template-columns:1fr 1fr; }
  .why-item { border-right:none; border-bottom:1px solid rgba(255,255,255,.07); }
  .reviews-grid { grid-template-columns:1fr; max-width:520px; margin:0 auto; }
  .cta-inner { flex-direction:column; text-align:center; }
}
@media(max-width:600px) {
  .hero-h1 { font-size:2.6rem; }
  .hero-btns { flex-direction:column; }
  .hero-stats { gap:18px; }
  .hero-mosaic { display:none; }
  .why-grid { grid-template-columns:1fr; }
  .split-img-main { height:280px; }
}
