/* ============================================
   LENDLOCK — PREMIUM LANDING PAGE STYLES
   ============================================ */

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

:root {
  --green-dark: #043820;
  --green-primary: #054d2a;
  --green-light: #0a6b3c;
  --gold: #ffd700;
  --gold-bright: #ffea00;
  --gold-dark: #ccaa00;
  --white: #ffffff;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-80: rgba(255, 255, 255, 0.8);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-15: rgba(255, 255, 255, 0.15);
  --white-10: rgba(255, 255, 255, 0.1);
  --black-30: rgba(0, 0, 0, 0.3);
  --black-50: rgba(0, 0, 0, 0.5);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 50%, var(--green-light) 100%);
  background-attachment: fixed;
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  background: var(--black-30);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 4rem 2.5rem;
  border-radius: 32px;
  max-width: 640px;
  width: 100%;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  text-align: center;
  margin-bottom: 4rem;
}

.badge {
  display: inline-block;
  background: var(--white-15);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--white-10);
}

.brand {
  font-size: 5rem;
  font-weight: 900;
  color: var(--gold);
  margin: 0;
  line-height: 0.9;
  letter-spacing: -4px;
  text-shadow: 0 2px 20px rgba(255, 215, 0, 0.3);
}

.byline {
  font-size: 1.3rem;
  color: var(--white-80);
  margin: 0.75rem 0 2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--white);
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--white-80);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */

.problem-section {
  background: var(--white-10);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  margin-bottom: 4rem;
  border: 1px solid var(--white-10);
}

.problem-intro {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.pain-points {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.pain-point {
  background: var(--black-30);
  padding: 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid var(--white-10);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.pain-point:hover {
  transform: translateX(4px);
  border-color: var(--white-15);
}

.pain-emoji {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.pain-point p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--white-90);
}

.problem-truth {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--white-90);
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid var(--white-10);
}

.problem-truth strong {
  color: var(--white);
  font-weight: 600;
}

.problem-truth em {
  font-style: italic;
  color: var(--gold);
}

/* ============================================
   SOLUTION SECTION
   ============================================ */

.solution-section {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
  letter-spacing: -0.5px;
}

.solution-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--white-80);
  max-width: 540px;
  margin: 0 auto;
}

.solution-intro strong {
  color: var(--gold);
  font-weight: 600;
}

/* ============================================
   FEATURES
   ============================================ */

.features {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.feature {
  background: var(--white-10);
  padding: 1.75rem;
  border-radius: 16px;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  border: 1px solid var(--white-10);
  transition: all 0.3s ease;
}

.feature:hover {
  background: var(--white-15);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.feature-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--white-80);
  margin: 0;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-section {
  margin-bottom: 4rem;
}

.how-section .section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.steps {
  display: grid;
  gap: 1rem;
}

.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.step-content h5 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.step-content p {
  font-size: 0.9rem;
  color: var(--white-70);
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   SOCIAL PROOF
   ============================================ */

.social-proof {
  text-align: center;
  margin-bottom: 4rem;
  padding: 2rem;
  background: var(--white-10);
  border-radius: 16px;
  border: 1px solid var(--white-10);
}

.proof-label {
  font-size: 0.9rem;
  color: var(--white-70);
  margin-bottom: 1rem;
  font-weight: 500;
}

.quotes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.quote {
  display: inline-block;
  background: var(--black-30);
  padding: 0.65rem 1.25rem;
  border-radius: 100px;
  font-size: 0.9rem;
  color: var(--white-80);
  font-style: italic;
  border: 1px solid var(--white-10);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: linear-gradient(135deg, var(--white-15) 0%, var(--white-10) 100%);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  margin-bottom: 2.5rem;
  border: 1px solid var(--white-15);
  text-align: center;
}

.cta-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
  letter-spacing: -0.5px;
}

.cta-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--white-80);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-subtitle strong {
  color: var(--gold);
  font-weight: 600;
}

/* ============================================
   FORM
   ============================================ */

form {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--white-15);
  border-radius: 12px;
  font-size: 1rem;
  background: var(--white);
  color: var(--green-dark);
  transition: all 0.2s ease;
  font-family: inherit;
}

input::placeholder {
  color: rgba(4, 56, 32, 0.5);
}

input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

.cta-button {
  width: 100%;
  padding: 1.25rem 2rem;
  background: var(--gold);
  color: var(--green-dark);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
  font-family: inherit;
}

.cta-button:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 215, 0, 0.4);
}

.cta-button:active {
  transform: translateY(0);
}

.cta-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.button-arrow {
  font-size: 1.3rem;
  transition: transform 0.2s ease;
}

.cta-button:hover .button-arrow {
  transform: translateX(4px);
}

.form-note {
  font-size: 0.85rem;
  color: var(--white-70);
  margin-top: 0.5rem;
  text-align: center;
  line-height: 1.5;
}

/* ============================================
   COMMUNITY
   ============================================ */

.community {
  text-align: center;
  margin-bottom: 2.5rem;
}

.community-label {
  font-size: 0.9rem;
  color: var(--white-70);
  margin-bottom: 1rem;
  font-weight: 500;
}

.countries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.countries span {
  display: inline-block;
  background: var(--white-10);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.9rem;
  color: var(--white-80);
  border: 1px solid var(--white-10);
}

/* ============================================
   FOUNDER NOTE
   ============================================ */

.founder-note {
  background: var(--white-10);
  padding: 2rem;
  border-radius: 16px;
  border-left: 4px solid var(--gold);
  text-align: left;
}

.founder-note h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gold);
}

.founder-note p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--white-80);
  margin-bottom: 1rem;
}

.founder-note p:last-child {
  margin-bottom: 0;
}

.founder-note strong {
  color: var(--white);
  font-weight: 600;
}

.founder-note em {
  font-style: italic;
  color: var(--gold);
}

.founder-signature {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--white-10);
  font-size: 0.9rem;
  font-weight: 500;
}

.founder-signature a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.founder-signature a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 640px) {
  body {
    padding: 2rem 1rem;
  }

  .container {
    padding: 3rem 1.5rem;
    border-radius: 24px;
  }

  .brand {
    font-size: 4rem;
    letter-spacing: -3px;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .problem-section,
  .cta-section {
    padding: 2rem 1.5rem;
  }

  .feature {
    padding: 1.5rem;
  }

  .feature-icon {
    font-size: 1.75rem;
  }

  .step {
    gap: 1rem;
  }

  .step-number {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .cta-button {
    padding: 1.125rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 3.5rem;
  }

  .pain-point {
    flex-direction: column;
    gap: 0.75rem;
  }

  .pain-emoji {
    font-size: 1.75rem;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero,
.problem-section,
.solution-section,
.features,
.how-section,
.social-proof,
.cta-section,
.community,
.founder-note {
  animation: fadeInUp 0.6s ease-out;
}