/* ============================================
   INDEX.HTML — PAGE-SPECIFIC STYLES
   Hero, Trust Bar, Services, Why Us, Process, Testimonials, Contact Form
   Requires: css/style.css (loaded first)
============================================ */

/* ── HERO ── */
.hero {
  background: #060F24;
  min-height: auto;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 88px 0 40px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #060F24 0%, #0A1A3E 30%, #0A47C2 65%, #1565C0 100%);
}
.hero-grid-pattern {
  position: absolute; inset: 0; opacity: 0.25; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.12) 0.5px, transparent 0.5px),
    linear-gradient(90deg, rgba(255,255,255,0.12) 0.5px, transparent 0.5px);
  background-size: 32px 32px;
}
.hero-aurora {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-aurora-1 {
  width: 500px; height: 500px; top: -200px; right: -150px;
  background: radial-gradient(circle, rgba(255,209,102,0.22) 0%, rgba(255,209,102,0) 65%);
  animation: auroraFloat1 13s ease-in-out infinite;
}
.hero-aurora-2 {
  width: 450px; height: 450px; bottom: -180px; left: -120px;
  background: radial-gradient(circle, rgba(127,119,221,0.3) 0%, rgba(127,119,221,0) 65%);
  animation: auroraFloat2 16s ease-in-out infinite;
}
.hero-aurora-3 {
  width: 350px; height: 350px; top: 20%; left: 40%;
  background: radial-gradient(circle, rgba(93,202,165,0.2) 0%, rgba(93,202,165,0) 65%);
  animation: auroraFloat3 9s ease-in-out infinite;
}
@keyframes auroraFloat1 { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(-30px, 30px) scale(1.1); } 66% { transform: translate(20px, -10px) scale(0.95); } }
@keyframes auroraFloat2 { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(30px, -20px) scale(1.05); } 66% { transform: translate(-15px, 25px) scale(0.92); } }
@keyframes auroraFloat3 { 0%,100% { transform: translate(0,0) scale(1); opacity: 0.6; } 50% { transform: translate(25px, 20px) scale(1.3); opacity: 1; } }
.hero-scanner { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: 0.5; }
.hero-scan-line { animation: scanMove 6s linear infinite; }
@keyframes scanMove { 0% { transform: translateY(0); } 100% { transform: translateY(430%); } }
.hero-sparks { position: absolute; inset: 0; pointer-events: none; }
.hero-spark {
  position: absolute; border-radius: 50%; background: #fff;
  box-shadow: 0 0 6px rgba(255,255,255,0.8);
  animation: sparkTwinkle 3s ease-in-out infinite;
}
@keyframes sparkTwinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.3); }
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
  min-height: 27px;
  backdrop-filter: blur(4px);
}
#heroBadgeText { display: inline-block; transition: opacity .4s ease, transform .4s ease; }
#heroBadgeText.fade-out { opacity: 0; transform: translateY(-4px); }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.2vw, 50px);
  font-weight: 800; line-height: 1.15;
  color: #fff; letter-spacing: -1px;
  margin-bottom: 18px;
}
.hero h1 em { color: #FFD166; font-style: normal; }
#typeCursor { color: #FFD166; font-weight: 400; }
.hero-sub {
  font-size: 16px; color: rgba(255,255,255,0.82);
  margin-bottom: 28px; max-width: 480px;
  line-height: 1.6;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-btns .btn-primary, .hero-btns .btn-outline { padding: 12px 26px; font-size: 14px; }
.hero-stats { display: flex; gap: 24px; margin-top: 32px; }
.hero-stat { flex-shrink: 0; }
.hero-stat strong { display: block; font-size: 26px; font-weight: 800; color: #FFD166; }
.hero-stat span { font-size: 13px; color: rgba(255,255,255,0.7); white-space: nowrap; }

.hero-visual { display: flex; flex-direction: column; gap: 12px; }
.hv-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  color: #fff; backdrop-filter: blur(4px);
}
.hv-card-label { font-size: 11px; color: rgba(255,255,255,0.6); margin-bottom: 5px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.hv-card-val { font-size: 24px; font-weight: 800; color: #FFD166; }
.hv-card-sub { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 3px; }
.hv-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.bar-wrap { margin-top: 10px; }
.bar-label { display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.7); margin-bottom: 5px; }
.bar-track { background: rgba(255,255,255,0.15); border-radius: 4px; height: 6px; overflow: hidden; position: relative; }
.bar-fill {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, #F0997B 0%, #FFD166 100%);
  width: 0%;
  transition: width 1.8s cubic-bezier(.16,.84,.44,1);
  position: relative;
  box-shadow: 0 0 12px rgba(255,209,102,0.6);
}
.bar-fill::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  width: 40px;
  animation: barShimmer 2.2s ease-in-out infinite;
  animation-delay: 1.8s;
}
@keyframes barShimmer {
  0% { transform: translateX(-40px); opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { transform: translateX(160px); opacity: 0; }
}

/* ── TRUST BAR ── */
.trust { background: var(--dark); padding: 28px 24px; }
.trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.trust-label { color: rgba(255,255,255,0.5); font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.trust-items { display: flex; gap: 48px; flex-wrap: wrap; align-items: center; }
.trust-item { color: rgba(255,255,255,0.75); font-size: 15px; font-weight: 600; }

/* ── SERVICES ── */
.services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--brand);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(10,71,194,0.1); border-color: #B9D0FF; }
.service-card:hover::before { transform: scaleY(1); }
.svc-icon {
  width: 56px; height: 56px;
  background: var(--brand-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px;
}
.svc-title { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.svc-desc { font-size: 15px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.svc-list { list-style: none; }
.svc-list li {
  font-size: 14px; color: var(--text);
  padding: 5px 0; display: flex; align-items: center; gap: 8px;
}
.svc-list li::before { content: '✓'; color: var(--brand); font-weight: 700; }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700; color: var(--brand);
  text-decoration: none; margin-top: 20px;
  transition: gap .2s;
}
.svc-link:hover { gap: 10px; }

/* ── WHY US ── */
.why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-features { display: flex; flex-direction: column; gap: 28px; }
.why-feat { display: flex; gap: 18px; align-items: flex-start; }
.why-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--brand-light); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.why-feat h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.why-feat p { font-size: 15px; color: var(--muted); line-height: 1.6; }
.why-img {
  background: linear-gradient(135deg, var(--brand-light) 0%, #D0E4FF 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex; flex-direction: column; gap: 20px;
}
.why-metric {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
}
.why-metric-num { font-size: 32px; font-weight: 800; color: var(--brand); }
.why-metric-txt p { font-size: 13px; color: var(--muted); }
.why-metric-txt strong { font-size: 15px; font-weight: 700; color: var(--dark); display: block; }

/* ── PROCESS ── */
.process { background: var(--dark); }
.process .section-title { color: #fff; }
.process .section-sub { color: rgba(255,255,255,0.7); }
.process .section-label { color: #FFD166; }
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px; background: rgba(255,255,255,0.08); border-radius: var(--radius-lg);
  overflow: hidden; margin-top: 56px;
}
.step { background: var(--dark); padding: 36px 28px; position: relative; }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px; font-weight: 800;
  color: rgba(255,255,255,0.06);
  position: absolute; top: 16px; right: 20px;
  line-height: 1;
}
.step-icon { font-size: 32px; margin-bottom: 16px; }
.step h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.step p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--bg); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.testi-stars { color: #F59E0B; font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
}
.testi-name { font-weight: 700; font-size: 15px; color: var(--dark); }
.testi-role { font-size: 13px; color: var(--muted); }

/* ── CTA / CONTACT FORM ── */
.cta-section {
  background: linear-gradient(135deg, #0A47C2 0%, #072E8A 100%);
  padding: 96px 24px; text-align: center;
}
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800; color: #fff;
  margin-bottom: 16px; letter-spacing: -0.5px;
}
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 40px; }
.cta-form {
  max-width: 560px; margin: 0 auto;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.cta-form input, .cta-form select, .cta-form textarea {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px; color: #fff;
  font-size: 15px; font-family: inherit;
  outline: none; transition: border-color .2s;
}
.cta-form input::placeholder, .cta-form textarea::placeholder { color: rgba(255,255,255,0.5); }
.cta-form input:focus, .cta-form select:focus, .cta-form textarea:focus { border-color: rgba(255,255,255,0.6); }
.cta-form select { color: rgba(255,255,255,0.7); }
.cta-form select option { background: #0A47C2; color: #fff; }
.cta-form textarea { resize: none; height: 90px; margin-bottom: 14px; }
.btn-cta-submit {
  width: 100%; padding: 15px;
  background: var(--accent); color: #fff;
  border: none; border-radius: 10px;
  font-size: 17px; font-weight: 700;
  cursor: pointer; font-family: inherit;
  transition: .2s; letter-spacing: 0.3px;
}
.btn-cta-submit:hover { background: #e8421f; transform: translateY(-1px); }

/* ── RESPONSIVE (page-specific) ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hv-row { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 16px 0; }
  .hero-inner { padding: 48px 20px; }
  .hero h1 { font-size: 28px; line-height: 1.25; min-height: auto; margin-bottom: 16px; letter-spacing: -0.5px; }
  .hero-badge { font-size: 12px; padding: 5px 12px; margin-bottom: 16px; }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }
  .hero-stats { gap: 18px; flex-wrap: wrap; margin-top: 32px; }
  .hero-stat strong { font-size: 22px; }
  .hero-stat span { font-size: 11px; }
  .hero-btns { gap: 10px; }
  .btn-primary, .btn-outline { padding: 12px 22px; font-size: 14px; }
  .hv-card { padding: 16px 18px; }
  .hv-card-val { font-size: 22px; }
  .hv-card-label { font-size: 11px; }
  .hv-card-sub { font-size: 12px; }
  .hero-visual { gap: 12px; }
  .hv-row { gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 400px) {
  .hero h1 { font-size: 24px; }
  .hero-badge { font-size: 11px; }
}

/* Font experiment block removed — all headings now use Playfair Display globally via style.css */
  