/* ════════════════════════════════════════════════
   HOME PAGE — ALL SECTIONS
   ════════════════════════════════════════════════ */

/* ── 1. HERO ── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 68px 5vw 0; overflow: hidden;
  background: linear-gradient(135deg, #060e22 0%, #0d1b3e 50%, #170f2e 100%);
}
.hero-lines { position: absolute; inset: 0; opacity: 0.07; pointer-events: none; }
.hero-accent {
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, transparent, var(--red) 30%, var(--red) 70%, transparent);
}
.hero-glow {
  position: absolute; top: 40%; right: 8%; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(214,48,24,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 780px; padding-top: 2rem; padding-bottom: 10rem; }
.hero-eyebrow {
  font-family: var(--font-condensed); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--red);
  display: flex; align-items: center; gap: 12px; margin-bottom: 1.4rem;
  opacity: 0; animation: fadeUp 0.6s 0.1s forwards;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--red); }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem); line-height: 0.95; letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.7s 0.25s forwards;
}
.hero-headline em { color: var(--red); font-style: normal; }
.hero-sub {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem); font-weight: 300; line-height: 1.75;
  color: rgba(248,249,252,0.68); max-width: 520px; margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.6s 0.4s forwards;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.6s 0.55s forwards; }
.stats-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: rgba(255,255,255,0.04); border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-around; flex-wrap: wrap; padding: 1.3rem 5vw;
  opacity: 0; animation: fadeUp 0.6s 0.7s forwards;
}
.stat-item { text-align: center; padding: 0.25rem 0.8rem; }
.stat-num { font-family: var(--font-display); font-size: clamp(1.6rem, 2.5vw, 2rem); color: var(--white); line-height: 1; }
.stat-num span { color: var(--red); }
.stat-lbl { font-family: var(--font-condensed); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey-text); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }


/* ── 2. TRUSTED BY ── */
.trusted-bar {
  background: #060d1d;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1.6rem 5vw;
  display: flex; align-items: center; gap: 2.5rem; overflow-x: auto;
}
.trusted-bar::-webkit-scrollbar { display: none; }
.trusted-label {
  font-family: var(--font-condensed); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--grey-text);
  white-space: nowrap; flex-shrink: 0;
}
.trusted-names { display: flex; align-items: center; gap: 2rem; }
.trusted-name {
  font-family: var(--font-condensed); font-size: 1rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(248,249,252,0.18); white-space: nowrap; transition: color 0.25s;
}
.trusted-name:hover { color: rgba(248,249,252,0.45); }
.trusted-divider { width: 1px; height: 18px; background: rgba(255,255,255,0.08); flex-shrink: 0; }


/* ── 3. SERVICES PREVIEW ── */
.services-section { background: var(--grey-light); padding: 6rem 5vw 4rem; }
.section-header { margin-bottom: 3.5rem; }
.section-header-inner { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.svc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(0,0,0,0.07); margin-bottom: 3rem;
}
.svc-card {
  background: var(--white); padding: 2.8rem 2.2rem;
  position: relative; overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.svc-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--red);
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(13,27,62,0.12); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-ico { display: block; margin-bottom: 1.4rem; color: var(--navy-light); }
.svc-ico svg.lucide { width: 2.4rem; height: 2.4rem; }
.svc-title { font-family: var(--font-condensed); font-size: 1.15rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.7rem; }
.svc-desc { font-size: 0.88rem; font-weight: 300; color: #4a536b; line-height: 1.75; }


/* ── 4. WHY US ── */
.why-section {
  background: #0a1229; padding: 7rem 5vw;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: center;
  position: relative; overflow: hidden;
}
.why-section::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, transparent, var(--red) 20%, var(--red) 80%, transparent);
}
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.05); }
.why-stat {
  background: #0a1229; padding: 2.8rem 2rem;
  display: flex; flex-direction: column; gap: 0.4rem;
  transition: background 0.3s;
}
.why-stat:hover { background: rgba(214,48,24,0.06); }
.why-stat-num { font-family: var(--font-display); font-size: clamp(2.5rem, 4vw, 4.5rem); color: var(--red); line-height: 1; }
.why-stat-lbl { font-family: var(--font-condensed); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--grey-text); }
.why-content .section-title { margin-bottom: 1rem; }
.why-content .section-title em { color: var(--red); font-style: normal; }
.why-intro { font-size: 0.95rem; font-weight: 300; color: rgba(248,249,252,0.65); line-height: 1.8; margin-bottom: 2.5rem; max-width: 460px; }
.why-features { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.why-feature {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.2rem;
  border-left: 2px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}
.why-feature:hover { border-left-color: var(--red); background: rgba(255,255,255,0.03); }
.why-feature-ico { color: var(--red); flex-shrink: 0; margin-top: 0.1rem; }
.why-feature-ico svg.lucide { width: 1rem; height: 1rem; }
.why-feature-title { font-family: var(--font-condensed); font-size: 0.95rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); margin-bottom: 0.2rem; }
.why-feature-desc { font-size: 0.85rem; font-weight: 300; color: rgba(248,249,252,0.6); line-height: 1.6; }


