/* Fintra Landing Page Base Styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #2D5A3D;
  --primary-light: #3d7a52;
  --text: #1a1a1a;
  --text-light: #666;
  --bg: #ffffff;
  --bg-alt: #f8f9fa;
  --border: #e0e0e0;
  --radius: 12px;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.lp-container { max-width: 600px; margin: 0 auto; padding: 40px 24px; }
.lp-container.wide { max-width: 900px; }

.lp-hero {
  text-align: center;
  padding: 48px 24px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius);
  margin-bottom: 32px;
}
.lp-hero img.logo { max-height: 60px; margin-bottom: 16px; }
.lp-hero h1 { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.lp-hero p { font-size: 16px; opacity: 0.85; }

.lp-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.lp-form .field { margin-bottom: 16px; }
.lp-form label { display: block; font-size: 13px; font-weight: 600; color: var(--text-light); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.lp-form input, .lp-form select, .lp-form textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: 8px;
  font-size: 16px; transition: border-color 0.2s;
}
.lp-form input:focus, .lp-form select:focus, .lp-form textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(45,90,61,0.1);
}
.lp-form .row { display: flex; gap: 12px; }
.lp-form .row .field { flex: 1; }

.lp-btn {
  display: block; width: 100%; padding: 14px; background: var(--primary); color: white;
  border: none; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer;
  transition: background 0.2s;
}
.lp-btn:hover { background: var(--primary-light); }
.lp-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.lp-success { display: none; text-align: center; padding: 40px; }
.lp-success.show { display: block; }
.lp-success .checkmark { font-size: 48px; margin-bottom: 16px; }
.lp-success h2 { font-size: 24px; margin-bottom: 8px; }
.lp-success p { color: var(--text-light); }

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

.lp-footer { text-align: center; padding: 24px; color: var(--text-light); font-size: 12px; }
.lp-footer a { color: var(--primary); text-decoration: none; }

.lp-consent { font-size: 11px; color: var(--text-light); line-height: 1.5; margin-top: 12px; }

@media (max-width: 600px) {
  .lp-container { padding: 20px 16px; }
  .lp-hero { padding: 32px 20px; }
  .lp-hero h1 { font-size: 22px; }
  .lp-card { padding: 24px 20px; }
  .lp-form .row { flex-direction: column; gap: 0; }
}
