/* ===== LANDING PAGE STYLES ===== */

.lp-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* Header */
.lp-header {
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-divider);
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
}
.logo strong {
  color: #0FA0A8;
  font-weight: 700;
}

/* Hero Grid */
.lp-hero {
  padding: clamp(100px, 12vh, 160px) 0 clamp(var(--space-12), 6vw, var(--space-20));
}
.lp-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-12);
  align-items: start;
}

/* Left Copy */
.lp-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0FA0A8;
  border: 1px solid rgba(15, 160, 168, 0.3);
  background: rgba(15, 160, 168, 0.08);
  padding: var(--space-1) var(--space-4);
  border-radius: 9999px;
  margin-bottom: var(--space-5);
}
.lp-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1rem + 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
}
.accent { color: #0FA0A8; }
.lp-sub {
  font-size: var(--text-base);
  color: var(--color-text-body);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  max-width: 520px;
}
.lp-checks {
  list-style: none;
  margin-bottom: var(--space-8);
}
.lp-checks li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-body);
  margin-bottom: var(--space-3);
  line-height: 1.5;
}
.lp-checks li i {
  color: #0FA0A8;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Logos */
.lp-logos {
  margin-top: var(--space-6);
}
.lp-logos-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
}
.lp-logo-strip {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}
.lp-logo {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.75;
  border-radius: 4px;
}

/* Form Card */
.lp-form-wrap {
  position: sticky;
  top: 80px;
}
.lp-form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: 12px;
  padding: var(--space-8);
}
.lp-form-card h2 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.lp-form-sub {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}
.lp-field {
  margin-bottom: var(--space-4);
}
.lp-field label {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}
.lp-field input,
.lp-field select {
  width: 100%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text);
}
.lp-field input::placeholder {
  color: var(--color-text-faint);
}
.lp-field input:focus,
.lp-field select:focus {
  outline: none;
  border-color: #0FA0A8;
  box-shadow: 0 0 0 3px rgba(15, 160, 168, 0.15);
}
.lp-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.lp-submit {
  width: 100%;
  background: #0FA0A8;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: var(--space-4);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: var(--space-2);
}
.lp-submit:hover {
  background: #01696F;
  transform: translateY(-1px);
}
.lp-form-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-align: center;
  margin-top: var(--space-3);
}

/* Proof Bar */
.lp-proof {
  background: var(--color-surface);
  padding: var(--space-8) 0;
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}
.lp-proof-grid {
  display: flex;
  justify-content: center;
  gap: var(--space-12);
}
.lp-proof-item {
  text-align: center;
}
.lp-proof-num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: #0FA0A8;
}
.lp-proof-label {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

/* More Section */
.lp-more {
  padding: var(--space-10) 0;
}
.lp-more-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}
.lp-btn-outline {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: #0FA0A8;
  border: 2px solid #0FA0A8;
  border-radius: 10px;
  padding: var(--space-3) var(--space-8);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.lp-btn-outline:hover {
  background: #0FA0A8;
  color: #fff;
}

/* Footer */
.lp-footer {
  padding: var(--space-6) 0;
  border-top: 1px solid var(--color-divider);
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
.lp-footer a {
  color: var(--color-text-faint);
  text-decoration: none;
}
.lp-footer a:hover {
  color: #0FA0A8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .lp-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .lp-form-wrap {
    position: static;
  }
  .lp-copy h1 {
    font-size: clamp(1.8rem, 1rem + 3vw, 2.5rem);
  }
}
@media (max-width: 600px) {
  .lp-proof-grid {
    flex-direction: column;
    gap: var(--space-6);
  }
  .lp-logo {
    height: 28px;
  }
}
