* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --dark: #1a1a2e;
  --primary: #2d6a4f;
  --primary-light: #40916c;
  --accent: #f4a261;
  --bg: #ffffff;
  --bg-alt: #f7faf8;
  --bg-dark: #1a1a2e;
  --text: #2d3748;
  --text-light: #4a5568;
  --radius: 12px;
}
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--text); line-height: 1.6; }
a { color: var(--primary); text-decoration: none; }
h1, h2, h3 { line-height: 1.2; }
h2 { font-size: 2rem; margin-bottom: 0.5rem; color: var(--dark); }

/* Layout */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 700px; margin: 0 auto; padding: 0 2rem; }
.section-sub { color: var(--text-light); margin-bottom: 2.5rem; font-size: 1.1rem; }

/* Header */
.gate-header { padding: 1rem 5%; display: flex; justify-content: center; }
.gate-header nav { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 1100px; }
.gate-logo { font-size: 1.4rem; font-weight: 700; color: var(--dark); }
.btn-cta-sm { background: var(--primary); color: #fff; padding: 0.6rem 1.2rem; border-radius: 6px; font-weight: 600; font-size: 0.9rem; }
.btn-cta-sm:hover { background: var(--primary-light); color: #fff; }

/* Buttons */
.btn-cta { background: var(--primary); color: #fff; padding: 1rem 2rem; border-radius: 8px; font-weight: 700; font-size: 1.05rem; display: inline-block; }
.btn-cta:hover { background: var(--primary-light); color: #fff; }
.btn-secondary { background: transparent; color: var(--primary); padding: 1rem 2rem; border-radius: 8px; font-weight: 600; border: 2px solid var(--primary); display: inline-block; }
.btn-secondary:hover { background: var(--primary); color: #fff; }
.btn-full { width: 100%; text-align: center; border: none; cursor: pointer; font-size: 1.1rem; }

/* Hero */
.hero { padding: 5rem 5% 4rem; text-align: center; background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0f9ff 100%); }
.hero-content { max-width: 750px; margin: 0 auto; }
.hero h1 { font-size: 2.8rem; margin-bottom: 1.2rem; color: var(--dark); }
.hero-lead { font-size: 1.2rem; color: var(--text-light); margin-bottom: 2rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.trust-row { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; font-size: 0.9rem; color: var(--text-light); }

/* Pain Section */
.pain-section { padding: 4rem 5%; background: var(--bg-dark); color: #f7fafc; text-align: center; }
.pain-section h2 { color: #f7fafc; }
.pain-section .section-sub { color: #cbd5e0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 768px) { .grid-2 { grid-template-columns: 1fr; } }
.pain-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 2rem; text-align: left; }
.pain-card h3 { color: #f7fafc; font-size: 1.1rem; margin-bottom: 0.75rem; }
.pain-card p { color: #a0aec0; font-size: 0.95rem; line-height: 1.6; }

/* Grids */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 768px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
}

/* Cards */
.card { padding: 1.5rem; border-radius: var(--radius); text-align: center; }
.card-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.card h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.card p { font-size: 0.9rem; line-height: 1.5; }

/* Roles Section */
.roles-section { padding: 4rem 5%; text-align: center; background: var(--bg-alt); }
.role-card { padding: 2rem; background: #fff; border-radius: var(--radius); box-shadow: 0 2px 12px rgba(0,0,0,0.06); text-align: left; }
.role-number { width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: #fff; font-size: 1.1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.role-card h3 { margin-bottom: 0.75rem; }
.role-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }

/* Features Section */
.features-section { padding: 4rem 5%; }
.feature-list { max-width: 650px; margin: 0 auto; }
.feature-item { display: flex; gap: 1.25rem; align-items: flex-start; margin-bottom: 1.75rem; }
.feature-bullet { width: 12px; height: 12px; min-width: 12px; border-radius: 50%; background: var(--primary); margin-top: 0.4rem; }
.feature-item h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.feature-item p { color: var(--text-light); font-size: 0.95rem; }

/* Pricing Section */
.pricing-section { padding: 4rem 5%; text-align: center; background: var(--bg-alt); }
.pricing-simple { max-width: 600px; margin: 0 auto; }
.pricing-main { font-size: 1.3rem; margin-bottom: 1rem; }
.pricing-save { background: #f0fdf4; color: #276749; font-size: 0.8rem; font-weight: 600; padding: 0.25rem 0.6rem; border-radius: 4px; margin-left: 0.5rem; }
.pricing-simple p { color: var(--text-light); line-height: 1.7; margin-bottom: 0.75rem; }

/* Hero note */
.hero-note { font-size: 0.9rem; color: var(--text-light); margin-top: 1.5rem; }

/* Signup Section */
.signup-section { padding: 4rem 5%; background: var(--bg); text-align: center; }
.signup-section h2 { margin-bottom: 0.5rem; }

/* Forms */
.form { text-align: left; margin-top: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
label { display: block; margin-bottom: 0.4rem; font-weight: 600; font-size: 0.95rem; }
input, select, textarea {
  width: 100%; padding: 0.75rem; border: 1.5px solid #d1d5db; border-radius: 8px;
  font-size: 1rem; font-family: inherit; background: #fafafa; transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus { border-color: var(--primary); outline: none; background: #fff; }
textarea { resize: vertical; }
.optional { font-weight: 400; color: #888; font-size: 0.85rem; }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: 0.5rem; }
@media (max-width: 600px) { .checkbox-grid { grid-template-columns: 1fr; } }
.check-label {
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0.7rem 1rem;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  background: #fafafa;
  transition: border-color 0.2s, background 0.2s;
}
.check-label:hover { border-color: var(--primary); background: #f0fdf4; }
.check-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin: 0;
  padding: 0;
  accent-color: var(--primary);
}
.check-label input[type="checkbox"]:checked + span,
.check-label:has(input:checked) { border-color: var(--primary); background: #f0fdf4; }
.form-note { text-align: center; margin-top: 0.75rem; font-size: 0.85rem; color: #888; }
.form-status { text-align: center; margin-top: 1rem; padding: 0.75rem; border-radius: 8px; }
.form-status.success { background: #f0fff4; color: #276749; }
.form-status.error { background: #fff5f5; color: #c53030; }

/* Footer */
footer { background: var(--bg-dark); color: #e2e8f0; padding: 2rem 5%; text-align: center; }
footer a { color: #fbd38d; }
.footer-inner p { margin-bottom: 0.4rem; font-size: 0.9rem; }
