* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #1F2937;
  background: #F9FAFB;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  background: white;
  border-bottom: 1px solid #E5E7EB;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  color: #10B981;
}

.top-nav {
  display: flex;
  gap: 24px;
}

.top-nav a {
  color: #6B7280;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.top-nav a:hover {
  color: #10B981;
}

.hero-lp1 {
  padding: 80px 0;
  background: linear-gradient(135deg, #ECFDF5 0%, #ffffff 100%);
}

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

.hero-content-lp1 h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 20px;
}

.subhead {
  font-size: 18px;
  color: #4B5563;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-bullets {
  list-style: none;
  margin-bottom: 32px;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  color: #374151;
}

.hero-bullets svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.cta-primary {
  background: #10B981;
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.cta-primary:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

.cta-secondary {
  background: #3B82F6;
  color: white;
  border: none;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.cta-secondary:hover {
  background: #2563EB;
  transform: translateY(-2px);
}

.micro-copy {
  font-size: 13px;
  color: #6B7280;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.trust-item {
  font-size: 14px;
  color: #6B7280;
}

.hero-image-lp1 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-lp1 img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.how-works, .what-use, .why-now, .faq-section {
  padding: 64px 0;
}

.how-works h2, .what-use h2, .why-now h2, .faq-section h2 {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
  color: #111827;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.step-num {
  width: 48px;
  height: 48px;
  background: #10B981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
}

.step-card p {
  font-size: 15px;
  color: #6B7280;
  line-height: 1.6;
}

.what-use {
  background: white;
}

.section-desc {
  text-align: center;
  font-size: 18px;
  color: #4B5563;
  margin-bottom: 32px;
}

.use-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto 24px;
}

.use-list li {
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #E5E7EB;
}

.mini-note {
  text-align: center;
  font-size: 13px;
  color: #9CA3AF;
  font-style: italic;
  margin-top: 24px;
}

.why-now {
  background: #FEF3C7;
  text-align: center;
}

.why-text {
  font-size: 18px;
  color: #4B5563;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: white;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #F9FAFB;
}

.faq-icon {
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: #6B7280;
  line-height: 1.6;
}

.footer-lp {
  background: #111827;
  color: white;
  padding: 40px 0;
  text-align: center;
}

.footer-disclaimer {
  font-size: 13px;
  color: #9CA3AF;
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}

.footer-nav a {
  color: #9CA3AF;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: white;
}

.lp2-main {
  padding: 48px 0 80px;
  min-height: 80vh;
}

.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #E5E7EB;
  color: #9CA3AF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.progress-step.completed .step-circle {
  background: #10B981;
  color: white;
}

.progress-step.active .step-circle {
  background: #3B82F6;
  color: white;
}

.progress-step span {
  font-size: 14px;
  color: #6B7280;
  font-weight: 500;
}

.progress-line {
  width: 80px;
  height: 2px;
  background: #E5E7EB;
  margin: 0 16px;
}

.form-header-lp2 {
  text-align: center;
  margin-bottom: 48px;
}

.form-header-lp2 h1 {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 16px;
}

.subhead-lp2 {
  font-size: 18px;
  color: #6B7280;
  margin-bottom: 12px;
  line-height: 1.6;
}

.time-estimate {
  font-size: 14px;
  color: #10B981;
  font-weight: 600;
}

.form-lp2 {
  background: white;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-step.hidden {
  display: none;
}

.step-title {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

.req {
  color: #EF4444;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.error-message {
  display: none;
  color: #EF4444;
  font-size: 13px;
  margin-top: 4px;
}

.helper-text {
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 24px;
  font-style: italic;
}

.btn-continue,
.btn-submit {
  width: 100%;
  padding: 16px;
  background: #10B981;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 8px;
}

.btn-continue:hover,
.btn-submit:hover {
  background: #059669;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-submit:disabled {
  background: #9CA3AF;
  cursor: not-allowed;
  transform: none;
}

.verification-notice {
  background: #FEF3C7;
  border: 2px solid #F59E0B;
  border-radius: 8px;
  padding: 24px;
  margin: 32px 0;
}

.verification-notice h3 {
  font-size: 18px;
  font-weight: 700;
  color: #92400E;
  margin-bottom: 12px;
}

.verification-notice p {
  font-size: 15px;
  color: #78350F;
  margin-bottom: 8px;
  line-height: 1.6;
}

.consent-text {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.5;
  margin-bottom: 24px;
}

.reassurance {
  text-align: center;
  font-size: 13px;
  color: #6B7280;
  margin-top: 16px;
}

.card-input-wrapper {
  position: relative;
}

.card-input-wrapper input {
  padding-right: 60px;
}

.card-brand-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 32px 0;
  padding: 24px;
  background: #F0FDF4;
  border-radius: 8px;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #166534;
  font-weight: 600;
}

.hidden {
  display: none !important;
}

.success-message {
  text-align: center;
  padding: 48px 0;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #10B981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 32px;
}

.success-message h2 {
  font-size: 32px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 16px;
}

.success-message p {
  font-size: 18px;
  color: #6B7280;
  margin-bottom: 16px;
  line-height: 1.6;
}

.success-detail {
  font-size: 16px;
  color: #4B5563;
  margin-top: 24px;
}

.next-steps {
  background: #F9FAFB;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  padding: 32px;
  margin-top: 48px;
  text-align: left;
}

.next-steps h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.next-steps ul {
  list-style: none;
  padding-left: 0;
}

.next-steps li {
  font-size: 16px;
  color: #4B5563;
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  line-height: 1.6;
}

.next-steps li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10B981;
  font-weight: 700;
  font-size: 18px;
}

