.phone-mock { margin-top: var(--space-7); display: flex; justify-content: flex-start; }
.phone-frame { width: 240px; background: var(--navy); border-radius: 34px; padding: 14px; box-shadow: var(--shadow-lg); position: relative; }
.phone-notch { width: 70px; height: 18px; background: var(--navy); border-radius: 0 0 12px 12px; margin: 0 auto 8px; position: relative; }
.phone-notch::after { content: ""; position: absolute; inset: 6px 26px; background: #05171c; border-radius: 6px; }
.phone-screen { background: var(--white); border-radius: 22px; padding: var(--space-4); min-height: 260px; }
.phone-header { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: var(--space-3); padding-bottom: var(--space-3); border-bottom: 1px solid rgba(11,43,51,0.08); }
.phone-header svg { color: var(--emerald); }
.phone-row { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: var(--text-secondary); padding: 10px; border-radius: 10px; background: var(--background); margin-bottom: 8px; opacity: 0; animation: slideIn 0.5s var(--ease-out) forwards; }
@keyframes slideIn { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: translateX(0); } }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); flex-shrink: 0; }
.phone-notification { margin-top: var(--space-3); display: flex; align-items: center; gap: 8px; font-size: 0.72rem; color: var(--emerald-2); background: var(--gradient-brand-soft); padding: 8px 10px; border-radius: 10px; }

.access-table { background: var(--white); border-radius: var(--radius-lg); border: 1px solid rgba(11,43,51,0.08); overflow: hidden; box-shadow: var(--shadow-sm); }
.access-head, .access-row { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--space-3); align-items: center; padding: 14px 20px; }
.access-head { background: var(--light-grey); font-size: 0.8rem; font-weight: 700; color: var(--text-secondary); text-align: center; }
.access-head span:first-child { text-align: left; }
.access-row { border-top: 1px solid rgba(11,43,51,0.06); font-size: 0.88rem; text-align: center; }
.access-label { text-align: left; font-weight: 600; color: var(--navy); }
.access-cell { display: flex; align-items: center; justify-content: center; gap: 6px; color: var(--text-secondary); }
.access-cell .yes { color: var(--emerald); }
.access-cell .no { color: var(--mid-grey); }

.ma-screens-section { background: var(--white); padding: var(--space-8) 0; border-top: 1px solid rgba(11,43,51,0.06); border-bottom: 1px solid rgba(11,43,51,0.06); }
.screens-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.screen-card { background: var(--background); border-radius: var(--radius-md); padding: var(--space-4); }
.screen-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.screen-card p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.55; }
.screen-card .flow { margin-top: 8px; font-size: 0.76rem; color: var(--emerald-2); font-style: italic; }

@media (max-width: 900px) {
  .access-head, .access-row { grid-template-columns: 1.4fr 1fr 1fr; padding: 12px 14px; font-size: 0.78rem; }
  .screens-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) { .screens-grid { grid-template-columns: 1fr; } }
