/* Steps */
.steps-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; position: relative; margin-top: 3rem; }
.steps-row::before { content: ''; position: absolute; top: 35px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, var(--az), var(--ac)); z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 70px; height: 70px; border-radius: 50%; background: var(--az); color: #fff; font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.1rem; box-shadow: 0 8px 24px rgba(26,86,219,.3); }
.step-title { font-family: var(--font-display); font-weight: 700; font-size: .95rem; margin-bottom: .4rem; }
.step-desc { font-size: .825rem; color: var(--gr); line-height: 1.6; }

/* Roadmap */
.roadmap-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.rm-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-md); padding: 1.5rem; }
.rm-icon { font-size: 28px; margin-bottom: .75rem; }
.rm-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.rm-desc { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.rm-badge { display: inline-block; font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 10px; margin-top: .75rem; text-transform: uppercase; letter-spacing: .4px; }
.rb1 { background: rgba(16,185,129,.15); color: #6EE7B7; }
.rb2 { background: rgba(124,58,237,.15); color: #C4B5FD; }
.rb3 { background: rgba(245,158,11,.15); color: #FCD34D; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 3rem; }
.testi-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius-lg); padding: 1.75rem; }
.testi-stars { color: #FCD34D; font-size: 13px; margin-bottom: .9rem; letter-spacing: 2px; }
.testi-text { font-size: .875rem; line-height: 1.7; color: rgba(255,255,255,.8); margin-bottom: 1.25rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--az), var(--ac)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; color: #fff; flex-shrink: 0; }
.testi-name { font-weight: 600; font-size: .875rem; color: #fff; }
.testi-role { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: 1px; }

/* CTA section */
.cta-section { padding: 5rem 5%; text-align: center; background: linear-gradient(135deg, var(--azd), var(--az), #1D6BDB); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px); background-size: 24px 24px; }
.cta-title { font-family: var(--font-display); font-size: clamp(1.9rem,4vw,2.8rem); font-weight: 800; color: #fff; margin-bottom: .9rem; letter-spacing: -.5px; position: relative; }
.cta-sub { font-size: 1rem; color: rgba(255,255,255,.8); margin-bottom: 2.25rem; position: relative; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-white { background: #fff; color: var(--az); padding: 13px 28px; border-radius: var(--radius-sm); font-weight: 700; font-size: 14px; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; transition: .25s; border: none; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,.2); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; padding: 13px 28px; border-radius: var(--radius-sm); font-weight: 600; font-size: 14px; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; transition: .25s; border: 1.5px solid rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }

/* Footer */
footer { background: #040C18; color: rgba(255,255,255,.55); padding: 3.5rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-logo { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: #fff; margin-bottom: .9rem; }
.footer-desc { font-size: .825rem; line-height: 1.7; max-width: 240px; }
.footer-col-title { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: .9rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-links a { text-decoration: none; font-size: .825rem; color: rgba(255,255,255,.45); transition: .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.75rem; display: flex; justify-content: space-between; align-items: center; font-size: .775rem; flex-wrap: wrap; gap: 1rem; }

/* Sticky mobile CTA */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: #fff; border-top: 1px solid var(--gb); padding: 1rem 5%; z-index: 150; }