.security-banner {
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
  border: 2px solid #10B981;
  border-radius: 8px;
  padding: 12px 0;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}

.security-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #047857;
}

.accepted-cards {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding: 10px 0;
}

.accepted-cards-label {
  font-size: 13px;
  color: #6B7280;
  font-weight: 500;
}

.card-logos {
  display: flex;
  gap: 8px;
  align-items: center;
}

.card-logo {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  border: 1.5px solid;
  background: white;
}

.card-logo.visa {
  color: #1A1F71;
  border-color: #1A1F71;
}

.card-logo.mastercard {
  color: #EB001B;
  border-color: #EB001B;
}

.card-logo.amex {
  color: #006FCF;
  border-color: #006FCF;
}

.card-logo.discover {
  color: #FF6000;
  border-color: #FF6000;
}

.security-seals-section {
  background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
  border: 2px solid #10B981;
  border-radius: 12px;
  padding: 28px 24px;
  margin: 32px 0;
}

.security-seal-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.security-seal-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: #047857;
  margin: 0;
}

.security-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #BBF7D0;
}

.security-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #047857;
  font-weight: 600;
}

.trust-header-verification {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid #E5E7EB;
}

.trust-seal {
  background: #ECFDF5;
  padding: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.trust-header-text {
  flex: 1;
}

.trust-header-text .step-title {
  margin-bottom: 4px;
}

.trust-subtext {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.4;
}

.verification-notice-enhanced {
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  border: 2px solid #3B82F6;
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0 32px;
  display: flex;
  gap: 16px;
}

.notice-icon {
  flex-shrink: 0;
  background: white;
  padding: 8px;
  border-radius: 50%;
  height: fit-content;
}

.notice-content {
  flex: 1;
}

.notice-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1E3A8A;
  margin-bottom: 12px;
}

.notice-content p {
  font-size: 14px;
  color: #1E40AF;
  margin-bottom: 10px;
  line-height: 1.6;
}

.notice-content p:last-child {
  margin-bottom: 0;
}

.security-badges-enhanced {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
  padding: 24px;
  background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%);
  border-radius: 12px;
  border: 1px solid #BBF7D0;
}

.security-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-icon {
  background: white;
  padding: 10px;
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.badge-text strong {
  font-size: 13px;
  color: #166534;
  font-weight: 700;
}

.badge-text span {
  font-size: 11px;
  color: #15803D;
}

.consent-text-enhanced {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.6;
  margin-top: 32px;
  margin-bottom: 24px;
  padding: 16px;
  background: #F9FAFB;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
}

.consent-text-enhanced a {
  color: #3B82F6;
  text-decoration: underline;
}

.consent-text-enhanced a:hover {
  color: #2563EB;
}

.btn-submit-enhanced {
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-submit-enhanced:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-submit-enhanced:hover:before {
  left: 100%;
}

.btn-submit-enhanced:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

.btn-submit-enhanced:disabled {
  background: #9CA3AF;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-submit-enhanced:disabled:before {
  display: none;
}

.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.reassurance-enhanced {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px;
  background: #F0FDF4;
  border-radius: 8px;
  font-size: 13px;
  color: #166534;
  line-height: 1.5;
}

.trust-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #E5E7EB;
}

.trust-footer-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6B7280;
}

.trust-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, #ECFDF5 0%, #F0FDF4 100%);
  border-radius: 12px;
  border: 2px solid #BBF7D0;
}

.guarantee-badge {
  flex-shrink: 0;
  background: white;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.15);
}

.guarantee-content {
  flex: 1;
}

.guarantee-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #047857;
  margin-bottom: 8px;
}

.guarantee-content p {
  font-size: 14px;
  color: #065F46;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-lp1 .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content-lp1 h1 {
    font-size: 32px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-lp2 {
    padding: 32px 24px;
  }

  .top-nav {
    gap: 16px;
  }

  .trust-row {
    gap: 12px;
  }

  .progress-steps {
    flex-wrap: wrap;
    gap: 16px;
  }

  .progress-line {
    display: none;
  }

  .security-badges {
    flex-direction: column;
    gap: 16px;
  }

  .security-badges-enhanced {
    grid-template-columns: 1fr;
  }

  .trust-footer {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-header-verification {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .verification-notice-enhanced {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .notice-icon {
    margin-bottom: 8px;
  }

  .notice-content {
    width: 100%;
  }

  .security-features {
    grid-template-columns: 1fr;
  }

  .accepted-cards {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .card-logos {
    flex-wrap: wrap;
  }

  .trust-guarantee {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
