.landing-container {
  max-width: 900px;
  margin: 2rem auto;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-section {
  background: linear-gradient(135deg, #100e35 0%, #d84b74 100%);
  color: white;
  padding: 2rem;
  text-align: center;

  .logo { font-weight: bold; margin-bottom: 1rem; opacity: 0.9; }
  .hero-logo { height: 5rem; max-width: 100%; }
  h1 { font-size: 1.875rem; margin: 0 0 0.5rem; font-weight: 800; }
  p { font-size: 1.1rem; opacity: 0.9; margin: 0; }
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2rem;
  text-align: center;

  .feature-item {
    padding: 1rem;
    h3 { font-size: 1rem; margin: 1rem 0 0.25rem; color: #100e35; font-weight: 700; }
    p { font-size: 0.875rem; color: #666; line-height: 1.4; margin: 0; }
  }

  .icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 1.2rem;

    &.pink { background: #d84b74; }
    &.green { background: #4caf50; }
  }
}

.login-section {
  padding: 2rem;
  text-align: center;

  h2 { font-size: 1.5rem; color: #100e35; margin: 0 0 1.5rem; font-weight: 800; }

  .button-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 auto;
  }

  .btn {
    padding: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.1s;

    &:active { transform: scale(0.98); }
  }

  .btn-main { background: #d84b74; color: white; }
  .btn-dark { background: #100e35; color: white; }

  .separator {
    margin: 0.25rem 0;
    border: none;
    border-top: 1px solid var(--blue-color-1);
  }
}

.trust-footer {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: #888;
  i { margin-right: 4px; }
}