* { box-sizing: border-box; }

:root {
  --lp-pink: #E8436A;
  --lp-pink-light: #FF8FAB;
  --lp-pink-pale: #FFF0F3;
  --lp-navy: #1A1F36;
  --lp-navy-mid: #2D3557;
  --lp-gray-bg: #EDEEF2;
  --lp-gray-border: #C8CBD4;
  --lp-text-muted: #6B7280;
}

.lp-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
}

.lp-hero {
  background: linear-gradient(135deg, var(--lp-navy) 0%, var(--lp-navy-mid) 100%);
  padding: 40px 32px 36px;
}
.lp-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}
.lp-hero h1 {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.lp-hero h1 .lp-accent { color: var(--lp-pink-light); }
.lp-hero p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  line-height: 1.8;
}
.lp-btn-hero {
  display: inline-block;
  background: var(--lp-pink);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.lp-section {
  padding: 32px;
  background: #fff;
  border-top: 1px solid var(--lp-gray-border);
}
.lp-section.alt {
  background: var(--lp-gray-bg);
  border-top: 1px solid #B0B4C0;
}
.lp-section-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--lp-pink);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.lp-section h2 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.lp-trust-card {
  background: #fff;
  border: 0.5px solid var(--lp-gray-border);
  border-left: 4px solid var(--lp-pink);
  border-radius: 0 8px 8px 0;
  padding: 18px 20px;
}
.lp-trust-card p {
  font-size: 14px;
  color: var(--lp-text-muted);
  line-height: 1.8;
  margin: 0;
}

.lp-strength-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.lp-strength-card {
  background: #fff;
  border: 0.5px solid var(--lp-gray-border);
  border-radius: 10px;
  padding: 20px;
}
.lp-strength-tag {
  display: inline-block;
  background: var(--lp-pink-pale);
  color: var(--lp-pink);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.lp-strength-card h3 {
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 8px;
}
.lp-strength-card p {
  font-size: 13px;
  color: var(--lp-text-muted);
  line-height: 1.6;
  margin: 0;
}

.lp-work-card {
  background: #fff;
  border: 0.5px solid var(--lp-gray-border);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.lp-work-thumb {
  width: 88px;
  height: 66px;
  background: linear-gradient(135deg, var(--lp-navy), var(--lp-navy-mid));
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  text-align: center;
  line-height: 1.5;
  font-weight: 700;
}
.lp-work-info h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.lp-work-info p {
  font-size: 13px;
  color: var(--lp-text-muted);
  line-height: 1.6;
  margin: 0;
}

.lp-steps { display: flex; flex-direction: column; }
.lp-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 20px;
}
.lp-step:last-child { padding-bottom: 0; }
.lp-step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--lp-pink);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.lp-step-body h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.lp-step-body p {
  font-size: 13px;
  color: var(--lp-text-muted);
  line-height: 1.6;
  margin: 0;
}

.lp-cta {
  background: linear-gradient(135deg, var(--lp-navy) 0%, var(--lp-navy-mid) 100%);
  padding: 36px 32px;
  border-top: 4px solid var(--lp-pink);
}
.lp-cta h2 {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
.lp-cta > p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.lp-form-area {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 20px;
}
.lp-form-row { margin-bottom: 14px; }
.lp-form-row label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
  font-weight: 700;
}
.lp-form-row input,
.lp-form-row textarea {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  color: #fff;
  font-family: inherit;
  outline: none;
}
.lp-form-row input::placeholder,
.lp-form-row textarea::placeholder { color: rgba(255,255,255,0.3); }
.lp-form-row input:focus,
.lp-form-row textarea:focus { border-color: rgba(255,255,255,0.5); }
.lp-form-row textarea { height: 90px; resize: vertical; }

.lp-btn-submit {
  display: block;
  width: 100%;
  background: #FF4D75;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  padding: 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.05em;
  margin-top: 6px;
  font-family: inherit;
}
.lp-btn-submit:hover { background: #ff6b8a; }
.lp-btn-submit:disabled { background: #888; cursor: not-allowed; }

.lp-form-note {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 10px;
  margin-bottom: 0;
}
.lp-form-msg {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  display: none;
}
.lp-form-msg.success {
  background: rgba(16,185,129,0.2);
  color: #6EE7B7;
  border: 1px solid rgba(16,185,129,0.3);
}
.lp-form-msg.error {
  background: rgba(232,67,106,0.2);
  color: #FCA5A5;
  border: 1px solid rgba(232,67,106,0.3);
}

@media (max-width: 600px) {
  .lp-hero { padding: 28px 20px; }
  .lp-hero h1 { font-size: 22px; }
  .lp-section { padding: 24px 20px; }
  .lp-cta { padding: 28px 20px; }
  .lp-strength-grid { grid-template-columns: 1fr; }
  .lp-work-card { flex-direction: column; }
  .lp-work-thumb { width: 100%; height: 80px; }
}
