.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.feat-card { background: #fff; border: 1px solid var(--gb); border-radius: var(--radius-lg); padding: 1.75rem; transition: .3s; }
.feat-card:hover { border-color: var(--azl); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(26,86,219,.1); }
.feat-icon { width: 46px; height: 46px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 1.1rem; }
.feat-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.feat-desc { font-size: .875rem; color: var(--gr); line-height: 1.65; }
.feat-tag { display: inline-block; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 4px; margin-top: .9rem; text-transform: uppercase; letter-spacing: .4px; }

/* Feature highlights */
.fh { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 5rem; }
.fh:last-child { margin-bottom: 0; }
.fh.rev .fh-img { order: -1; }
.fh-img img { border-radius: var(--radius-md); box-shadow: var(--shadow-lg); border: 1px solid rgba(0,0,0,.06); }
.fh-tag { font-size: 10px; font-weight: 700; color: var(--az); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: .75rem; display: block; }
.fh-desc { font-size: .95rem; color: var(--gr); line-height: 1.75; margin-bottom: 1.5rem; }
.fh-bullets { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.fh-bullets li { display: flex; align-items: flex-start; gap: 9px; font-size: .875rem; }
.fh-bullets li::before { content: '✓'; color: var(--ve); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Screenshots */
.screens-tabs { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.stab { padding: 7px 16px; border-radius: 20px; border: 1.5px solid var(--gb); background: #fff; font-size: 12px; font-weight: 600; color: var(--gr); cursor: pointer; transition: .2s; }
.stab.on, .stab:hover { background: var(--az); color: #fff; border-color: var(--az); }
.screen-viewer { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(0,0,0,.06); max-width: 960px; margin: 0 auto; }
.screen-viewer img { width: 100%; transition: opacity .3s; }
