:root { --brand-primary: #1a7f5a; --brand-primary-600: #176d4e; --brand-ink: #0f172a; --brand-muted: #475569; --bg-light: #f6fbf8; --surface: #ffffff; --ring: rgba(26,127,90,0.25); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1rem; }
.section { padding: 3rem 0; }
.section-light { background: var(--bg-light); }

.hero { padding: 3.5rem 0; background: linear-gradient(180deg, #f4fbf7 0%, #ffffff 100%); }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 2.5rem; }
.badge { display: inline-block; background: #e8f6ef; color: var(--brand-primary); font-weight: 600; font-size: 0.9rem; padding: 0.35rem 0.6rem; border-radius: 999px; margin-bottom: 0.75rem; }
.hero-content h1 { font-size: 2.25rem; line-height: 1.15; color: var(--brand-ink); margin: 0 0 0.5rem; }
.subtitle { color: var(--brand-muted); font-size: 1.05rem; margin: 0 0 1.25rem; }
.cta-group { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.btn { display: inline-flex; align-items: center; justify-content: center; white-space: nowrap; border-radius: 10px; padding: 0.8rem 1.1rem; font-weight: 600; text-decoration: none; transition: background 0.2s ease, transform 0.05s ease; border: 1px solid transparent; }
.btn-primary { background: var(--brand-primary); color: #fff; }
.btn-primary:hover { background: var(--brand-primary-600); }
.btn-ghost { background: transparent; color: var(--brand-primary); border-color: #cfe9dd; }
.btn-ghost:hover { background: #eef7f2; }

.hero-media img { width: 100%; height: auto; display: block; border-radius: 14px; box-shadow: 0 12px 28px rgba(16,24,40,0.08); }

.features .section-title { font-size: 1.6rem; margin: 0 0 0.5rem; color: var(--brand-ink); }
.features .lead { color: var(--brand-muted); margin-bottom: 1rem; }
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem 1rem; }
.feature-list li { background: var(--surface); border: 1px solid #eef2f6; border-radius: 12px; padding: 0.9rem 0.9rem; color: var(--brand-ink); display: flex; align-items: center; gap: 0.5rem; }
.feature-list .check { color: var(--brand-primary); font-weight: 700; }

.signup { background: #ffffff; }
.signup-wrap { max-width: 820px; }
.signup-header h2 { margin: 0 0 0.4rem; font-size: 1.6rem; color: var(--brand-ink); }
.signup-header p { margin: 0 0 1rem; color: var(--brand-muted); }

.signup-form { display: grid; grid-template-columns: 1.2fr 0 1.2fr auto; gap: 0.75rem; background: var(--surface); border: 1px solid #e8eef3; padding: 1rem; border-radius: 12px; box-shadow: 0 4px 14px rgba(16,24,40,0.06); }
.signup-form input[type="text"],
.signup-form input[type="tel"],
.signup-form input[type="email"] { width: 100%; padding: 0.8rem 0.9rem; border: 1px solid #d6dde5; border-radius: 10px; font-size: 1rem; outline: none; transition: box-shadow 0.2s ease, border-color 0.2s ease; }
.signup-form input:focus { border-color: var(--brand-primary); box-shadow: 0 0 0 4px var(--ring); }
.signup-form button { padding: 0.85rem 1rem; border-radius: 10px; border: none; background: var(--brand-primary); color: #fff; font-weight: 700; cursor: pointer; }
.signup-form button:hover { background: var(--brand-primary-600); }
/* Hide phone field for product initiatives (kept in DOM) */
.signup-form #phone { display: none; }
.disclaimer { color: var(--brand-muted); font-size: 0.9rem; margin-top: 0.75rem; }

.form-status { margin-top: 1rem; padding: 0.75rem; border-radius: 6px; font-weight: 500; text-align: center; } .form-status.success { background-color: #e6ffed; color: #1e7e34; border: 1px solid #28a745; } .form-status.error { background-color: #ffe6e6; color: #a80000; border: 1px solid #dc3545; }

.trust { background: var(--bg-light); padding-top: 2rem; padding-bottom: 2rem; }
.trust-inner { text-align: center; }
.trust-text { color: var(--brand-muted); font-size: 0.95rem; margin: 0; }
.trust-link { color: var(--brand-primary); text-decoration: none; }
.trust-link:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .feature-list { grid-template-columns: 1fr; }
  .signup-form { grid-template-columns: 1fr; }
}
