
:root {
  --telecel-red: #E30613;
  --telecel-dark: #1A1A1A;
  --telecel-grey: #F3F4F6;
  --telecel-text: #222222;
  --telecel-link: #D90416;
  --success: #16A34A;
  --warning: #D97706;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; color: var(--telecel-dark); }

a { color: var(--telecel-link); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

.navbar { position: sticky; top: 0; z-index: 40; background: white; border-bottom: 1px solid #eee; }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 34px; }
.brand .title { font-weight: 700; color: var(--telecel-dark); letter-spacing: .2px; }
.navlinks a { margin-left: 20px; font-weight: 600; color: var(--telecel-dark); }
.navlinks a.cta { background: var(--telecel-red); color: white; padding: 10px 14px; border-radius: 10px; }
.navlinks a.cta:hover { filter: brightness(.95); text-decoration: none; }

.hero { background: linear-gradient(90deg, var(--telecel-red) 0%, #FF4C57 50%, #ffffff 50%); }
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; align-items: center; }
.hero-content { color: white; padding: 64px 0; }
.hero h1 { font-size: 40px; line-height: 1.1; margin: 0 0 14px; }
.hero p { font-size: 18px; margin: 0 0 26px; }
.hero-actions a { display: inline-block; margin-right: 12px; padding: 12px 16px; border-radius: 12px; font-weight: 700; }
.hero-actions .primary { background: white; color: var(--telecel-red); }
.hero-actions .secondary { background: rgba(255,255,255,.15); color: white; border: 1px solid rgba(255,255,255,.35); }

.hero-image-wrapper { display: flex; align-items: center; justify-content: center; padding: 24px 0; }
.hero-image { width: 90%; max-width: 520px; border-radius: 20px; box-shadow: 0 6px 30px rgba(0,0,0,.14); }

.section { padding: 56px 0; }
.section.grey { background: var(--telecel-grey); }
.section h2 { margin: 0 0 24px; font-size: 30px; }

.social-proof { display: grid; grid-template-columns: 1fr; gap: 16px; align-items: center; }
.badges { display: flex; gap: 10px; flex-wrap: wrap; }
.badge { background: white; border: 1px solid #eee; border-radius: 999px; padding: 8px 12px; font-weight: 600; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { background: white; border: 1px solid #eee; border-radius: 16px; padding: 18px; box-shadow: 0 2px 10px rgba(0,0,0,.04); }
.card h3 { margin-top: 8px; }
.card p { color: #444; }

.cta-bar { display: flex; justify-content: center; }
.cta-big { display: inline-block; background: var(--telecel-red); color: white; padding: 16px 24px; border-radius: 12px; font-weight: 800; }
.cta-big:hover { filter: brightness(.95); text-decoration: none; }

.footer { background: #111; color: #eee; padding: 36px 0; }
.footer a { color: #fff; opacity: .9; }
.footer .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
small.muted { color: #bbb; }

/* How it Works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step .icon { width: 56px; height: 56px; border-radius: 12px; background: var(--telecel-grey); display: grid; place-items: center; font-weight: 900; color: var(--telecel-red); }

/* Sign Up multi-step form */
.form-wrap { display: grid; grid-template-columns: 1fr; gap: 22px; }
.progress { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 10px 0 20px; }
.progress .dot { height: 6px; border-radius: 6px; background: #ddd; }
.progress .dot.active { background: var(--telecel-red); }

.form-card { background: white; border: 1px solid #ececec; border-radius: 16px; padding: 22px; }
.row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
label { font-size: 14px; font-weight: 600; }
input, select, textarea { width: 100%; padding: 12px 10px; border-radius: 10px; border: 1px solid #ddd; }
.input-hint { font-size: 12px; color: #555; }

.actions { display: flex; justify-content: space-between; gap: 12px; }
.btn { border: none; padding: 12px 16px; border-radius: 10px; font-weight: 700; cursor: pointer; }
.btn-primary { background: var(--telecel-red); color: white; }
.btn-secondary { background: var(--telecel-grey); }

.notice { font-size: 13px; color: #444; }
.success { color: var(--success); }
.warning { color: var(--warning); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; background: var(--telecel-red); }
  .value-grid, .steps { grid-template-columns: 1fr; }
  .row { grid-template-columns: 1fr; }
}
