/* =====================
   HERO
===================== */
.hero { position: relative; overflow: hidden; }
.lp-hero { padding: 88px 0 108px; }

.lp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.lp-hero-copy { display: grid; gap: 0; }
.lp-hero-copy .eyebrow { margin-bottom: 20px; }

.lp-hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  margin: 0 0 22px;
}

.lp-hero-copy .lead {
  font-size: 1.04rem;
  max-width: 540px;
  color: var(--text-soft);
  line-height: 1.75;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 32px;
}

.btn-hero {
  min-height: 56px;
  padding: 16px 30px;
  font-size: 1rem;
  font-weight: 800;
}

.lp-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(212, 255, 102, 0.14);
  border: 1px solid rgba(180, 240, 0, 0.28);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-deep);
  letter-spacing: 0.01em;
}

/* =====================
   HERO VISUAL
===================== */
.lp-hero-visual { position: relative; }

.hero-img-stack {
  position: relative;
  display: block;
  padding-bottom: 40px;
  padding-left: 40px;
}

.hero-img {
  border-radius: 24px;
  object-fit: cover;
  display: block;
}

.hero-img-main {
  width: 100%;
  height: 480px;
  object-position: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.hero-img-side {
  position: absolute;
  width: 48%;
  height: 200px;
  bottom: 0;
  left: 0;
  border: 4px solid var(--bg);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.hero-float-card {
  position: absolute;
  top: 28px;
  right: -20px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-md);
  border-radius: 18px;
  padding: 14px 20px;
  z-index: 3;
  min-width: 190px;
}

.hfc-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.hfc-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

/* =====================
   SECTION LAYOUTS
===================== */
.lp-section { padding: 100px 0; }

.lp-section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.lp-section-head .eyebrow { margin-bottom: 14px; }

.lp-section-head h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  letter-spacing: -0.045em;
  margin: 0;
  line-height: 1.1;
}

/* Dark section */
.lp-dark {
  background: #101414;
  position: relative;
  overflow: hidden;
}

.lp-dark::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 255, 102, 0.07) 0%, transparent 68%);
  top: -280px;
  right: -200px;
  pointer-events: none;
}

.lp-section-head-light h2 { color: #fff; }

.lp-section-head-light .eyebrow {
  background: rgba(212, 255, 102, 0.14);
  color: var(--accent);
}

/* =====================
   SERVICES GRID
===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-md);
  transition: transform 260ms cubic-bezier(.2,.8,.2,1), box-shadow 260ms cubic-bezier(.2,.8,.2,1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card-accent {
  background: linear-gradient(175deg, rgba(212, 255, 102, 0.14), rgba(255, 255, 255, 0.97));
  border-color: rgba(180, 240, 0, 0.28);
}

.service-img-wrap {
  overflow: hidden;
  height: 230px;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(.2,.8,.2,1);
}

.service-card:hover .service-img-wrap img { transform: scale(1.04); }

.service-body { padding: 26px 28px 30px; }

.service-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.service-body h3 {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  line-height: 1.2;
}

.service-body p {
  color: var(--text-soft);
  line-height: 1.72;
  margin: 0 0 20px;
  font-size: 0.93rem;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--accent-deep);
  text-decoration: none;
  transition: color 200ms ease, gap 200ms ease;
}

.service-cta:hover { color: var(--text); gap: 8px; }

/* =====================
   WHY GRID (dark)
===================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  padding: 28px 24px;
  transition: background 240ms ease, border-color 240ms ease;
}

.why-card:hover {
  background: rgba(212, 255, 102, 0.07);
  border-color: rgba(212, 255, 102, 0.18);
}

.why-card h4 {
  font-size: 1.04rem;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 14px 0 9px;
  line-height: 1.3;
}

.why-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.72;
  margin: 0;
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(212, 255, 102, 0.12);
  border: 1px solid rgba(212, 255, 102, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

/* =====================
   PROCESS STEPS
===================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.process-steps::after {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 22px);
  right: calc(12.5% + 22px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent-strong) 0%, rgba(180, 240, 0, 0.15) 100%);
  pointer-events: none;
}

.process-step {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 26px 22px;
  position: relative;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.process-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.process-num {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
  color: #111;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(180, 240, 0, 0.28);
  position: relative;
  z-index: 1;
}

.process-step h4 {
  font-size: 1.05rem;
  letter-spacing: -0.025em;
  margin: 0 0 9px;
  line-height: 1.3;
}

.process-step p {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.72;
  margin: 0;
}

/* =====================
   CTA BAND
===================== */
.lp-cta-band {
  padding: 90px 0;
  background: linear-gradient(180deg, rgba(212, 255, 102, 0.09) 0%, rgba(180, 240, 0, 0.04) 100%);
  border-top: 1px solid rgba(180, 240, 0, 0.18);
  border-bottom: 1px solid rgba(180, 240, 0, 0.1);
}

.lp-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.lp-cta-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.045em;
  margin: 0 0 10px;
  line-height: 1.1;
}

.lp-cta-inner p {
  color: var(--text-soft);
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.6;
}

/* =====================
   FOOTER
===================== */
.lp-footer {
  padding: 32px 0;
  border-top: 1px solid var(--stroke);
  background: var(--bg-soft);
}

.lp-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.lp-footer-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.lp-footer-links a {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-soft);
  transition: color 180ms ease;
}

.lp-footer-links a:hover { color: var(--text); }

.lp-footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
  width: 100%;
  text-align: center;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--stroke);
}

/* =====================
   UTILITY
===================== */
.btn-sm { min-height: 40px; padding: 9px 16px; font-size: 0.85rem; }

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .lp-hero-inner { grid-template-columns: 1fr; gap: 0; }
  .lp-hero-visual { display: none; }
  .lp-hero { padding: 64px 0 80px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::after { display: none; }
  .lp-cta-inner { flex-direction: column; text-align: center; align-items: center; }
  .lp-section { padding: 72px 0; }
  .lp-cta-band { padding: 64px 0; }
}

@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .lp-footer-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .lp-section-head { margin-bottom: 36px; }
}
