/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: #1a1a2e; background: #fff; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== Container ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }

/* ===== Button ===== */
.btn {
  display: inline-block;
  background: #FBBF24;
  color: #0e0438;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 30px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.12s;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { background: #f59e0b; transform: translateY(-2px); }

/* ===== Top Bar ===== */
.topbar {
  background: #0e0438;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.topbar__row { display: flex; align-items: center; justify-content: space-between; }
.logo { height: 44px; width: auto; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: stretch;
}
.hero__media { position: absolute; inset: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14,4,56,0.88) 0%, rgba(14,4,56,0.55) 55%, rgba(14,4,56,0.2) 100%);
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
  width: 100%;
}
.hero__copy { color: #fff; }
.hero__copy h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero__copy h1 span { color: #FBBF24; }
.hero__copy p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero__badges { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 28px; }
.hero__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.hero__badge-icon { font-size: 1.1rem; }
.hero__panel {
  background: rgba(255,255,255,0.97);
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

/* ===== Section ===== */
.section { padding: 80px 0; }
.section--alt { background: #f5f8ff; }
.stack { display: flex; flex-direction: column; gap: 10px; margin-bottom: 52px; }
.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2463EB;
}
.h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #0e0438;
  line-height: 1.2;
}
.sub {
  font-size: 1.05rem;
  color: #5b6275;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== Services Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border: 1px solid #e8edf5;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(36,99,235,0.13);
}
.service-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.8rem;
}
.service-card__title {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0e0438;
  margin-bottom: 8px;
}
.service-card__text {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.65;
}

/* ===== LSM Steps ===== */
.lsm-steps { background: #f0f4ff; padding: 80px 0; text-align: center; }
.lsm-steps-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: #0e0438;
  margin-bottom: 12px;
}
.lsm-steps-sub { font-size: 1.05rem; color: #5b6275; margin-bottom: 52px; }
.lsm-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lsm-step-link { text-decoration: none; display: block; }
.lsm-step-card {
  border-radius: 14px;
  padding: 40px 28px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  height: 100%;
}
.lsm-step-card:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(0,0,0,0.18); }
.lsm-step-icon-wrap { margin-bottom: 20px; display: flex; justify-content: center; }
.lsm-step-icon { width: 60px; height: 60px; object-fit: contain; }
.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 auto 20px;
}
.lsm-step-title { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.lsm-step-text { font-size: 0.95rem; line-height: 1.65; opacity: 0.92; }

/* ===== Step Details ===== */
.step-detail { }
.step-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 30px 40px;
}
.step1 { background: #2463EB; color: #fff; }
.step2 { background: #FBBF24; color: #0e0438; }
.step3 { background: #10B981; color: #fff; }
.step-banner-inner { display: flex; flex-direction: column; gap: 2px; }
.step-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
}
.step-banner h2 { font-family: 'Syne', sans-serif; font-size: 1.7rem; font-weight: 800; }
.detail-icon { width: 52px; height: 52px; object-fit: contain; flex-shrink: 0; font-size: 2rem; }
.step-content { padding: 44px 20px; max-width: 800px; }
.step-content p { font-size: 1rem; color: #374151; line-height: 1.75; margin-bottom: 20px; }
.step-content details {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}
.step-content summary {
  padding: 15px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  color: #1a1a2e;
}
.step-content summary::-webkit-details-marker { display: none; }
.step-content summary::after { content: '+'; font-size: 1.3rem; color: #2463EB; font-weight: 700; }
.step-content details[open] summary::after { content: '−'; }
.step-content details[open] summary { background: #f5f8ff; }
.step-content details p { padding: 4px 20px 16px; margin: 0; color: #6b7280; font-size: 0.95rem; background: #fff; }

/* ===== Trust Strip ===== */
.trust-strip { background: #0e0438; padding: 44px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.trust-icon { font-size: 2rem; }
.trust-label { font-size: 0.9rem; color: rgba(255,255,255,0.8); font-weight: 500; line-height: 1.4; }
.trust-value { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; color: #FBBF24; }

/* ===== Before/After ===== */
.before-after { padding: 80px 20px; text-align: center; background: #f9fbff; }

/* ===== Reviews ===== */
.reviews { background: #0e0438; padding: 80px 0; }
.reviews-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 52px;
}
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 30px;
  color: #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stars { font-size: 1.25rem; color: #FBBF24; letter-spacing: 2px; }
.review-card p { font-size: 0.95rem; line-height: 1.75; font-style: italic; flex: 1; }
.review-card strong { color: #fff; font-weight: 600; }
.review-card span { font-size: 0.82rem; color: #9ca3af; }

/* ===== CTA ===== */
.cta { background: #2463EB; }
.cta__wrap { text-align: center; padding: 80px 20px; }
.cta__wrap h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.cta__wrap > p:not(.disclaimer) {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.disclaimer {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.45);
  max-width: 820px;
  margin: 32px auto 0;
  line-height: 1.65;
}

/* ===== Footer ===== */
.footer { background: #070118; padding: 32px 0; }
.footer .columns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer p { font-size: 0.83rem; color: #9ca3af; }
.footer a { color: #9ca3af; transition: color 0.2s; }
.footer a:hover { color: #fff; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { text-align: center; }
  .hero__copy p { margin: 0 auto 24px; }
  .hero__badges { justify-content: center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .lsm-steps-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer .columns { flex-direction: column; text-align: center; }
  .step-banner { padding: 24px 20px; flex-wrap: wrap; }
  .hero__panel { padding: 22px 16px; }
  .section { padding: 60px 0; }
}