/* ── 5. PROCESS PREVIEW ── */
.process-section {
  background: var(--navy-mid); padding: 7rem 5vw;
  position: relative; overflow: hidden;
}
.process-section::after {
  content: 'PROCESS';
  position: absolute; right: -1rem; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-size: 12rem; color: rgba(255,255,255,0.02);
  pointer-events: none; white-space: nowrap; line-height: 1;
}
.process-header { text-align: center; margin-bottom: 5rem; }
.process-header .section-label { justify-content: center; }
.process-steps { display: grid; grid-template-columns: 1fr 60px 1fr 60px 1fr; align-items: start; margin-bottom: 4rem; }
.process-step { text-align: center; padding: 0 1rem; }
.process-num-wrap { position: relative; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.process-num {
  width: 72px; height: 72px;
  background: var(--red); color: var(--white);
  font-family: var(--font-display); font-size: 1.8rem; letter-spacing: 0.05em;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px rgba(214,48,24,0.15);
  transition: box-shadow 0.3s;
}
.process-step:hover .process-num { box-shadow: 0 0 0 10px rgba(214,48,24,0.2); }
.process-connector { display: flex; align-items: flex-start; padding-top: 35px; color: rgba(255,255,255,0.15); }
.process-connector svg { width: 100%; height: 2px; stroke: rgba(255,255,255,0.12); stroke-dasharray: 6 4; }
.process-title { font-family: var(--font-condensed); font-size: 1.1rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); margin-bottom: 0.6rem; }
.process-desc { font-size: 0.88rem; font-weight: 300; color: rgba(248,249,252,0.6); line-height: 1.7; }
.process-footer { text-align: center; }


/* ── 6. INDUSTRIES PREVIEW ── */
.industries-section { background: var(--grey-light); padding: 7rem 5vw; }
.industries-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(0,0,0,0.07); margin: 3.5rem 0;
}
.ind-card {
  background: var(--white); padding: 2.5rem 2.2rem;
  display: flex; gap: 1.4rem; align-items: flex-start;
  border-left: 3px solid transparent;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.ind-card:hover { border-left-color: var(--red); transform: translateX(4px); box-shadow: 4px 0 24px rgba(214,48,24,0.08); }
.ind-ico-wrap {
  width: 44px; height: 44px; background: rgba(13,27,62,0.06);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.25s; color: var(--navy-light);
}
.ind-ico-wrap svg.lucide { width: 1.3rem; height: 1.3rem; }
.ind-card:hover .ind-ico-wrap { background: rgba(214,48,24,0.08); color: var(--red); }
.ind-name { font-family: var(--font-condensed); font-size: 1rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.35rem; }
.ind-desc { font-size: 0.85rem; font-weight: 300; color: #4a536b; line-height: 1.65; }
.industries-footer { display: flex; justify-content: flex-end; }


/* ── 7. TESTIMONIALS ── */
.testi-section {
  background: #080f23; padding: 7rem 5vw;
  position: relative; overflow: hidden;
}
.testi-section::before {
  content: '\201C';
  position: absolute; left: 3vw; top: 3rem;
  font-family: var(--font-display); font-size: 20rem; line-height: 1;
  color: rgba(214,48,24,0.06); pointer-events: none; user-select: none;
}
.testi-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; position: relative; z-index: 1; }
.testi-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 2.8rem; display: flex; flex-direction: column; gap: 2rem;
  transition: background 0.3s, border-color 0.3s;
}
.testi-card:hover { background: rgba(255,255,255,0.05); border-color: rgba(214,48,24,0.25); }
.testi-stars { color: var(--red); font-size: 0.9rem; letter-spacing: 0.1em; }
.testi-quote { font-size: 1rem; font-weight: 300; color: rgba(248,249,252,0.82); line-height: 1.85; font-style: italic; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 1.2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.07); }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-condensed); font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.testi-name { font-family: var(--font-condensed); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--white); }
.testi-role { font-size: 0.8rem; color: var(--grey-text); margin-top: 0.15rem; }
.testi-footer { margin-top: 3rem; display: flex; justify-content: center; }


/* ── 8. CTA BANNER ── */
.cta-banner {
  background: var(--red); padding: 6rem 5vw;
  position: relative; overflow: hidden; text-align: center;
}
.cta-banner-lines { position: absolute; inset: 0; opacity: 0.06; pointer-events: none; }
.cta-banner-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-label { color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.cta-banner-label::before { background: rgba(255,255,255,0.4); }
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 5rem); line-height: 0.95; letter-spacing: 0.02em;
  color: var(--white); margin-bottom: 1.2rem; position: relative; z-index: 1;
}
.cta-banner p {
  font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.78);
  max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.75; position: relative; z-index: 1;
}
.cta-banner-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-white {
  font-family: var(--font-condensed); font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.9rem 2.2rem;
  background: var(--white); color: var(--red); text-decoration: none;
  display: inline-block; transition: background 0.2s, transform 0.2s;
}
.btn-white:hover { background: var(--grey-light); transform: translateY(-2px); }
.btn-outline-white {
  font-family: var(--font-condensed); font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.9rem 2.2rem;
  background: transparent; color: var(--white); text-decoration: none;
  display: inline-block; border: 1.5px solid rgba(255,255,255,0.55);
  transition: border-color 0.2s, transform 0.2s;
}
.btn-outline-white:hover { border-color: var(--white); transform: translateY(-2px); }


/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .why-section { grid-template-columns: 1fr; gap: 4rem; }
  .why-section::before { display: none; }
  .why-stats { max-width: 480px; }
}
@media (max-width: 900px) {
  .process-steps { grid-template-columns: 1fr; gap: 2rem; }
  .process-connector { display: none; }
  .process-step { text-align: left; display: flex; gap: 1.5rem; align-items: flex-start; }
  .process-num-wrap { margin-bottom: 0; flex-shrink: 0; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-layout { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  #hero { min-height: auto; padding-bottom: 12rem; }
  .hero-content { padding-bottom: 6rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .trusted-bar { gap: 1.5rem; padding: 1.2rem 5vw; }
  .trusted-label { display: none; }
  .stats-bar { position: relative; justify-content: flex-start; gap: 0; }
  .stat-item { flex: 1 1 33%; }
}
@media (max-width: 420px) {
  .stat-item { flex: 1 1 50%; }
}
